Andrew Munro
Forum Replies Created
-
Forum: Reviews
In reply to: [Easy Image Gallery] WonderfulThanks for your review
Forum: Reviews
In reply to: [Easy Image Gallery] It does work!Thanks for the review!
Forum: Plugins
In reply to: [Easy Image Gallery] How to add Image descriptionsDownload the latest version 1.0.4 and then add this to your theme’s functions.php. This will make the lightbox use the image’s caption + description
/** * Filter Easy Image Gallery HTML to add description * */ function my_child_theme_easy_image_gallery_description( $html, $rel, $image_link, $image_class, $image_caption, $image, $attachment_id, $post_id ) { // get the image's description $image_description = get_post( $attachment_id )->post_content ? get_post( $attachment_id )->post_content : ''; // add the description to the title attribute if ( function_exists( 'easy_image_gallery_has_linked_images' ) && easy_image_gallery_has_linked_images() ) $html = sprintf( '<li><a %s href="%s" class="%s" title="%s - %s"><i class="icon-view"></i><span class="overlay"></span>%s</a></li>', $rel, $image_link, $image_class, $image_caption, $image_description, $image ); else $html = sprintf( '<li>%s</li>', $image ); return $html; } add_filter( 'easy_image_gallery_html', 'my_child_theme_easy_image_gallery_description', 10, 8 );
I’m no longer using this plugin as I’m adding redirects via the .htaccess file but I was using PHP 5.4.4 on my local dev server. I’ll give the plugin another go when it’s been updated. Thanks
Awesome, looking forward to the next version. Thanks Josh
Also, if I visit the “settings” page I get:
Notice: Undefined index: linkprefix in /wp-content/plugins/thirstyaffiliates/ThirstyAdminPage.php on line 107
Notice: Undefined index: linkprefix in /wp-content/plugins/thirstyaffiliates/ThirstyAdminPage.php on line 116
I just installed this plugin and get 29 notices appearing in my admin, same as above. Turning off WP_DEBUG is not an option for me as I develop plugins myself so I’m afraid it’s onto the next plugin.
Forum: Reviews
In reply to: [Easy Image Gallery] Very goodThanks Imran,
I’d be interested to hear any suggestions you may have in order to improve the plugin, and to make it closer to what you originally wanted. What did you need to change?
Forum: Reviews
In reply to: [Shop Front] Great theme and support!Thanks Martin!
Really happy you are enjoying it!
Forum: Themes and Templates
In reply to: [Shop Front] Important information about Shop Front and SupportMaking modifications
Download the free Child Theme from https://sumobi.com/shop/shop-front-child-theme/
This will allow you to easily make modifications to the Shop Front parent theme without worrying about your changes being overridden when the parent theme is updated.
This issue should be fixed (fingers crossed) once WP 3.6 drops, as the EDD featured downloads plugin won’t be outputting it’s own html, and instead relying on EDD’s. I’m corresponding with Angelo and will get him to make the shortcode tweak to get it working until EDD 1.7.2 is released.
I think we can close this thread. Angelo, you have my email ??
Forum: Plugins
In reply to: [Debug Bar] [Plugin: Debug Bar] PHP Notice: Array to string conversionIt seems this PHP notice has resurfaced. I’m using 0.8.1 and I’m getting the same notice
PHP Notice: Array to string conversion in /wp-content/plugins/debug-bar/panels/class-debug-bar-wp-query.php on line 98
Forum: Plugins
In reply to: [Easy Image Gallery] Demo ?Hi Alonso,
It’s always best to start a new support ticket, as this one has been marked as resolved.
The gallery is automatically appended to the post/page content so you only need to use the shortcode if you want to manually position your gallery somewhere else within the content. In which case you simply insert
[easy_image_gallery]
somewhere inside the editor.Forum: Plugins
In reply to: [Easy Digital Downloads - Coming Soon] Coming Soon text not displayedOk, just released a new version (1.2) that will get everything going again, let me know if either of you have any more problems.
Forum: Plugins
In reply to: [Easy Digital Downloads - Coming Soon] Coming Soon text not displayedThanks for the update, I’ll be releasing an update soon that gets this plugin functional again, apologies for the inconvenience.