Remove My Store text and Change Price Location

Topic summary

A user seeks help with two product page customizations on their Shopify store:

Issue 1: Removing “My Store” text

  • Multiple solutions provided using CSS code added to the theme’s stylesheet (base.css/style.css)
  • Code targets p.product__text.inline-richtext with display: none
  • One responder suggests checking the theme customizer first, as some themes allow hiding the vendor name via a simple eye icon toggle without coding

Issue 2: Relocating price display

  • Problem: Customers must scroll up after selecting variants to see the updated price
  • Suggested solution: Drag the price element down near the quantity/add-to-cart button in the theme customizer
  • Alternative: Some themes allow reordering sections directly in the customizer without code modifications

Current status: Multiple working solutions provided with screenshots demonstrating results. A minor discussion emerged about whether CSS is necessary when theme customizer options might suffice, depending on the specific theme being used.

Summarized with AI on October 28. AI used: claude-sonnet-4-5-20250929.

I have 2 queries: www.bonerboss.com

  1. How do I remove the My Store text here?

  1. How can I duplicate the rate displayed at the top to the bottom? Clients select the variant they want and have to scroll up to see the displayed price which is not convenient. Having the price next to the button will be more convenient.

1 Like

Hi @BonerBossdotCom

Try this code to remove the my store.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
p.product__text.inline-richtext {
    display: none;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hello @BonerBossdotCom

Open your theme’s customizer and navigate to the Product template.

On the left-hand side panel:

  • To hide the vendor name, click the eye icon next to the vendor option.

  • To adjust the position of the price, you can drag and reorder the sections as needed.

Note: These settings may vary depending on your theme.
If your theme doesn’t offer these options in the customizer:

  • You can hide the vendor name using CSS.

  • To change the position of the price, you’ll need to edit the relevant theme files directly.

Hello @BonerBossdotCom

  1. How do I remove the My Store text here?

Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.

p.product__text.inline-richtext {
display: none !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Hello Rahul,

If this can be managed through the customizer, may I know why there’s a need to use CSS for it as well?

1 Like