klihelp
Forum Replies Created
-
Website url:
http://localhost.com/www/_test/websiteWP install directory structure
(based on https://github.com/markjaquith/WordPress-Skeleton)
D:/www/_test/website/wp/
D:/www/_test/website/wp-content/
D:/www/_test/website/index.php
D:/www/_test/website/wp-config.phpForum: Plugins
In reply to: [Eazyest Gallery] How to add images to folders without Editor? (in admin)Temporary quick CSS fix for those who are interested in this,
hide the Editor, the switching tabs and the status line.Using Adminimize plugin to hide it it’s very easy
http://wordpress.org/extend/plugins/adminimize/Add the classnames to Global options section:
.cp-galleryfolder #wp-content-editor-container
.cp-galleryfolder #post-status-info
.cp-galleryfolder .wp-switch-editorHere is a screenshot of the result:
http://qikr.co/files/pics/e/ezgnoedito63970.pngthanks, it’s working. Looks very nice, you should try it too:)
This issue is still there using the plugin final v.0.1 version.
Your gallery folder: content/gallery Relative to your WordPress installation. Your current setting maps to D:/www/_test/wordpress-latest-plugin-test/wp/content/gallery/ The plugin uploads the images to that directory, but broken images are pointing outside /wp/ subdirectory, because the /wp-content/ is outside /wp/ directory. -> _test/wordpress-latest-plugin-test/content/gallery/With different setting:
Your gallery folder: ../content/gallery Relative to your WordPress installation. Your current setting maps to D:/www/_test/wordpress-latest-plugin-test/content/gallery/ The plugin uploads the images to that directory, but broken images are pointing to one directory higher -> _test/content/gallery/ (missing main website folder)Here is a screenshot with the gallery path settings:
http://qikr.co/files/pics/e/ezgsetting61943.pngThe remove_action doesn’t have any effect
// Move Subfolders box above Images box function kli_ezg_list_table_boxes() { var_dump('hellooo'); // displayed remove_action('edit_form_after_editor',array( eazyest_gallery(),'list_table_attachments'),1,1); // add_action('edit_form_after_editor',array( eazyest_gallery(),'list_table_attachments'),3,1); } // add_action('edit_form_after_editor','kli_ezg_list_table_boxes', 1); add_action('eazyest_gallery_ready','kli_ezg_list_table_boxes', 1);Forum: Plugins
In reply to: [Eazyest Gallery] Subfolders title on front-endThere is a quick fix.
In case you switch off the ajax indexing, then you can set DOING_AJAX constant to true. This will hide the Subfolders title on the website.
There are no side effects.define('DOING_AJAX', true);Thanks. Still not working..
// Move Subfolders box above Images box function kli_ezg_list_table_boxes( $columns ) { remove_action('edit_form_after_editor',array(eazyest_gallery(),'list_table_attachments'),1,1); add_action('edit_form_after_editor',array( eazyest_gallery(),'list_table_attachments'),3,1); } add_action('edit_form_after_editor','kli_ezg_list_table_boxes', 1);Forum: Plugins
In reply to: [Eazyest Gallery] Main folders table hides it's subfolders (in admin)Thanks, reactivated the Codepress Admin Columns.
http://wordpress.org/extend/plugins/codepress-admin-columns/It’s working.
I couldn’t make it work.
ps: the front-end filter you poster earlier are working, but Subfolders will be displayed twice, forced display after the images box.
Forum: Plugins
In reply to: [Eazyest Gallery] Main folders table hides it's subfolders (in admin)In another post you clarified that the table display is different when you use manually sort folders.
Using manual sorting option, the main Folders table doesn’t display it’s subfolders. (using trunk 0.1.0-RC-14-315)This filters are not working on admin side.
Forum: Plugins
In reply to: [Eazyest Gallery] Disable column in admin table?Added Css to the admin to hide the view mode icons.
Using Adminimize plugin to hide it.
http://wordpress.org/extend/plugins/adminimize/
Added a custom new line for global options for this css class:
.cp-galleryfolder .view-switchI’m not! Looks like you are, but that is not a problem.
I thought I take the time and help you with my feedbacks to point out a where things are connected to a specific function. Simplify and polish the settings and side effects. Feedbacks does not include urgency, or any kind of #doit. You should see this positively, don’t take it personally.
You are very lucky that you get all of this feedbacks at a very early stage of your plugin version.
It thought I will help you out. You are a very good person to created this plugin for the community.Forum: Plugins
In reply to: [Eazyest Gallery] Disable column in admin table?Thank you, I do that. But just thought I will give you feedback of the side effects ..
Looks good.
ps: Moving folders in admin not updating in FTP yet, maybe in a future version