• Resolved joyryde

    (@joyryde)


    Hi,

    After 2 years of using Neve we just discovered today that the default “My Account” page that comes with Woocommerce looks much better than the one in Neve…is there a way to replace the Neve page with the default?

    The neve page is just basic text with zero styling and confusing navigation:

    whereas from what we read online, the Woocommerce one from way back in 2017 looks modern and clean like this?

    We love Neve theme but this one page seems to have been overlooked by the theme developers…

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @joyryde,

    Thank you for using Neve.

    You can download a ready-made child theme for Neve on this page, and add the following code at the end of the functions.php file of the child theme to remove the theme style from the My Account page of WooCommerce.

    function dequeue_neve_woocommerce_style() {
      if ( function_exists( 'is_account_page' ) && is_account_page() ) {
        wp_dequeue_style( 'neve-woocommerce' );
      }
    }
    add_action( 'wp_enqueue_scripts', 'dequeue_neve_woocommerce_style', 99 );

    I hope this will help.

    Regards,
    Stefan

    Thread Starter joyryde

    (@joyryde)

    Hi Stefan, thank you!

    We added the snippet to remove the Neve styling of the My Account page, but all it did was keep it as basic text and move the navigation to the side….? It doesn’t look like the default page that comes with Woocommerce…? Do we need to custom code CSS now?

    Hi @joyryde,

    The code previously shared should remove changes applied by the Neve theme on the My Account page. Custom CSS shouldn’t be required anymore as the Neve style doesn’t load with this code(on the My Account page).

    The screenshot you shared doesn’t look like the default My Account page. My point here is that you probably tested it with a theme that adds some style making that page look like in your screenshot.

    Regards,
    Stefan

    Thread Starter joyryde

    (@joyryde)

    Hi Stefan,

    Our websites are all based on the Neve Pet Shop theme.

    Hi @joyryde,

    I understand this. I tested how the My Account page looks with Neve and the code I shared and with a default WP theme and it’s similar.

    The screenshot you shared might have been taken with the Storefront theme that adds some style for the My Account page to look like that.

    I hope it makes sense.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Replace Neve Theme “My Account” Page with the Default Woocommerce One?’ is closed to new replies.