klihelp
Forum Replies Created
-
Forum: Plugins
In reply to: [Eazyest Gallery] Loss of Features from Lazyest GalleryEazyest gallery makes it much easier to manage templates.
You could see if you find something you want to modify in the template files. Copy the theme files from Eazyest Gallery plugin directory to your template directory and feel free to edit the code.The wordpress template page calculations are simple –
The default custom-post-types are: post, page, menu …
Eazyest Gallery plugin uses galleryfolder for that.See archive-galleryfolder, single-galleryfolder.php .. overwrite the [gallery] shortcode to customize the output
Forum: Plugins
In reply to: [Eazyest Gallery] Newbee needing helpCheck your menu settings in your Appearance/Menus, maybe you have to add a custom link to your navigation …
The default gallery url is: www,web,com/gallery
Forum: Plugins
In reply to: [MP6] Submenu flyout position missing left:100%Seems to fixed now.
Forum: Plugins
In reply to: [Nav Menu Images] Add custom class to menu-item container if has imageAdd the has-icon class right after the image check:
public function register_menu_item_filter( $item_classes, $item, $args ) { if ( has_post_thumbnail( $item->ID ) ) { // Add has-icon class $item_classes[] = 'has-icon'; ..This works. Please consider adding it to the plugin core.
Forum: Plugins
In reply to: [Eazyest Gallery] Work only if a re-edit post (local copy not online)Have you tried Lazyest gallery?
http://wordpress.org/plugins/lazyest-gallery/Forum: Plugins
In reply to: [Eazyest Gallery] Weird problem with inkthemes themeAsk the theme developers if the resized slider images have effect on different post types …
Forum: Plugins
In reply to: [Eazyest Gallery] Is there anyway to do it without setting folders?Have you tried Lazyest Gallery?
http://wordpress.org/plugins/lazyest-gallery/Forum: Plugins
In reply to: [Eazyest Gallery] Work only if a re-edit post (local copy not online)This request is about indexing images without opening the edit folder page in the admin area. We all hopes this will come:)
Forum: Plugins
In reply to: [Eazyest Gallery] Is there anyway to do it without setting folders?@emi, simply you could create 1 subdirectory, put all your images in that one and share that one
Forum: Plugins
In reply to: [Eazyest Gallery] can you resize thumbnails?Regenerate the thumbnails with this pugin:
http://wordpress.org/plugins/regenerate-thumbnails/The storyline takes you to the post_gallery filter:
The thumbnails output is very simple: Eazyest Gallery adds ezg_thumbnails() to eazyest_gallery_thumbnails filter, which added to eazyest_gallery_before_folder_content action.
Basically ezg_thumbnails() collects all information and pass it to the built-in [gallery] shortcode, which applies the post_gallery filter.
So, feel free to use the post_gallery filter on the eazyest gallery pages. See the example code from my last comment.Forum: Plugins
In reply to: [Eazyest Gallery] Saving Extra Fields not working// Set excerpt mode to default add_action( 'load-post.php', 'kli_wp_force_excerpt' ); function kli_wp_force_excerpt() { $_REQUEST['mode'] = 'excerpt'; }Maybe easier if you add a filter to the post_gallery.
Find the post_gallery() code in /frontend/class-eazyest-frontend.php#L1044
if ( get_post_type( ) == eazyest_gallery()->post_type ) : // modify gallery output only for Eazyest Gallery post types add_filter("post_gallery", "my_custom_ezg_thumbnails",10,2); /** Modified eazyest_frontend()->post_gallery() function * /frontend/class-eazyest-frontend.php#L1044 * * Make sure you comment out the apply_filters("post_gallery","",$attr) */ function my_custom_ezg_thumbnails( $output, $attr ){ ... // Comment this out // Allow plugins/themes to override the default gallery template. // $output = apply_filters('post_gallery', '', $attr); // if ( $output != '' ) // return $output; ... } endif;Forum: Plugins
In reply to: [Eazyest Gallery] Problem with secured connectionForum: Plugins
In reply to: [W3 Total Cache] [0.9.26] Unable to save minified settingsFor single wp subfolders install is giving me an error
Uncaught SyntaxError: Unexpected token < Warning: require_once(/homepages/9/d375568784/htdocs/public_html/wp-load.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in <b>/homepages/9/d375568784/htdocs/public_html/content/plugins/w3tc-wp-loader.php on line <b>4 Fatal error: require_once() [<a href='function.require'>function.require</a>]: Failed opening required '/homepages/9/d375568784/htdocs/public_html/wp-load.php' (include_path='.:/usr/lib/php5') in <b>/homepages/9/d375568784/htdocs/public_html/content/plugins/w3tc-wp-loader.php on line <b>4My WP install folder structure is based on https://github.com/markjaquith/WordPress-Skeleton
/wp/
/the-custom-wp-content/
/index.php
/wp-config.php