Shopify themes, liquid, logos, and UX
I have 2 queries: www.bonerboss.com
1. How do I remove the My Store text here?
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.
Solved! Go to the solution
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.
Try this code to remove the my store.
p.product__text.inline-richtext {
display: none;
}
To relocathe the price beside the Quantity please drag first the price down to Quantity.
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!
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.
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?
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025