Community @ The Turning Gate

Support community for TTG plugins and products.

NOTICE

The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.

This forum is now closed, and exists here as a read-only archive.

  • New user registrations are disabled.
  • Users cannot create new topics.
  • Users cannot reply to existing topics.

You are not logged in.

#3251 Re: Announcements & Information » Updated versions? » 2013-03-21 16:07:01

Define "mess up" ...

Having the CE3 plugins installed in Lightroom will cause you no problems.

Online, it's important to note that CE3 plugins do not support "cart listening" for the CE2 cart, so if users have items in their cart, the cart widget will not follow them onto any CE3-made pages.

So you can totally mix CE2 galleries + cart with CE3 Pages, Auto Index, etc. But you need to keep the above "cart listening" issue in mind. That may or may not be a deal-breaker for you in setting up your website with CE3; that's a personal decision for you to make.

#3252 Re: General » Integrating with an existing site » 2013-03-21 14:50:53

Either way it's been a challenge. Both worlds have so much foundation assumptions built into their frameworks.

Well, that is the nature of frameworks. And frankly, WordPress is a bit of a mess in that regard. WordPress itself is one framework layer, and then nearly ever theme for WordPress adds an additional framework layer different from every other WordPress theme. Building Chado was somewhat dreadful, and I am not really looking forward to working on the CE3/Chado2 theme, though it will need to be done.

But really, I am sworn off of "normal drop-down" menus on any kind of touch interface. They're too inconsistent. At least when the parent item is both an active hyperlink and the drop-menu trigger. Not a big deal if the parent isn't hyperlinked. This was probably the largest deciding factor in how I ended up handling navigation for CE3. On touch screens, I think it imperative that parent items not pull double-duty as both hyperlink and drop-trigger.

#3253 Re: General » Integrating with an existing site » 2013-03-21 11:35:19

A few issues at work here.

1. It may be the WordPress theme is switching things up.
2. It may be that our specifying a mobile viewport for responsive design is telling the iPhone to interpret touch events somewhat differently.
3. I have found that not all touch devices or mobile behave the same in this regard. For example, Android browsers/Chrome seems not to trigger the hover events on the first tap, and just goes to the link.

So to get around all of this, we use the responsive design and re-layout the menu on touch screens. This way there is no hover event, so we don't hit inconsistency issues with hover vs. touch interpretations.

So your WordPress dropdowns working on iPhone or iPad is nice, but they're probably a real problem for users of other touch devices.

The real issue here is why you're having to mess with TTG drop-down menus on an iPhone? That shouldn't be happening; you should be seeing the responsive layout.

#3254 Re: General » Intall Plugin CE2 > CE3 » 2013-03-20 19:43:05

For now, CE3 purchases include the older CE2 versions mostly for the sake of users still depending on CE2 Cart to power e-commerce galleries. This will be the case until we are able to release a CE3 version cart.

If you have no reason to use CE2 Pages, then you don't need to install it. Stick to the CE3 versions.

#3255 Re: General » block google et all from searching the site » 2013-03-19 02:06:26

Right. The intent is to prevent your site -- or sections thereof -- from being found via search engine. The opposite of SEO.

#3256 Re: General » TTG SimpleViewer-2-Plugin for Lightroom 4 » 2013-03-19 02:04:58

Don't use Lightroom's Upload. Export to desktop, then upload using an FTP client. Lightroom's upload is unreliable.

#3257 Re: General » CE3 purchases » 2013-03-18 19:33:36

Discounts will remain active at least until we go into 2014, and depending on when the cart actually sees release, will otherwise remain in effect for as long as we feel is adequate. Should be plenty long enough; I don't want this to be an issue of concern for anyone, so we're not going to be very nazi about cutoffs. And when discounts are edging their way into twilight, I will be sure to make note of it on the blog and in the newsletter.

#3258 Re: General » Integrating with an existing site » 2013-03-14 10:46:23

Use ttg_head_end to put in your new styles/stylesheet.

#3259 Re: General » Integrating with an existing site » 2013-03-14 10:10:58

I've never tried to jam WordPress parts into a non-WordPress page, so you're on your own with that. I'm not even sure whether it can be done with the target page being removed from the larger WordPress architecture.

I reckon you'd just want to get the WordPress source that's output when your page is viewed, rather than using all the PHP source.

The tutorial is for CE2 -- so you will need to update the functions for CE3 PHPlugins hooks -- but this should give you the general idea how to proceed:
http://theturninggate.net/2012/04/ifram … -are-good/

#3260 Re: General » TTG Pages 3.7.3 » 2013-03-14 00:04:49

Are there spaces in your gallery folder names? If so, no spaces.

#3261 Re: General » Auto Index and GoDaddy Subdomain - Enhancement Request » 2013-03-13 14:11:18

Hi Ken,

Glad you're liking the CE3 versions. Sadly, CE3 is not "done". Still lots to do, like CRG, Stage, WordPress, Cart ...

Regarding the autoindex script, it's not dynamically generated by Lightroom, so we can't feed checkbox options into it without making a huge mess of things. I could maybe put a troubleshooting article on it into the documentation for reference, but that's about the only thing that can realistically be done.

#3262 Re: General » OT: Blurred background images » 2013-03-12 17:36:24

Just set the background colors separately. Keep in mind, though, that those items are layered on top of whatever you're doing to #body-core. So, for example, if I wanted everything to appear the same, rather than piling up my colors, I could do this:

#body-core {
    background-color: #ffffff;
    background-color: rgba( 255, 255, 255, 0.75 );
    }

#social-networking-block .mantle, 
#footer .mantle {
    background-color: transparent;
    }

#3263 Re: General » OT: Blurred background images » 2013-03-12 16:12:18

Actually, they are. But they're 75% translucent on top of the body background, which is also 75% translucent. So through the layering, most of the transparency is completely lost. This is the styling:

#body-core, 
#social-networking-block .mantle, 
#footer .mantle {
    background-color: #ffffff;
    background-color: rgba( 255, 255, 255, 0.75 );
    }

#3264 Re: General » Just downloaded version 3 - where are the templates? » 2013-03-12 14:51:14

The templates are named to indicate for which .lrwebengine they are intended. For example, "CE3 Asphalt - Gallery" is for CE3 Gallery. If you have not installed the appropriate web engine, then you cannot use the corresponding template.

#3265 Re: General » OT: Blurred background images » 2013-03-12 12:41:26

All I've done on my site is use a background-image, than applied semi-transparent white to my content background-color using PHPlugins (for custom CSS) and RGBA color values.

#3266 Re: General » Font Awesome » 2013-03-10 13:01:36

Icons in the menu may not work. At least, not when using drop-menus. They interfere with our Javascript for the carets.

#3267 Re: General » Navigation with Auto Index (and mobile) » 2013-03-09 16:47:02

If Ben were going to make the effort to setup the variables, I think it would be easier that he then spend the extra 5-10 minutes beyond that to make breadcrumbs a checkbox option. The variables are the complicated part.

#3268 Re: General » Navigation with Auto Index (and mobile) » 2013-03-09 16:28:57

Within the traditional context of exported-and-uploaded web galleries, breadcrumbs simply will not work. They would require the user to know and hardcode the entire breadcrumb trail for each individual gallery. Hello, Nightmare.

Using Publisher, we have a consolidated architecture from which to draw the gallery structure. By which I mean that breadcrumbs are a possibility for publisher galleries, whereas they have not previously been a feature that we could hope to implement in any meaningful or sane way.

That said, it's not something we expect that you should be able to do using PHPlugins. It's something that Ben will need to work on for a publisher update and would fall under the heading of "publisher enhanced" gallery features. We've talked about it before, but it just hasn't happened yet, as we've had other priorities like getting CE3 out the door, and Ben making publisher tweaks to help make that happen. At this point, he would need to chime in on his schedule of priorities for upcoming releases.

#3269 Re: General » Integrating with an existing site » 2013-03-09 16:21:50

From my perspective, scenario #1 would be the best approach: use PHPlugins to clear the masthead and navigation, and replace them with your own stuff.

In my experience, WordPress is incredibly unfriendly toward accepting content from outside its own system.

#3270 Re: General » CE2 to CE3 file cleanup » 2013-03-09 12:00:54

No reason at all, though I would keep them around in a backup location rather than outright deleting them. I'm also a digital packrat, though, so take that for whatever you think it's worth ...

I only keep the CE2 plugins installed for support reasons, and I uninstalled the early versions ages ago.

#3271 Re: General » Font Awesome » 2013-03-09 00:44:08

Into the Page Copy (md) field? If so, then it works just fine here.

#3272 Re: General » Font Awesome » 2013-03-09 00:38:46

When you say "header text", what are you talking about?

#3273 Re: General » Stage Purchase » 2013-03-09 00:25:40

Purchase now, CE3 will be a free upgrade when released.

#3274 Re: General » Nav Bar in Horizon » 2013-03-08 13:23:46

It works "fine" everywhere. It's just a matter of how the browser maker wants to implement their scrollbars. Safari still has scrollbars, you just have to know how to use them. I grab scrollbars all the time in Safari.

#3275 Re: General » Huge Thanks From Me » 2013-03-07 10:01:01

Glad to hear it, Barry. I hope the site continues to serve you well going forward.

Board footer

Powered by FluxBB