klihelp
Forum Replies Created
-
Forum: Plugins
In reply to: [Eazyest Gallery] In settings get errorHow did you resolve this problem?
Forum: Plugins
In reply to: [Eazyest Gallery] Easyest Gallery Thumbnails & Captionscan you have a screenshot of this?
Forum: Plugins
In reply to: [Eazyest Gallery] Shadowbox w/ galleryDid you found a way to do it?
Forum: Plugins
In reply to: [Eazyest Gallery] Cache files not going into cacheDid you resolve this problem?
Try deactivate and reactivate the plugin, but first delete all the cache images from the gallery.Forum: Plugins
In reply to: [Eazyest Gallery] Gallery Page not renderingCheck the plugin settings page:
First check the gallery folder path. Than set the slug to cargalleries.Forum: Plugins
In reply to: [Eazyest Gallery] Urgent!Deactivate and reactivate the plugin.
This happened for me as well, that cached imagase were cached again … so if you don’t have a clean copy of your gallery folder, than delete the cache folders.Forum: Plugins
In reply to: [Eazyest Gallery] Display photos and folders titles and other doubts>> how to display titles under folders and thumbnails?
See eazyest-gallery/themes/twentytwelve for an example template,
first copy the template you want to change to your template directory.Forum: Plugins
In reply to: [Eazyest Gallery] Gallery not rendering correctlySee similar question answered here:
http://wordpress.org/support/topic/use-a-page-post-type-for-eazyest-gallery-folders-not-postForum: Plugins
In reply to: [Eazyest Gallery] Problems with GalleryThe main page for the gallery got only folders by default, and images are inside folder.
You could insert the plugin shortcode like [eazyest_gallery folder=”ExampleFolder”]?Forum: Plugins
In reply to: [Eazyest Gallery] Gallery not rendering correctly> To @marcel – message sent.
Thanks, Basically have to do it manually and not forgetting to do again on plugin update. It’s still ok.
>> The button is registered in the file I referenced, simply commenting out the specific line as noted should do the trick.
Forum: Plugins
In reply to: [Eazyest Gallery] Gallery not rendering correctlyMaybe need a permalinks refresh – try deactivate the plugin and reactivate
Forum: Plugins
In reply to: [Eazyest Gallery] Gallery not rendering correctlyFor 1. in EG settings page you must set the gallery slug to “photos”
Forum: Plugins
In reply to: [Eazyest Gallery] How do I display the 5 most recent galleries?Use WP_Query WordPress API:
list( $orderby, $order) = explode( '-', eazyest_gallery()->sort_by( 'folders' ) ); global $wp_query; $args = array( 'post_type' => eazyest_gallery()->post_type, 'post_parent' => $post_id, 'posts_per_page' => -1, 'order' => $order, 'orderby' => $orderby, ); $query = new WP_Query( $args ); if ( $query->have_posts() ) { // see variables in $query var_dump($query); }Forum: Plugins
In reply to: [Eazyest Gallery] Show random images from specific folderFor shortcode gallery display: [eazyest_folder folder=”Examples”]