Remove My Store text and Change Price Location

Solved

Remove My Store text and Change Price Location

BonerBossdotCom
Tourist
5 0 4

I have 2 queries: www.bonerboss.com

 

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

mystore.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

2. 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.
price.png

Accepted Solution (1)

tapan_sain
Shopify Partner
25 3 6

This is an accepted solution.

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.

tapan.sain · Customize Main · Shopify.png

Tapan sain

View solution in original post

Replies 4 (4)

Made4uo-Ribe
Shopify Partner
10203 2423 3069

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;
}
  • And Save.
  • Result:
  • Made4uoRibe_0-1746180677765.png

    To relocathe the price beside the Quantity please drag first the price down to Quantity. 

  • Made4uoRibe_1-1746180733802.png

    In your edit theme. And I will provide the code after. 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

tapan_sain
Shopify Partner
25 3 6

This is an accepted solution.

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.

tapan.sain · Customize Main · Shopify.png

Tapan sain

Rahul_dhiman
Shopify Partner
833 158 176

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
13.png


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

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages

tapan_sain
Shopify Partner
25 3 6

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?

Tapan sain