klihelp
Forum Replies Created
-
Forum: Plugins
In reply to: [Eazyest Gallery] FTP UPLOAD folder/file rights 777>> So i have to manually change all photos to 777 or change it back to apache
What are you using now, if not Apache?
With Zeus webserver there is something similar:
https://www.ads-software.com/support/topic/uploaded-file-permissions-on-zeus-webserverForum: Plugins
In reply to: [Eazyest Gallery] customize eazyest gallery with collapsible menu>> do you know how I can add a search plugin that will find the image that I’m searching for?
Eazyest Gallery images are general attachments in WordPress database.
Blog post about how to include Attachment:
https://brimosoft.nl/2013/04/03/search-for-attachments/Forum: Plugins
In reply to: [Eazyest Gallery] Thumbnail image in gallery doesn't showFeel free to change the <title></title> in header.php
Forum: Plugins
In reply to: [Eazyest Gallery] Help with hiding metabox sidebar :(In your single-galleryfolder.php just put the important parts together,
eg: everything from single.php and the part which outputs the thumbnails.Forum: Plugins
In reply to: [Eazyest Gallery] MCE button in the works?At the moment you have to code the TinyMCE button,
Check out this plugin:
https://www.ads-software.com/plugins/custom-tinymce-shortcode-button/Forum: Plugins
In reply to: [Eazyest Gallery] customize eazyest gallery with collapsible menuWordPress automatically includes the functions.php (which have your codes/functions) from your theme directory.
Info: https://codex.www.ads-software.com/Functions_File_Explained>> I need a button that will show the subfolders,and so you can choose a subfolder easyly the classic collapsible menu.
>> In my site I have 5 main folders,and the subfolders are hundreds.I need something to make the navigation easy for the visitorsIn admin/menus section you can create the menu and submenus with drag and drop. Similarly to the default posts and pages.
Maybe check this related plugin:
https://www.ads-software.com/plugins/add-descendants-as-submenu-items/>> pagination
– I will check this for you>> folder slug names
– In WordPress every post have a unique slug name; and if the slug name is taken than it will suffix with the next available number.
In your whole gallery how many folders you have with the same name?Forum: Plugins
In reply to: [Eazyest Gallery] Help with hiding metabox sidebar :(Get a single-galleryfolder.php copy from the plugin/themes/ directory into your theme directory and modify that one.
See related reply:
https://www.ads-software.com/support/topic/use-a-page-post-type-for-eazyest-gallery-folders-not-post?replies=5#post-4221746Forum: Plugins
In reply to: [Eazyest Gallery] Disable or override cssTry this filter in your theme functions.php
// This theme uses its own gallery styles. add_filter( 'use_default_gallery_style', '__return_false' );
If you want to deregister some other scripts or styles, keep the lines you want :
function ezg_deregister_styles_scripts() { if ( wp_style_is( 'eazyest-frontend', 'registered' ) ) wp_deregister_script('eazyest-frontend'); if ( wp_script_is( 'eazyest-slideshow', 'registered' ) ) wp_deregister_script( 'eazyest-slideshow'); if ( wp_script_is( 'jquery-easing', 'registered' ) ) wp_deregister_script( 'jquery-easing'); if ( wp_script_is( 'camera-slide', 'registered' ) ) wp_deregister_script( 'camera-slide'); if ( wp_style_is( 'eazyest-slideshow', 'registered' ) ) wp_deregister_style( 'eazyest-slideshow'); } add_filter('wp_enqueue_scripts','ezg_deregister_styles_scripts', 100);
Forum: Plugins
In reply to: [Eazyest Gallery] Thumbnail image in gallery doesn't showChecked your website.
Are you using some kind of CDN plugin?Because the large cached image shows correctly from the –
https://i2.wp.com/yourwebsite,com/wp-content/gallery/summer-school-germany-2013/_cache/Adhitya-700×751.jpgBut the thumbnail shows
https://i2.wp.com/yourwebsite,com/wp-content/gallery/summer-school-germany-2013/_cache/Adhitya.jpg?resize=150%2C150Maybe you can find this issue in your theme, because the url for cached thumbnail image should be
https://i2.wp.com/yourwebsite,com/wp-content/gallery/summer-school-germany-2013/_cache/Adhitya-150×150.jpgForum: Plugins
In reply to: [Eazyest Gallery] WPML/ Thumbnails issue?This sound good.
WMPL is a paid plugin, so I can’t test for you.
Please ask WMPL support or forum, they could easily test Eazyest Gallery open source plugin.Forum: Plugins
In reply to: [Eazyest Gallery] WPML/ Thumbnails issue?Just visit the main Eazyest Gallery page and wait the ajax loader to index all your images.
If some images shows up for each WMPL language pages, I believe the other ones should show up as well.Forum: Plugins
In reply to: [Eazyest Gallery] WPML/ Thumbnails issue?Try with a few images and see if shows up on each language pages. If some images shows up, the other ones should show up as well.
Forum: Plugins
In reply to: [Eazyest Gallery] WPML/ Thumbnails issue?Check if all images are present in the admin.
I can suggest to observe WPML plugin first with a few images.Forum: Plugins
In reply to: [Eazyest Gallery] Help with hiding metabox sidebar :(If single-galleryfolder.php doen’t exist it takes the single.php.
In your themes folder
– modify the single.php
– or if you need only for the gallery pages, than have a single-galleryfolder.php with the modified contentps: There is a nice picture in the WordPress codex:
https://codex.www.ads-software.com/Template_HierarchyForum: Plugins
In reply to: [Eazyest Gallery] WPML/ Thumbnails issue?>> Should it automaticly add all pictures to all languages i have on this webiste?
The pictures are there only once, WPML will show the same images for every language pages.