LOGIN / Register Page with Profile Builder

This topic has 8 replies, 3 voices, and was last updated 1 months, 2 weeks ago ago by Luca Rossi

  • 7 Answers
    Avatar: Martin
    Martin
    Participant
    March 24, 2024 at 08:17

    What I try to creat is somthing simple like this https://www.peaknx.com/en/customer/account/login/

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 24, 2024 at 09:29

    Hello, Martin,

    Thank you for getting in touch with us.

    1/ Styles come from the Elementor Pro plugin, please check screenshot in the Private Content area. We would recommend you check your settings there and contact support of the plugin to get further assistance.

    2/ For assistance with 3rd party plugin related questions, we kindly suggest that you reach out to the plugin support team directly.

    Additionally, should you require any customization services, please feel free to submit a request through your account page on our website.

    Please note that additional customization services fall beyond the scope of our basic support and are subject to associated fees.

    We thank you for your understanding.

    Best Regards,
    8Theme’s Team

    Please contact administrator
    for this information.
    Avatar: Martin
    Martin
    Participant
    March 24, 2024 at 15:59

    I can understan that is just that this happen during the Upgrade to the later version that I can not explain me.

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 24, 2024 at 18:30

    Hello, Martin,

    Please be advised that you are utilizing third-party plugins for which we cannot assume responsibility for their operation.

    Each update to our theme introduces a series of changes and enhancements. You can review the specific modifications made in the latest update at the following link: https://xstore.8theme.com/update-history/

    We recommend that you contact the support service of the plugins in question to obtain further assistance. Our team is equipped to answer inquiries directly related to the theme itself.

    It is important to note that theme authors are unable to track compatibility with all existing plugins, and we trust you will understand the limitations this entails.

    If you are not satisfied using our theme you can submit a refund request here – https://themeforest.net/refund_requests/new

    Best Regards,
    8Theme’s Team

    Avatar: Martin
    Martin
    Participant
    March 24, 2024 at 19:15

    if someone is not connencted and go to My account page the login page is still Domain/my-account, how can I modifier this to point to the page I want. ?

    Avatar: Martin
    Martin
    Participant
    March 24, 2024 at 21:26

    to fix the issue I needed to redirect the function.php. to be able to be more flexible on the full designed

    function custom_redirect_to_login_if_not_logged_in() {
    // Check if the current page is the “My Account” page and the user is not logged in
    if ( is_account_page() && !is_user_logged_in() ) {
    // Specify the URL of your custom login page
    $login_page_url = site_url(‘/login’);
    // Redirect to the login page
    wp_redirect( $login_page_url );
    exit;
    }
    }
    add_action( ‘template_redirect’, ‘custom_redirect_to_login_if_not_logged_in’ );

    Avatar: Justin
    Luca Rossi
    Support staff
    March 25, 2024 at 08:45

    Hi @Martin,

    Glad you’ve sorted out the issue.

    We’ve edited the code so everyone can copy:

    
    function custom_redirect_to_login_if_not_logged_in() {
    	// Check if the current page is the “My Account” page and the user is not logged in
    	if ( is_account_page() && !is_user_logged_in() ) {
    		// Specify the URL of your custom login page
    		$login_page_url = site_url('/login/');
    		// Redirect to the login page
    		wp_redirect( $login_page_url );
    		exit;
    	}
    }
    add_action( 'template_redirect', 'custom_redirect_to_login_if_not_logged_in' );
    

    Best Regards,
    8Theme’s Team

  • Viewing 8 results - 1 through 8 (of 8 total)

You must be logged in to reply to this topic.Log in/Sign up

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.