I have 2 queries: www.bonerboss.com
- How do I remove the My Store text here?
- 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.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- 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
- 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