Aswin Giri
Forum Replies Created
-
Hello @blobmallett
A blank logout page in Ultimate Member is typically caused by caching issues or incorrect logout redirect settings. First, ensure your logout page URL (e.g., /logout/) is excluded from all caching plugins, server-level caching, and CDNs like Cloudflare. Then, check the user role logout redirect by going to Ultimate Member > User Roles, editing your role, and scrolling to Logout Options. Make sure “Action to be taken after logout” is set to something like “Redirect to homepage” or a specific page—leaving this blank can cause a white screen. If the issue persists, try creating a fresh logout page via Pages > Add New, leave it blank, and assign it in UM Settings > General > Pages.
Hello @aelias7
Are you having issue only with Ultimate member login form or its the same case with default wordpress login page?
Hello @yuuki2929
Ultimate member free plugin does not have feature of role subscription. If you really need this feature, you can achieve it, by adding paid extensions and woocommerce plugin.
Hello @hogg66
We are not allowed to provide support on this platform for our services and products other than hosted on ww.wp.xz.cn, If you are a customer, please open a support ticket from our website.
Hello @bradenanderson
Can you please share a short video or screenshot of the issue you are having issue with?
Hello @kwoodunivix
When I checked the url you shared this is what I see on my end: https://prnt.sc/PIfo90zCPO8z
Can you please mention what are you having issue with? I can see text on button and also other text clearly. so, if I misunderstood your issue, please share a screenshot of the issue you are having.
@rippleffect If you are only trying to save ip address as metadata when user register, you can try adding following code snippet:
add_action( 'um_registration_complete', function( $user_id, $args, $form_data ) {
if ( function_exists( 'get_user_ip_data' ) ) {
$location = get_user_ip_data(); // Returns array with IP and other details
if ( ! empty( $location['query'] ) ) { // 'query' holds the IP address
update_user_meta( $user_id, 'user_ip_address', sanitize_text_field( $location['query'] ) );
}
}
}, 20, 3 );Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] Pasting youtube links doesn’t workHello @act0607hk
If you do not want youtube preview from link, you can try adding following code to your theme’s functions.php file
add_filter('embed_oembed_discover', '__return_false');Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] WPFORO VS ForumWPHello @kampot888
Sorry for the late response. The features you are asking for are not available with the plugin at this time.
Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] Email notifications not workingHello @drumbeatmcr
Can you please check if notification is turned on from user profile page?
Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] Replies stop workingHello @amandadev
Can you please try following solution:
Navigate to: wp-admin > Yoast SEO > Settings> General > Site features
Scroll Down to “Social Sharing” Section and turn off “Open graph data” and “X card data” and see if this fixes the issue for you.Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] Pasting youtube links doesn’t workHello @act0607hk
Please navigate to wp-admin > Forums > General > general Options and enable Enable raw HTML in topic/reply content setting.
Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] Pasting youtube links doesn’t workHello @act0607hk
Can you please navigate to wp-admin > Forums > General > general Options and enable Enable raw HTML in topic/reply content setting.
Hello @hardhat760 ,
Please try adding this code snippet to your site and see if this solves the issue.
Thanks
Hello @ugj78
Is it just one user your are having issue with or is it more than one users with specific role?