-
Prince Abiola Ogundipe replied to the topic [Resolved] Admin Bar in the forum How-to & Troubleshooting 11 years, 5 months ago
@martinm92, if you want to rename it what ever you like or style it, you can try:
<a class="lostpass"href="http://www.yoursite.com/wp-login.php?action=lostpassword">Lost password?</a>
then you can change Lost password to whatever you like
-
bp-help replied to the topic [Resolved] Admin Bar in the forum How-to & Troubleshooting 11 years, 5 months ago
@martinm92
You can try:
<?php wp_lostpassword_url(); ?>
-
Prince Abiola Ogundipe replied to the topic [Resolved] Admin Bar in the forum How-to & Troubleshooting 11 years, 5 months ago
@martinm92, use this functions stolen from modemloopers plugin
-
Prince Abiola Ogundipe replied to the topic [Resolved] Admin Bar in the forum How-to & Troubleshooting 11 years, 5 months ago
@martinm92, a link to you test site ?
-
Prince Abiola Ogundipe replied to the topic [Resolved] Admin Bar in the forum How-to & Troubleshooting 11 years, 5 months ago
@martinm92, put the following code in functions.php of your theme. assuming you are using child theme.
// Remove html margin from body
function my_function_admin_bar(){ return false; }
add_filter( 'show_admin_bar' , 'my_function_admin_bar');
@martinm92
Not recently active