padmanabham
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Redirects no longer workingI am also facing the same issue when submitting the form it not redirecting to the success page.
I am using same code like this
<script>
document.addEventListener( ‘wpcf7mailsent’, function( event ) {
location = ‘http://example.com/’;
}, false );
</script>Is it possible to redirect different forms to the different page?
Forum: Plugins
In reply to: [Front End Users] Login/logout menuHi Etoile,
Thank you so much for replaying.
i was added code in heade.php and page.php but it is showing duplicate menu in the page.
this is i added code like this.
<?php$FEUP = new FEUP_User;
if($FEUP -> Is_Logged_In())
{
wp_nav_menu(array(‘menu’=>’Login’));
}
else
{
wp_nav_menu(array(‘menu’=>’Top-Menu’));
}?>
Please check this is my website url : http://hurify.co/
user name : pakki1246@gmail.com
password : gagan@143Thank you
Forum: Plugins
In reply to: [Front End Users] Login/logout menuHi Etoile,
i was added code like this in the theme function.php file, it show fatal error. any modification in this code, please help me
add_filter( ‘wp_nav_menu’, ‘wti_loginout_menu_link’, 10, 2 );
function wti_loginout_menu_link($items, $FEUP )
{
$FEUP = new FEUP_User;if($FEUP -> Is_Logged_In())
{
$items .= wp_nav_menu(array(‘menu’ => ‘Login’));
}
else
{
$items .= wp_nav_menu(array(‘menu’ => ‘Top-Menu’));
}return $items;
}Thank you
Forum: Plugins
In reply to: [Front End Users] Plugin not working properlyPlease check this url
hurify.co/paasmer-university/login-2/
username pakki1246@gmail.com
password gagan@143Thank you
Forum: Plugins
In reply to: [Front End Users] Plugin not working properlyHi Etoile,
Thank you for replay.
i am using w3 total cache latest version( 0.9.5 ). when i was enabled the that plugin and login into the login page doesn’t show logout button.
Thank you
Forum: Plugins
In reply to: [Front End Users] FEU Redirect page not redirecting to correct pagei was installed plugin using the short code is [login-logout-toggle],this short code working fine in the back-end,when i coming to live page doesn’t show the logout button properly.
Please….. any one can help?
Thank you
- This reply was modified 9 years, 6 months ago by padmanabham.
where can i put this below code for login/logout menu
$FEUP = new FEUP_User;
if($FEUP->Is_Logged_In()){
wp_nav_menu(array(‘menu’ -> ‘loginmenu’));}
else{
wp_nav_menu(array(‘menu’ -> ‘loginout’));
}i was put code in bridge theme function file it show error.
how can add login/logout menu for this plugin any can help me
thank you for response Rustaurius
i got it file where it is.
when i click the forget password button,it will send reset code to particular email id
ie
“Somebody requested a password reset for you. If this wasn’t you, you can ignore this mail.If you want to reset the password, please visit http://hurify.co/?add=pakki1246%40gmail.com&rc=zdkMPFcKGKFxwd2
If the link above doesn’t work, go to http://hurify.co/ and enter your email address and the following code:
zdkMPFcKGKFxwd2i would like to send reset code only. so where can i modify the code.
thank you
Thank you for response Etoile