Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3778885
Show Tilte of my shop page woocommerce
Closed

Comments

  • michaellafrasse started the conversation

    Hello,

    I’m still working on my site locally. I’m setting up WooCommerce, and I wanted to know how I can get the title of my shop page (which is called "Shop") to display?

    This is the page automatically created by WooCommerce, but its title isn’t displayed, whereas on my live site with my old theme (attachment old website), it was. I haven’t changed anything in the settings, and I can’t figure out how to make the title visible.

    Please see the screenshots.

    Thank you!

    Attached files:  boutique titre.png
      Old website.png

  •  2,658
    PenciDesign replied

    Hi,

    You should paste this code into the function.php of the child theme or via the CodeSnippet plugin here: https://wordpress.org/plugins/code-snippets/

    add_filter( 'woocommerce_show_page_title', function () {
    	return true;
    }, 999 );

    Regards,
    PenciDesign.

  • michaellafrasse replied

    Hi,

    Thanks. And if i want to personnalize this title? I can?

    Other question: Can I create a specific template, like for a page or a post, for the main shop page?

    Thank you!

  •  2,658
    PenciDesign replied

    Hi,

    1/ The 'Shop' is the page title. You can customize it by editing the page title in WordPress.

    2/ Yes, you can create a custom page template using the Elementor Page Builder.

    Regards,
    PenciDesign.

  • michaellafrasse replied

    1/ When I say customize, I mean changing the layout, the look, the font… In short, changing everything.

    2/ It’s not working. When I go to Pages → Shop → Edit with Elementor, I get an error message… Maybe I’m not doing it correctly?

    Thank you in advance!

    Attached files:  woocommerce.png

  •  2,658
    PenciDesign replied

    Hi,

    1/ To edit the general shop page, go to Appearance → Customize → WooCommerce → Shop Settings.

    2/ The page you have set as the Shop Page is managed by WooCommerce, which prevents it from being edited with Elementor. If you want to create a custom shop page, please do not assign it as the general Shop Page in the WooCommerce settings.

    Regards,
    PenciDesign.

  • michaellafrasse replied

    I think I’m missing something obvious, but I can’t find where to change the style of the shop page title in the Shop Settings.
    As shown in my screenshot, I’d like the word “Shop” to be centered and, for example, in a different color.

    Attached files:  tiltle woocommerce.png

  •  2,658
    PenciDesign replied

    Hi,

    Please send me the page URL.

    Regards,
    PenciDesign.

  • michaellafrasse replied

    I can't for the moment the website is on my local server...

  •  2,658
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    body h1.woocommerce-products-header__title {
      font-size: 30px;
      font-weight: bold;
    }

    Please modify this CSS code to fit your requirements.

    Regards,
    PenciDesign.

  • michaellafrasse replied

    Thanks it's all good ;)