View Single Post
  #5  
Old 02-07-2016, 05:57 PM
  totaltec's Avatar 
totaltec totaltec is offline
 

X-Guru
  
Join Date: Jan 2007
Location: Louisville, KY USA
Posts: 5,823
 

Default Re: I managed to lose the price on item detail page

You never edit core css files, so you must either have your own CSS where you have been making modifications or you used the Custom CSS in the admin.

The price exists on that page. I see it on line 412 of view-source:http://www.ridgewaycompany.com/xcart/cart.php?target=product&product_id=40

Someone has added:
Code:
.product-details span.product-price, .product-quicklook span.product-price { display: none; }

Which has two class definitions as you can see. the .product-details span.product-price is the one affecting the price on this page. It is set to display none.

If you either edit the css above and remove the reference to that class, or add somewhere lower:
Code:
.product-details span.product-price { display: block; }

then your price will display.
__________________
Mike White - Now Accepting new clients and projects! Work with the best, get a US based development team for just $125 an hour. Call 1-502-773-6454, email mike at babymonkeystudios.com, or skype b8bym0nkey

XcartGuru
X-cart Tutorials | X-cart 5 Tutorials

Check out the responsive template for X-cart.
Reply With Quote