nhbeachguy
Forum Replies Created
-
The fix @bpcake suggested worked great! It changed the labels in both the front end and back end!
I didn’t notice the “Free Extensions” link when I was searching for a solution to this.
I appreciate the help.
Forum: Plugins
In reply to: [Contact Form 7] This field has syntax errors.How is this resolved? I don’t see an answer that works!
Forum: Plugins
In reply to: [Plugin: Yoast SEO] Version 3.0.3 Divi ThemeI think Yoast SEO is up to 3.0.6 now, anyone know if this issue with Divi has been resolved?
Thanks for the reply @tizz… But I did find something late last night that works and is fairly simple to implement…
Found it as the last answer on this page
http://wordpress.stackexchange.com/questions/16800/load-entire-nextgen-gallery-from-single-thumbnailSimply add this style to your nggallery.css file to display only the first image in the gallery. When you click the thumbnail, the lightbox effect will display all of the images. No PHP code needed:
/* For NextGen Gallery. Displays thumbnails on a page, and when you click each thumbnail opens it’s own gallery. Normally when you insert a gallery, it displays all the thumbnails in the gallery. This hack will hide all the thumbnails except the first one. Make sure you don’t display [show slideshow], because that will be the first child. */div.ngg-gallery-thumbnail-box { display:none; }
div.ngg-galleryoverview div:first-child { display:block; }