Marcel Brinkkemper
Forum Replies Created
-
Please also look at http://wordpress.org/support/topic/plugin-jetpack-by-wordpresscom-sharing_post_title-filter-removed?replies=2
The title filter has been removed.
Which is something different from the sharing url
(no duplicate post)Forum: Plugins
In reply to: [Lazyest Gallery] [Plugin: Lazyest Gallery] Add PaypalYou need to change functions.php in your theme.
It’s best to create a child theme first.
You can find more information about child themes in the WordPress codexForum: Plugins
In reply to: [Lazyest Gallery] [Plugin: Lazyest Gallery] Add PaypalPlease read http://brimosoft.nl/2011/11/28/on-click-do-something-else/ and use your paypal code.
Don’t know why it doesn’t work. Have you contacted WPtouch support?
Forum: Plugins
In reply to: [Lazyest Gallery] Lazyest Gallery and Subscribe to Comments Reloadedno, not yet, i suspect the plugins are incompatible indeed
Forum: Plugins
In reply to: [Lazyest Gallery] [Plugin: Lazyest Gallery] Incorrect url after upgradecould you give me a link to your gallery?
it is in lazyest-stack.php at line #76
Forum: Plugins
In reply to: [Lazyest Gallery] Lazyest Gallery and Subscribe to Comments Reloadedthe plugins seem not to be compatible, but give me a few days to find a workaround.
Forum: Plugins
In reply to: [Lazyest Gallery] [Plugin: Lazyest Gallery] Not valid image file32MB PHP memory could be too low to serve WordPress + Lazyest Gallery + Resizing 3000x2000px images.
please read http://brimosoft.nl/lazyest/gallery/frequently-asked-questions/
Forum: Plugins
In reply to: [Lazyest Gallery] [Plugin: Lazyest Gallery] Not valid image filewhat is your images resolution?
Forum: Plugins
In reply to: [Lazyest Gallery] [Plugin: Lazyest Gallery] Warning on every page and postplease start from http://php.net/manual/en/configuration.changes.php
or ask your hosting providerForum: Plugins
In reply to: [Lazyest Gallery] [Plugin: Lazyest Gallery] Warning on every page and postSorry, I don’t see any warnings, but you could suppress php warnings on your production server by changing the error_reporting directive in php.ini to error_reporting =
E_ALL & ~E_NOTICE & ~E_WARNING
I’ll see if I can add some code to LG fix this.Forum: Plugins
In reply to: [Lazyest Gallery] [Plugin: Lazyest Gallery] Warning on every page and postYou’ve fixed it or did you uninstall LG? I don’t see any warnings
Forum: Plugins
In reply to: [Lazyest Gallery] [Plugin: Lazyest Gallery] Warning on every page and postwhat theme do you use?
For security reasons, users should have at least Contributor capabilities to upload images.
You can however override this by adding the following code to your (child)theme functions.phpfunction my_lazyest_editor( $capability ) { return 'read'; } add_filter( 'lazyest_editor_capability', 'my_lazyest_editor' );