a298e
Forum Replies Created
-
Thank you for your reply!
I knew it and I’m looking forward to future release.Thank you!
If set SSL pages separately by WordPress HTTPS(SSL) plugin, it seems that each page which has WP-Members’ login form is handled as separate login&logout. So I set SSL to whole site except for Admin panel, login&logout came to be handled as one thing.
After above setting, Logout behavior became not normal. After click Logout link, browser Icon before URI of the page kept wheeling, and I was wondering Logout was not completed. But once moved to another page, logout was completed. To solve this, I added below code to function.php in theme/child folder.
function redirect_fix(){
wp_safe_redirect(“http://example.com/”);
exit();
}
add_action(‘wp_logout’,’redirect_fix’);After Update of WP ver.3.8.1 to 3.9.1 and WP-Members ver.2.8.10 to 2.9.2, my setting for wpmem_forgot_link was correctly functioned. Sorry for bothering.
Thank you!
Hello Chad,
Thank you for your kind reply!
I tried to remove wpmen_member_link, but it wasn’t removed.
Below is code which I added to function.php in my theme(using twentyten) child folder. Sorry for I’m not good at coding, but I would like to know correct code.——
if ( ! function_exists( ‘wpmem_member_link’ ) ):
remove_filter( ‘wpmem_member_link’, $link );
endif;
——I also tried to change wpmem_forgot_link to another link string letter using usage of http://rocketgeek.com/plugins/wp-members/users-guide/filter-hooks/wpmem_forgot_link/, but my change didn’t reflected.
Please let me pose another question.
I would like to customize, if click “Edit Your Information” link, then bbPress User Profile edit page is opened. Is it possible?Forum: Plugins
In reply to: [WP-Members Membership Plugin] customize "wpmem_logout_link"I’ve forget to mark this topic as resolved.
Sorry for being separeted post.Thanks,
Forum: Plugins
In reply to: [WP-Members Membership Plugin] customize "wpmem_logout_link"Thank you for your quick reply.
It’s thanks to your kind advice, I could customize around “logout” link.
I added below code to my “function.php”.
—————————————————————
add_filter( ‘wpmem_sidebar_status’, ‘my_sidebar_status’ );function my_sidebar_status( $string )
{
return str_replace(‘click here to logout’, ‘click here to logout | Biographical Info’, $string);
}
—————————————————————It also can to change letters like below which are in “wp-members-xx_XX.po” file in “lang” folder by editing “PoEdit”.
—————————————————————
Souce Text:click here to logoutTranslation:click here to logout | Biographical Info
—————————————————————At first, I was seeing and thinking “uses apply_filters Calls ‘wpmem_logout_link’ filter to change the logout link” on “wp-members-dialogs.php” file, line 137(ver.2.8.8), but
it was my misconception.Best Regard,
Forum: Plugins
In reply to: [WP-Members Membership Plugin] customize "wpmem_logout_link"In my previous post, some parts concerning html link codes were automatically chenged. Please see html source code.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] usable symbols for usernameThank you for your kind reply.
It helps me a lot.Best Regards,
Forum: Plugins
In reply to: [GD bbPress Attachments] "Maximum file size" setting comes not effectiveI can solve this problem by put a customized “php.ini” file on wordpress root folder.
thanks.
Hello,
Thank you for reading my questions and your answer.
I will try them.Thank you!