Marcel Brinkkemper
Forum Replies Created
-
Forum: Reviews
In reply to: [Eazyest Gallery] I might want too muchbeta-4 should show all folders from your server root and above.
Forum: Plugins
In reply to: [Eazyest Gallery] Front and Back-end Issues…In WordPress, a slug is an unique identifier. So, you cannot have a page, an archive and folders using the same slug. If you try to make an archive or a folder with an existing slug, WordPress will add the number.
You don’t need to have a page for your gallery. If you have ‘gallery’ set as slug in Eazyest Gallery Settings, your root folder archive is available on http://yourblog.net/gallery/
But, if you already have a page on that address, you’d better rename use another slug like ‘album’ or whatever suits you.
Eazyest Gallery comes with templates for the default WordPress ‘Twenty’ themes. You may use them as an example to create templates for your theme. Eazyest Gallery does work with other themes, however, the archive page is not viewed as a gallery of thumbnails.
I am still working on refining the auto-indexing functions.
Please follow http://brimosof.nl/posts/ to see how Eazyest Gallery evolves.Forum: Reviews
In reply to: [Eazyest Gallery] I might want too muchThanks for the compliments and for trying the beta version. Documentation will soon be available on the plugin website http://brimosoft/eazyest/gallery/
Forum: Reviews
In reply to: [Eazyest Gallery] I might want too muchThank you for four stars. 😉
If your images are above the web root, you could try to enter something like../images/for your images folder.Forum: Hacks
In reply to: Customize Media ManagerHave you tried to use a filter for
'media_view_strings'?
I have made a similar uploader like you need with a filter like this:function my_view_strings( $strings) { // disable some views $disabled = array( 'selectFiles', 'createNewGallery', insertFromUrlTitle', 'createGalleryTitle' ); foreach( $disabled as $string ) $strings[$string] = ''; $strings['allMediaItems'] = __( 'Select a view', 'eazyest-gallery' ); $strings['insertIntoPost'] = __( 'Done uploading', 'eazyest-gallery' ); return $strings; } add_filter( 'media_view_strings', 'my_view_strings' );and add this in a style element to hide the buttons:
.button.button-large.media-button-gallery { height: 0; padding: 0; } .media-menu-item:empty { display: none; }hope this helps
Forum: Plugins
In reply to: [Eazyest Gallery] Edit folder page doesn't show left bar (save)It is probably an out of execution time error.
If you have many images to be indexed, the script could run out of time. Reloading the page could help.
I’m working on a fix.Forum: Plugins
In reply to: [Eazyest Gallery] Front and Back-end Issues…I am currently testing a scenario with read-only folders. BBL
Forum: Plugins
In reply to: [Eazyest Gallery] Front and Back-end Issues…You don’t need an .htaccess file.
Have you checked file ownership?
I’ll add write checks and messages to the script, do you know what is happening.Forum: Plugins
In reply to: [Eazyest Gallery] Front and Back-end Issues…It may be a permissions error. Have you checked if PHP can write to your FTP uploaded folders?
Forum: Plugins
In reply to: [Eazyest Gallery] Front and Back-end Issues…You can ‘simply’ install the trunk over three current version.
Forum: Plugins
In reply to: [Eazyest Gallery] Edit folder page doesn't show left bar (save)This is weird.
Could you drop a note in http://brimosoft.nl/forums/forum/alphabeta/ ?
so I have your e-mail address?Forum: Plugins
In reply to: [Eazyest Gallery] js bugCould you drop a note in http://brimosoft.nl/forums/forum/alphabeta/ ?
so I have your e-mail address?Forum: Plugins
In reply to: [Eazyest Gallery] js bugMade some changes to trunk.
Thumbnails should display now in ‘all’ themes.
(maybe not yours)
download version 0.1.0-beta-3-r144 or laterForum: Plugins
In reply to: [Eazyest Gallery] js bugPerhaps your theme is not compatible. i have tested the default themes. Other themes are still on my list.
What theme do you use?Forum: Plugins
In reply to: [Eazyest Gallery] js bugOk, thank you for the last remark about the lg_gallery shortcode. I have just ran into such an issue.
BTW it is unhealthy to screw databases.