Azizul Karim
Forum Replies Created
-
Beta has been seen on the Jetpack settings page (green color): https://i.imgur.com/qYtm7fL.png
Website: https://bydik.com
Not in wp-admin, changes were done in the frontend account settings page.
I’ve solved this by setting WPUM profile meta queries as a non-persistent group in the WP_REDIS_CONFIG entry. Here’s how it was done:
define( 'WP_REDIS_CONFIG', [ 'non_persistent_groups' => [ 'fields', 'fields_groups', ], ] );
Profile data is now consistent with the account changes. Do you want to say anything about this?
I want to change email content for registration like this-
<p>Hello {username},</p> <p>Thank you for register with {sitename}. We’re thrilled to have you.</p> <p>Here's your login information for {sitename}:</p> <p>Login link: {login_page_url}<br/>Your username: {username}<br/>Your password: {password}</p> <p>Thanks,<br/>{sitename}</p>
I’ve input this text in customizer but can’t save.
Got the solution ?? But which is the best?
function wpum_lets_change_comment_author_url( $return, $author, $comment_ID ) { $comment = get_comment( $comment_ID ); $user = get_user_by( 'login', $author ); $profile_url = wpum_get_profile_url( $user ); if ( $user && !empty( $comment->user_id ) && !empty( get_userdata( $comment->user_id )->ID ) ) { $return = "<a href='$profile_url' rel='external nofollow' class='url'>$author</a>"; } return $return; } add_filter( 'get_comment_author_link', 'wpum_lets_change_comment_author_url', 10, 3 );
function wpum_lets_change_comment_author_url( $return, $author, $comment_ID ) { $user = get_user_by( 'login', $author ); $profile_url = wpum_get_profile_url( $user ); if ( $user ) { $return = "<a href='$profile_url' rel='external nofollow' class='url'>$author</a>"; } return $return; } add_filter( 'get_comment_author_link', 'wpum_lets_change_comment_author_url', 10, 3 );
Code difference only in if conditional.
Both code working as expected. Which one you recommend?
This code changing all author url, including who don’t have account on my site! Unregistered author linked to profile page!
Hi Alessandro! Great support ??
Will you add social media fields in profile section?
Please add facebook and twitter fields in free version.
Thanks in advance.
I’ve checked with chrome and firefox mobile browser. I’m using latest plugin version. I’ve checked with all the plugin deactivated and with twenty nineteen theme. Still you are saying it’s not the case!
Did you checked the page I linked here? Please check the issue again. If you say everything is fine, then give me profile comments link where everything is fine.
Fixed like a Magic ?? Thanks
Please release the update as soon as possible, I’m waiting.
Thanks againI am using latest version 2.0.35
You can test the problem easily. Make some comments in a post first, and then disable comment in the post when Ultimate Member enabled. You will not see the previous comments you made in the frontend!
Please test and fix this (I’m sure this problem comes from the plugin).Where is Ultimate Member support-team? Please solve this.
Forum: Fixing WordPress
In reply to: get_comments_number() giving wrong results! What are alternatives?This is not possible! Very important plugin for my site! Let me clear, this conflict comes from Ultimate Member plugin. You can view the code here – https://plugins.trac.www.ads-software.com/browser/ultimate-member/trunk/includes/core/class-access.php#L71
Line 71Something similar!
I have set 200 mail/hour but it is sending 25/half-hour.
I think plugin stuck with 50 mail/hour.
Please fix the issue soon …Forum: Themes and Templates
In reply to: [GeneratePress] Make 2 sidebar into 1 sidebar in tab devicesI made it ??
Forum: Themes and Templates
In reply to: [GeneratePress] Make 2 sidebar into 1 sidebar in tab devicesWill i get a solution?
Forum: Themes and Templates
In reply to: [GeneratePress] Make 2 sidebar into 1 sidebar in tab devicesPlease use English, i don’t want to use google translate!
Link: https://solvemethod.com/disable-jetpack-photon-caching-page-specific/