• Hi
    First of all i would say that it is a Great Plugin.
    I am having issue with the buddypress. Because after the installation of TML it create another register page. While i already have register page from the buddypress.
    TML register page is very simple don’t have much fields which i require.
    Can this plugin help me to customize buddypress register page?
    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    You can just change TML’s register link to go elsewhere:

    
    function tml_custom_action_link( $link, $action ) {
        if ( 'register' == $action ) {
            $link = 'YOUR CUSTOM URL';
        }
        return $link;
    }
    add_filter( 'tml_action_link', 'tml_custom_action_link', 10, 2 );
    
    Thread Starter iamkashifnadeem

    (@kashifkiduniya)

    Thanks for your reply.
    I place this function and put my register link but nothing happen.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘2 Register Pages in Buddypress’ is closed to new replies.