That is weird. I have reinstalled and it is functioning as expected. Thanks!
What is that? I am unable to see the subscribe button/section I only see the shortcode written out.
we actually use FluentSTMP, not WP Mail. When I checked the send logs, it appeared correct https://prnt.sc/0_dFAN0hrsvV I will contact my hosting service.
I just tested again on my phone using Firefox. I was able to subscribe and I received the welcome email. However, the automatic login did not work.
It appears so. I haven’t been able to test on tablets.
Thank you! Is there a way to remove pagination completely?
Thank you
I have been testing and testing. Today I tried to register on mobile. It redirected to the correct page but no registration happened. please advise.
Does that sort for tags? I need it sorted by tags
Thank you. Also, is there a way to exclude a category? ie. if I wanted to list items in Category A but NOT Category B
Thank you, yes, that is the solution.
Yes, I see that option. What I am asking about is when people click “Subscribe” and register for membership with us they are redirected to the user-dashoard. I would like for them to go to a different page.
Yes, I understand. Can I create a custom default image?
It is related to that. I have my register page going to a custom URl. When people register there I’d like for them to be redirected to another URL instead of the user dashboard.
Yes, It was just taking aminute and I jumped the gun.Thanks
Can I set a new default user profile image?
Is there another way? I am not going to ask my users to sign up with a whole other website just to change their profile picture.
I see that you just added this! Thank you! I am not super familiar with corn jobs but if I adjust the “1” to 2,3, or whatever other number is that how may days before the renewal they will get noticed?
Is there a shortcode to display the top downloads overall?
I found an answer that works! https://www.wpdownloadmanager.com/support/topic/change-logout-redirect-url/
Add the following code to the bottom of your active theme’s functions.php file to redirect users to the homepage. You can add custom URL slug inside home_url function to redirect to a custom URL.
add_action(‘wp_logout’, ‘wpdm_logout_redirect’);
function wpdm_logout_redirect(){
wp_redirect(home_url(“”));
exit();
}