Manitoba
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Plugins
In reply to: [Theme My Login] Send all login requests to the main site in multisiteI found it!!!
RewriteRule ^(.*)/login/$ http://mysite.com/login/ [L,QSA,NE]Forum: Plugins
In reply to: [Theme My Login] *URGENT* I'm locked out of my site admin!Hi, try to rename your plugins folder to fx: plugins2 and log to your site using /wp-login.php.
Forum: Plugins
In reply to: [Theme My Login] Disable / Redirect registration disable linkCool!
Forum: Plugins
In reply to: [Theme My Login] Disable / Redirect registration disable linkHi, have you tried this?:
function tml_action_url_filter( $url, $action, $instance ) { if ( 'register' == $action ) return 'url of your sign up page'; } add_filter( 'tml_action_url', 'tml_action_url_filter', 10, 3 );Forum: Plugins
In reply to: [Theme My Login] Emergency help pleeeease!Hi, try to rename your theme folder and login to your site using wp-login.php.
Wordpress will reverse your site theme to its default: twentyeleven/twentyseven.
Hope it help 😉Forum: Plugins
In reply to: [WP Login Box] Link only instead of login boxThanks!
I´m using it as a widget.
The reason why I would like only links is because I want to place the links on the top bar of my homepage.
Your plugin works very fine otherwise.Actually I found a function to insert php code in a text widget. I will just use it to build the login / logout logic.
add_filter('widget_text', 'enable_php_code', 99); function enable_php_code ($text) { if (strpos($text, '<' . '?') !== false) { ob_start(); eval('?' . '>' . $text); $text = ob_get_contents(); ob_end_clean(); } return $text; }Thanks again
Viewing 6 replies - 1 through 6 (of 6 total)