• Resolved luciegbt

    (@luciegbt)


    Hi,

    I currently own a website where I use restricted content via woocommerce Membership plugin + Ultimate member plugin. This way, people can buy the audio first and then they can access and listen to their audios on their account once logged in.

    I had several questions in order to customize the account once logged in page :

    1. Currently, people have to log in to their account > Then click on the “uploads” tab > then click listen on the specific audio > then they access another intermidiate page where they have to click once more on a “listen” button > Then they access a final page (restritected page) where they can listen to their audio. Which means there is 2 steps before they can access the final restricted page where they can access the audio. How can this be shortened? How can people click on Upload > And when they select a specific audio, they are redirected straight to the restricted page where they can listen to the audio ?
    2. Alternatively, once they click on uploads, could we implement a general button saying “access to your audios” where they would be redirect to a final restricted page where all the audios exist and can be listened?
    3. How can I please re-order the list of uploads as they appear on the user’s account today?
    4. Finally, how can I please make sure people stay logged “permanently” in if they haven’t logged out? Currently, my clients have to log all over again everytime they want to access their account.

    Thanks very much in advance,

    Lucie

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support andrewshu

    (@andrewshu)

    Hello @luciegbt

    Sorry, but customizations are not included in our support.

    Regards.

    @luciegbt

    they are redirected straight to the restricted page where they can listen to the audio

    What is the URL of this page?

    Thread Starter luciegbt

    (@luciegbt)

    Hi!

    @missveronicatv, Here is the link. Thanks very much !

    @andrewshu, is there a way to pay for a fee in order to get support for customization?

    @luciegbt

    You can try this code snippet with a shortcode for a link button.

    Shortcode example:
    [link_button url="https://your.domain.com/my-account/" text="Test button"]

    add_shortcode( 'link_button', 'my_link_button_shortcode' );
    function my_link_button_shortcode( $atts, $content ) {
    
        $html = '<button><a href="' . esc_url( $atts['url'] ) . '">' . esc_attr( $atts['text'] ) . '</a></button>';
        return $html;
    }

    Install by adding the code snippet to your active theme’s functions.php file
    or use the “Code Snippets” Plugin

    https://www.ads-software.com/plugins/code-snippets/

    Thread Starter luciegbt

    (@luciegbt)

    @missveronicatv, thanks for your reply ! Could you please explain a bit further what this action is supposed to fullfill ? Thanks in advance !

    @luciegbt

    How can people click on Upload > And when they select a specific audio, they are redirected straight to the restricted page where they can listen to the audio ?

    A link button for the User to click for going to the restricted page.

    Plugin Support andrewshu

    (@andrewshu)

    Hi @luciegbt

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to re-open this thread if any other questions come up and we’d be happy to help. ??

    Regards

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Optimising Member’s Account Area’ is closed to new replies.