Title: SuitePlugins's Replies - page 3 | WordPress.org

---

# SuitePlugins

  [  ](https://wordpress.org/support/users/suiteplugins/)

 *   [Profile](https://wordpress.org/support/users/suiteplugins/)
 *   [Topics Started](https://wordpress.org/support/users/suiteplugins/topics/)
 *   [Replies Created](https://wordpress.org/support/users/suiteplugins/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/suiteplugins/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/suiteplugins/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/suiteplugins/engagements/)
 *   [Favorites](https://wordpress.org/support/users/suiteplugins/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 31 through 45 (of 223 total)

[←](https://wordpress.org/support/users/suiteplugins/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/suiteplugins/replies/?output_format=md) 
[2](https://wordpress.org/support/users/suiteplugins/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/suiteplugins/replies/page/4/?output_format=md)…
[13](https://wordpress.org/support/users/suiteplugins/replies/page/13/?output_format=md)
[14](https://wordpress.org/support/users/suiteplugins/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/suiteplugins/replies/page/15/?output_format=md)
[→](https://wordpress.org/support/users/suiteplugins/replies/page/4/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member Custom Tab Builder Lite] Nofollow/noindex a tab?](https://wordpress.org/support/topic/nofollow-noindex-a-tab/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/nofollow-noindex-a-tab/#post-16660990)
 * Hi Greg,
 * I will add a setting for this. I will keep you posted.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Login Widget for Ultimate Member] Ultimate Member Forms](https://wordpress.org/support/topic/ultimatemember-forms/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/ultimatemember-forms/#post-15612301)
 * Thanks 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://wordpress.org/support/plugin/ultimate-member/](https://wordpress.org/support/plugin/ultimate-member/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NSFW] [Ultimate Member Custom Tab Builder Lite] UM form Shortcode doesn’t work](https://wordpress.org/support/topic/um-form-shortcode-doesnt-work/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/um-form-shortcode-doesnt-work/#post-15341442)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NSFW] [Ultimate Member Custom Tab Builder Lite] UM form Shortcode doesn’t work](https://wordpress.org/support/topic/um-form-shortcode-doesnt-work/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/um-form-shortcode-doesnt-work/#post-15332010)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member Custom Tab Builder Lite] Log Out Button](https://wordpress.org/support/topic/log-out-button-6/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/log-out-button-6/#post-14704128)
 * You can update the `home_url` function like this `home_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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member Custom Tab Builder Lite] Log Out Button](https://wordpress.org/support/topic/log-out-button-6/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/log-out-button-6/#post-14694153)
 * You 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member Custom Tab Builder Lite] Log Out Button](https://wordpress.org/support/topic/log-out-button-6/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/log-out-button-6/#post-14693686)
 * Greetings 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member Custom Tab Builder Lite] Log Out Button](https://wordpress.org/support/topic/log-out-button-6/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/log-out-button-6/#post-14691573)
 * Greetings,
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member Custom Tab Builder Lite] Shortcode on custom tab](https://wordpress.org/support/topic/shortcode-on-custom-tab/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/shortcode-on-custom-tab/#post-14600653)
 * Hi 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Video & Photo Gallery for Ultimate Member] Can’t delete albums or photos from back end](https://wordpress.org/support/topic/cant-delete-albums-or-photos-from-back-end/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/cant-delete-albums-or-photos-from-back-end/#post-14389531)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Video & Photo Gallery for Ultimate Member] Plugin does not work](https://wordpress.org/support/topic/plugin-does-not-work-183/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-183/#post-14269013)
 * There was an update to the plugin. Please try again and let me know if this helps.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Video & Photo Gallery for Ultimate Member] Error after WordPress Update](https://wordpress.org/support/topic/error-after-wordpress-update-6/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/error-after-wordpress-update-6/#post-14268981)
 * Thanks for letting me know.
 * Please give it a try with version 1.0.5.8
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Video & Photo Gallery for Ultimate Member] fatala error](https://wordpress.org/support/topic/fatala-error/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/fatala-error/#post-14259256)
 * Thanks for sharing the details of the error. I have released an updated version
   that will stop this issue from happening.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Video & Photo Gallery for Ultimate Member] Error after WordPress Update](https://wordpress.org/support/topic/error-after-wordpress-update-6/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/error-after-wordpress-update-6/#post-14207289)
 * Thanks for letting me know. I will investigate this and update you ASAP
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member Custom Tab Builder Lite] php content in custom tab](https://wordpress.org/support/topic/php-content-in-custom-tab/)
 *  Plugin Author [SuitePlugins](https://wordpress.org/support/users/suiteplugins/)
 * (@suiteplugins)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/php-content-in-custom-tab/#post-14179655)
 * Greetings,
 * 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](https://wordpress.org/plugins/insert-php-code-snippet/)
   and I was able to get PHP commands added to the tab with no problems. Please 
   give it a try.

Viewing 15 replies - 31 through 45 (of 223 total)

[←](https://wordpress.org/support/users/suiteplugins/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/suiteplugins/replies/?output_format=md) 
[2](https://wordpress.org/support/users/suiteplugins/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/suiteplugins/replies/page/4/?output_format=md)…
[13](https://wordpress.org/support/users/suiteplugins/replies/page/13/?output_format=md)
[14](https://wordpress.org/support/users/suiteplugins/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/suiteplugins/replies/page/15/?output_format=md)
[→](https://wordpress.org/support/users/suiteplugins/replies/page/4/?output_format=md)