klihelp
Forum Replies Created
-
Forum: Plugins
In reply to: [Eazyest Gallery] Thumbnail image in gallery doesn't showAfter moving the gallery folder, just go update gallery path in the plugin settings page.
Forum: Plugins
In reply to: [Eazyest Gallery] Thumbnail image in gallery doesn't showCheck the plugin settings page, you see that the gallery folder is inside the uploads folder..
Forum: Plugins
In reply to: [Eazyest Gallery] Thumbnail image in gallery doesn't showTry one thing – put the gallery folder outside uploads.
And check this list –
http://wordpress.org/support/topic/is-there-anyway-to-do-it-without-setting-folders?replies=11#post-5275289Forum: Plugins
In reply to: [Eazyest Gallery] Thumbnail image in gallery doesn't showWas it working before? Any error message about why is broken?
To see errors make sure you set WB_DEBUG to TRUE.Forum: Plugins
In reply to: [WooCommerce] No logout available whatsoeverUse wc_get_page_id(), because woocommerce_get_page_id() is deprecated
Forum: Plugins
In reply to: [Custom Post Type Editor] Php NoticesIsset() checking resolves it, on line 196:
if ( !isset($this->settings[‘types’][$post_type]) || !is_array($this->settings[‘types’][$post_type][‘labels’]) ) {
Forum: Plugins
In reply to: [Eazyest Gallery] customize eazyest gallery with collapsible menu/** * Move subfolders above thumbnails * */ function eg_move_subfolders() { remove_action('eazyest_gallery_after_folder_content','ezg_subfolders', 5); add_action('eazyest_gallery_before_folder_content','ezg_subfolders', 6); } add_action('eazyest_gallery_before_folder_content','eg_move_subfolders', 1);– There is a nice plugin to add Eazyest Gallery pages and also other custom post types to your menu:
http://wordpress.org/extend/plugins/sf-archiver/– Check the plugin setting page for Sort folders option, choose sort by Name
– For numbered pagination try to integrate these nice pagination plugins:
http://wordpress.org/plugins/prime-strategy-page-navi/
http://wordpress.org/plugins/wp-pagenavi/– filter to change the folder icon is eazyest_gallery_folder_icon, you can custom code for searching the image, see related thread:
http://wordpress.org/support/topic/modify-folder-iconForum: Plugins
In reply to: [Eazyest Gallery] A few template-related questionsYou found it, now use the eazyest_gallery_menu_name filter.
WordPress codex about add_filter:
http://codex.wordpress.org/Function_Reference/add_filterThe code for your functions.php: // Custom Eazyest Gallery title function ezg_menu_name() { return 'Photo Galleries'; } add_filter('eazyest_gallery_menu_name','ezg_menu_name');Forum: Plugins
In reply to: [Eazyest Gallery] Columns at gallery rootI will look into this for you in the weekend.
Forum: Plugins
In reply to: [Eazyest Gallery] How to edit single article pageMaybe those links are date-based, I will check it for you in the weekend.
Forum: Plugins
In reply to: [Eazyest Gallery] Pagination on folder / thumbnail pageHow did you resolve this?
Forum: Plugins
In reply to: [Eazyest Gallery] How to edit single article page– 6. I’d like to edit the “next” and “previous” picture links since the << and >> are a bit misleading since they show the wrong direction..
See related question:
http://wordpress.org/support/topic/edit-text-on-next-and-previousForum: Plugins
In reply to: [Eazyest Gallery] Gallery skewed and css is offYour gallery on the website working well, so closing this thread.
Forum: Plugins
In reply to: [Eazyest Gallery] folder navigation overlappingIt could be specific to styling for your template.
Forum: Plugins
In reply to: [Eazyest Gallery] Columns at gallery rootHow did you resolve this