Forum Replies Created
-
In reply to: Swedish for 2.0 plugin
Check here http://wp-support.se/filer/
In reply to: Swedish for 2.0 pluginHi
Here is the link to the updated translation:
http://twoway.se/filer/bbPress-sv_SE.zip
@jobjörn I have mailed you the file also.
Note that it is for the 1.3 version and not for the 2.0 plugin version. Please ping me if you convert the translation to 2.0
Maybe there is a easy way to migrate the translation to 2.0. Check with @JohnJamesJacoby
Hi
I have 1.0.3 installed and would like to add e-mail notification. What is the best way to do this?
Hi
I have 1.0.3 installed and would like to add e-mail notification. What is the best way to do this?
In reply to: Maintenance Mode?@bryan_w OK… i know there is no built in maint-mode function, but is there a solution? How do you handle this scenario?
In reply to: Maintenance Mode?Hi
I am about to do some maintenance on my forum and want to leave a message to the members.
I have searhed the forums and the web without result.
How can this be done in a easy way. Something like below but for bbpress or a plugin maybe?
function wpr_maintenance_mode() {
if ( !current_user_can( ‘edit_themes’ ) || !is_user_logged_in() ) {
wp_die(‘Maintenance, please come back soon.’);
}
}
add_action(‘get_header’, ‘wpr_maintenance_mode’);