mtphoto
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: get_post_type() and WooCommerceI was able to use the documentation here to target only store single product pages for WP E-commerce. If you know the corresponding tag for Woo Commerce, then it will probably work.
When I had the same problem, it was either image metadata or CMYK format that was causing the thumbnail creation to fail. After using Photoshop’s “save for web” feature we were able to re-upload and create thumbnails for the same images. Try whatever ‘save for web’ feature that Lightroom has and see if anything changes.
I was getting a thumbnail creation error when my images contained too much junk metadata and possibly also when some of them were in CMYK.
Just in case, you could try using Photoshop’s “Save for Web” feature (this will remove any junk metadata from the image file), and make sure that the box to “convert to sRGB” is checked in the “Save for Web” dialog box. Try saving out one image and adding it to a NextGen gallery.
My guess is that this would only be possible by embedding the gallery on the other four sites in an IFRAME.
However, you’ll need to add your NextGen gallery to an extra WordPress page that is completely empty so that the IFRAME does not pick up all of the other content from the page.
Just in case, go to the “Overview” options panel in NextGen and use the Pluigin check feature on the right hand side to see if it finds any conflicts.
I’m also wondering if it’s possible to control the order of slideshow images….
I had the exact same problem and were unable to access our dashboard because of the error.
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 77824 bytes) in /users/derekdeyoung.com/htdocs/wp-content/plugins/nextgen-gallery/admin/manage-images.php on line 238
Using the steps described at this link, we fixed the error. I increased the allowed memory to 64 (they use 32 as an example in the steps) and we were instantly able to access the dashboard again.
https://perishablepress.com/wordpress-error-fix-increase-php-memory-for-cachephpHope this helps!
We had a working slideshow in our homepage template using this code:
<?php echo do_shortcode( '[slideshow id=2]' ); ?>
After some changes occurred on the site (including a memory size limit error) the slideshow no longer appears, just a spinning wheel animation. Here’s a link to our site.
Has anyone found a fix for this?
So far we tried:
* Resetting the plugin options via the “Reset/Uninstall panel”
* Deactivating and reactivating the plugin.Forum: Fixing WordPress
In reply to: How to adjust spacing or margins for only a few gallery images?@teajavo1
The gallery is being created with the shortcode below, so I’m not sure how I would add a specific class for two images.[gallery link="file" include="214,213,212,215" columns="4"]
This screenshot shows the two images I’d like to control the margins/padding for. Here’s an updated link to my page with the wordpress gallery.
Forum: Fixing WordPress
In reply to: How to adjust spacing or margins for only a few gallery images?Hi Esmi,
I do use Firebug, but the problem is that I need to adjust the spacing for just a few images (again, not spacing applied to the whole gallery) and I still want the gallery to be automatically generated.
Any ideas?
Forum: Plugins
In reply to: Custom shortcode for a tag throws an errorThank you! The extra empty lines at end of the file were causing the problem and now the shortcode works like a charm.
Thank you.
It sounds like this would be make an additional account for the site owners?
Ideally the site owner would keep their existing admin account and our admin account for the web devs would also stay the same except for stopping the emails about comments that need moderation.
I’m sure that many web development companies have encountered this problem and I would think there’s a simple solution.
Forum: Fixing WordPress
In reply to: Post does not show up on home pageIf your homepage is not updating, there’s probably a different file such as home.php that is creating the homepage.
There may be a setting in the theme that only displays posts from a certain category on the homepage.
Forum: Themes and Templates
In reply to: How to style comments links?In general, how can I style the links that this tag is generating?
Otherwise, how can I insert CSS classes into the PHP comments tag, since there are no tags?
Forum: Fixing WordPress
In reply to: How to get excerpts only on paged pages with my custom loop?That worked to change my paged blog posts to show only excerpts.
Unfortunately, it had a side effect of displaying tags and comments on my first three post excerpts on page 2. Previously only my full posts would show tags and categories.
What can I add to this statement to remove the tags and categories from paged pages?
if ($displayed <= 3)
Thank you!