Have your say in Community Polls: What was/is your greatest motivation to start your own business?
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Crave Theme - Assorted questions

Solved

Crave Theme - Assorted questions

PJBeirne
Tourist
6 0 2

I posted this question in design - reposting as this is the more appropriate spot. 

I hope these are easy fixes for this newbie.  Thanks

 

  • I'm using Crave theme at the moment and I notice on the product pages there are Nutrition and Ingredients tabs on the right (as well as shipping).  I can't figure out how to add information to these.  Any ideas?
  • I'd like to remove the search icon from the header.  I can't figure that one out either!  Nothing in the forums on this theme yet. 
  • I have created a Page which saves appropriately but does not appear when I go there in the live site.
Accepted Solution (1)

RobDukarski
Shopify Partner
88 15 20

This is an accepted solution.

@PJBeirne 

I believe that content is going to be within the metafields for the product, the block of the section within the Theme Editor, or a separate page itself.

If you are comfortable going into the code editor you can use the following CSS to hide the search icon:

.header__search {
  display: none;
}

 
Though it would ideally not be rendered at all so you would want to go into the sections/header.liquid file and remove or comment out the code for it directly. That said I am unsure if there is global theme code set up to interact with it so just using the CSS approach may be fine for you for now.

 

For the page, if you are referring to a separate page template you may need to assign that page template to the page within the Shopify admin back-end. If you meant something else please let me know and I'll try to assist.

Hope that helps!

- Rob Dukarski
Helping to make commerce better for everyone!

View solution in original post

Replies 2 (2)

RobDukarski
Shopify Partner
88 15 20

This is an accepted solution.

@PJBeirne 

I believe that content is going to be within the metafields for the product, the block of the section within the Theme Editor, or a separate page itself.

If you are comfortable going into the code editor you can use the following CSS to hide the search icon:

.header__search {
  display: none;
}

 
Though it would ideally not be rendered at all so you would want to go into the sections/header.liquid file and remove or comment out the code for it directly. That said I am unsure if there is global theme code set up to interact with it so just using the CSS approach may be fine for you for now.

 

For the page, if you are referring to a separate page template you may need to assign that page template to the page within the Shopify admin back-end. If you meant something else please let me know and I'll try to assist.

Hope that helps!

- Rob Dukarski
Helping to make commerce better for everyone!
PJBeirne
Tourist
6 0 2

Thanks @RobDukarski !  

FYI the search suggestion you provided didn't seem to work for me but someone else suggested :

Find Asset > base.css  and paste this at the bottom

svg.modal__toggle-open.icon.icon-search {
display: none;
}

This worked for me.