klihelp
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Galleries] Including the plugin in WP QueryYou are almost did it, give $id the value. Actually $ids, because the default return is an array.
// Return ids $ids = get_post_gallery_ids($post->ID);
Forum: Plugins
In reply to: [Simple Lazyload] Using with infinite-scrollThank you!
Forum: Plugins
In reply to: [Eazyest Gallery] Broken image linksCan you see if this happens when you set the gallery folder outside the uploads folder?
Forum: Plugins
In reply to: [Eazyest Gallery] Eazyest Gallery doesn't show thumbnails in offline versionHi @ellin,
Try to set the Eazyest Gallery folder outside the uploads gallery.
– first remove the gallery images from media library (have a backup of the images somewhere else for later)
– then change the gallery folder in the settings
– move the images into the gallery folder>> Strict standards: Non-static method Menu_Items_Visibility_Control::get_instance() should not be called statically
// On line 33 insert static for // public function get_instance() { public static function get_instance() {
Forum: Plugins
In reply to: [Eazyest Gallery] Brokenconfirmed, slideshow is working on your website.
Forum: Plugins
In reply to: [Google Universal Analytics] Disable tracking for is somewhat brokenYes, this missing option should be there, +1.
I thought it was there before. Hope it’s get fixed soon.Forum: Plugins
In reply to: [Eazyest Gallery] question about the themeSee similar question answered here:
https://www.ads-software.com/support/topic/use-a-page-post-type-for-eazyest-gallery-folders-not-postForum: Plugins
In reply to: [Eazyest Gallery] Step by Step InstructionsDo you have any specific question?
After installing the plugin, just go to the Settings page to see the options, all other info is on the plugin page: https://www.ads-software.com/plugins/eazyest-gallery/
Forum: Plugins
In reply to: [Eazyest Gallery] disable "view folder" and "folder icon" for keyword densityTranslate the relevant strings:
__( ‘Folder Icon’, ‘eazyest-gallery’ )
__( ‘View folder “%s”’, ‘eazyest-gallery’ )( quotes are encoded – write without spaces – View folder & # 8 2 2 0 ;%s& # 8 2 2 1 ; –
see proper string at content-galleryfolder.php#Line18 )// To change or translate some string, // add this code on your functions.php. function change_translate_text( $translated ) { $text = array( 'View folder “%s”' => '%s', 'Folder Icon' => '', 'Old Text 3' => 'New Translation 3', ); $translated = str_ireplace( array_keys($text), $text, $translated ); return $translated; } add_filter( 'gettext', 'change_translate_text', 20 );
Forum: Plugins
In reply to: [Find Duplicates] Maximum execution time errorWith the latest version today I get this error
>> Maximum execution time of 300 seconds exceeded in www\content\plugins\find-duplicates\find-duplicates.php on line 494Forum: Plugins
In reply to: [Eazyest Gallery] FTP UPLOAD folder/file rights 777In short, update your WordPress to version 3.9 from 16th April 2014.
—-
WordPress core have some folder/files permission related patches for new version 3.7.2, and new version 3.9.Upload folder permissions for 3.7.2 closed 7 days ago
https://core.trac.www.ads-software.com/ticket/25822Directory permissions not correctly fixed for new media upload dirs
This was there for 3.8.1
https://core.trac.www.ads-software.com/ticket/26781Forum: Plugins
In reply to: [Eazyest Gallery] Folder rights when using FTP uploadForum: Plugins
In reply to: [Eazyest Gallery] German Translation for Eazyest GalleryThank you for your translation
Forum: Plugins
In reply to: [Eazyest Gallery] FTP UPLOAD folder/file rights 777Set the correct permissions for the main gallery folder.
This was the case with Zeus webserver; I think in WordPress the files inherits the parent’s folder permissions.