Diego Fernandes
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] Translating Theme My LoginUpdatig…
The link to download the pt_BR translation of Theme My Login is http://diegofernandes.blog.br/traducao-do-plugin-theme-my-login/Forum: Plugins
In reply to: [Theme My Login] Translating Theme My LoginHi there, folks.
I tried harder to import a complete translation pt_BR ready to use. But the WordPress translation system (GlotPress) is frustrating.I got .po and .mo files 100% in portuguese-Brazil and nowhere to import. It’s a shame.
If anyone need the pt_BR translation of Theme My Login, get in touch, and i’ll provide it to you: [ redacted, support is not offered via email, Skype, IM etc. only in the forums ]
In the next weeks i’ll be looking for a URL to direct download.
Forum: Plugins
In reply to: [GIGA Slider] Warning: Invalid argument supplied for foreach() in …Same problem here: Invalid argument supplied for foreach() in /wp-content/plugins/giga-slider/functions.php on line 269
Forum: Fixing WordPress
In reply to: Prevent Dashboard being available to registered usersTry this: copy the code below to the functions.php file
add_action('admin_init', 'restrict_panel', 1); function restrict_panel(){ if ( current_user_can( 'subscriber' ) ) { wp_redirect( home_url() ); exit; } }Then, the user will be redirected to the homepage, if Subscriber.
Forum: Fixing WordPress
In reply to: Prevent Dashboard being available to registered usersHowdy, John.
You can use the plugin Theme my login. It customizes the login/logout page.
The plugin creates a page following your template and works with shortcodes. Istall it. Make a test 😉