fay-1
Forum Replies Created
-
Here is a “dynamic” hard coded template
https://pastebin.com/asSs73TGTo limit the loop to 5 posts, rename this file to yarpp-template-thumbs_5.php
To limit the loop to X posts, rename it to yarpp-template-thumbs_X.phpIt’s now fixed
Forum: Plugins
In reply to: [WP Comment Notifier For All] Settings are lost after updateproblem fixed
problem fixed
can you make a test with this quick fix
https://agafix.org/wp-content/uploads/fay/wordpress/wp-post-notifier-for-all.zipWhat content are you trying to save for the email body ?
I also need the exact displayed result (the one starting with .fay…)Actually I removed the [LOGO] variable from the last version cause it was not that helpful since it was just a shortcut for the img HTML tag :
[LOGO]https://www.example.org/logo.png[LOGO] instead of ->
< img src=”https://www.example.org/logo.png” / >Hi,
1- It’s ok for this point
2- To use the [EXCERPT], you need to specify it manually for each post as https://goo.gl/SQ0Tj
3- Added to my TO-DO list
4- That’s true
5- It’s already available https://goo.gl/wUYb4Back to life again, sorry for being late in fixing that, a new version is now available https://www.ads-software.com/extend/plugins/wp-comment-notifier-for-all/
Thank youSorry for being late, a new version is now available
https://www.ads-software.com/extend/plugins/fay-comments-moderators/Forum: Plugins
In reply to: [WP Comments Moderators] Plugin Broken on WP 3.1.2Sorry for being late, a new version is now available
https://www.ads-software.com/extend/plugins/fay-comments-moderators/Sorry for being late, a new version is now available
https://www.ads-software.com/extend/plugins/wp-post-notifier-for-all/Forum: Plugins
In reply to: [WP Post Notifier For All] [Plugin: WP Post Notifier For All] I fixed itSorry for being late, a new version is now available
https://www.ads-software.com/extend/plugins/wp-post-notifier-for-all/Sorry for being late, a new version is now available
https://www.ads-software.com/extend/plugins/wp-post-notifier-for-all/Forum: Fixing WordPress
In reply to: Different language for admin panel and front site ?since I’m using WPMU, and waiting for a more elegant solution, here is a workaround to fix my problem
In wpmu-functions.php
function mu_locale( $locale ) { if(is_admin()){ $locale = 'en_US'; } else { if( defined('WP_INSTALLING') == false ) { $mu_locale = get_option('WPLANG'); if( $mu_locale === false ) $mu_locale = get_site_option('WPLANG'); if( $mu_locale !== false ) return $mu_locale; } } return $locale; }