- This topic has 4 replies, 2 voices, and was last updated 14 years, 6 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › Css and WP Estore
Tagged: css fancy display 4
Hey, I’m looking to style the text that displays the price on product entries, but I can’t seem to find where it is in the code, what should I search for or what file is it in?
Different fancy display have different CSS. Which fancy display are you trying to modify? All the CSS is in the “wp_eStore_style.css” file. Please post a link to the page.
I’m using the [wp_eStore_category_products:category_id:1:end] shortcode. there’s no selector specified for the text, I just need to know where is is in the code so I can add it myself.
Fancy1 display doesn’t have a selector for price. You can add it in here… open the “eStore_misc_functions.php” file and look for the following line:
$output .= '<br /><strong>'.ESTORE_PRICE.': </strong>'.WP_ESTORE_CURRENCY_SYMBOL.$ret_product->price.'<br />';
Make changes as you like (there might be two occurrences of the above so make sure to change them all).
Great, thanks!