SuitePlugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] Ultimate Member FormsThanks for sharing this. I took at your site and I can see that the Login Widget does not seem to be issue.
I suggest posting your query here https://www.ads-software.com/support/plugin/ultimate-member/
Greetings,
I am doing a follow up here to know if you are still experiencing the issue and if so, if it would be possible to share more details about the shortcode being used.
Thanks for reaching out. Can you tell me what is the shortcode that you are trying to use and what it does.
The issue may be the functionality of the shortcode itself. I would be happy to assist you with this.
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Log Out ButtonYou can update the
home_url
function like thishome_url('/login/')
. So basically, you add the slug that you would like inside the function.So your updated code may look like this.
if ( isset( $_GET['profiletab'] ) && 'logout' == $_GET['profiletab'] ) { // Logout user wp_logout(); // redirect to home page. wp_redirect( home_url('/login/') ); exit; }
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Log Out ButtonYou can create a new tab using the plugin and set the slug to account.
Then when you add the code I sent, a user will be sent to the account page if they click the account tab on the profile.
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Log Out ButtonGreetings again,
I have updated redirect function for you.
function custom_um_logout_action() { if ( isset( $_GET['profiletab'] ) && 'logout' == $_GET['profiletab'] ) { // Logout user wp_logout(); // redirect to home page. wp_redirect( home_url() ); exit; } if ( isset( $_GET['profiletab'] ) && 'account' == $_GET['profiletab'] && function_exists( 'um_get_core_page' ) ) { $account_page = um_get_core_page( 'account' ); if ( $account_page ) { // redirect to home page. wp_redirect( $account_page ); exit; } } } add_action( 'template_redirect', 'custom_um_logout_action' );
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Log Out ButtonGreetings,
If you would like to create the tab via code. You can use the following
function custom_um_logout_add_tab( $tabs ) { $tabs[ 'logout' ] = array( 'name' => 'Logout', 'icon' => 'um-faicon-pencil', 'custom' => true ); UM()->options()->options[ 'profile_tab_' . 'logout' ] = true; return $tabs; } add_filter( 'um_profile_tabs', 'custom_um_logout_add_tab', 1000 );
Now to make the user logout on visiting the tab. You can use the following.
function custom_um_logout_action() { if ( isset( $_GET['profiletab'] ) && 'logout' == $_GET['profiletab'] ) { // Logout user wp_logout(); // redirect to home page. wp_redirect( home_url() ); exit; } } add_action( 'template_redirect', 'custom_um_logout_action' );
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Shortcode on custom tabHi Andrea,
The option to add a custom tab with a UM Form is only available in the pro version of the plugin. If you have the pro version of the plugin, please use the website contact form for assistance with that.
Thanks for your time.
Thanks for reaching out with the issues you have encountered.
I will investigate and fix the issues related to the deleting of the album.
For the photos on users’ galleries, are you saying they are unable to access the older photos to delete them?
Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] Plugin does not workThere was an update to the plugin. Please try again and let me know if this helps.
Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] Error after WordPress UpdateThanks for letting me know.
Please give it a try with version 1.0.5.8
Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] fatala errorThanks for sharing the details of the error. I have released an updated version that will stop this issue from happening.
Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] Error after WordPress UpdateThanks for letting me know. I will investigate this and update you ASAP
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] php content in custom tabGreetings,
I went ahead and tested out the plugin with the latest version of Ultimate Member and WordPress and is working as it should. The Ultimate Member form shortcode cannot be added to the tab via the lite version. The pro version is different because it has an option to choose the UM form from a dropdown.
I went ahead and tried PHP Everywhere but I found that the PHP commands are not being saved. So, I went tried another plugin called Insert PHP Code Snippet and I was able to get PHP commands added to the tab with no problems. Please give it a try.
Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] Plugin does not workSorry about the delay, to resolve your issue required simply going to Ultimate Member tab settings and enabling it from there.
I took a look at this and found other persons had a similar issue, so I went ahead and made sure the tab is available on plugin activation.
The plugin has been updated and includes a few other fixes and improvements that I have been meaning to release.
Thanks for reaching out.