Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Troubleshooting › eStore – sidebar widget not showing product prices
Tagged: estore, no price showing, sidebar, widget
- This topic has 9 replies, 4 voices, and was last updated 11 years ago by gabbrr.
-
AuthorPosts
-
July 10, 2012 at 1:57 pm #6850Kate_HMember
I have added the shopping cart widget to my sidebar but when I add a product to the cart it doesn’t show the product price or a total price.
If I use the shortcode [wp_eStore_cart_fancy1] it is showing the product price and total price so I know I have entered it correctly.
Any help would be appreciated.
Kate_H
July 10, 2012 at 11:38 pm #47166PeterMemberCan you please send us a link to your page so we can add some products to the cart and take a look?
July 11, 2012 at 2:12 pm #47167Kate_HMemberThe website is [www.PLRArticlesOnline.com]
The “Add To Cart” pages are under PLR Packs
If you click on the cart icon in the header it will go to the shopping cart page where the items are showing correctly.
It’s the shopping cart widget that is not showing any prices.
Regards
Kate_H
July 12, 2012 at 12:43 am #47168PeterMemberHi,
I’ve had a look at your site and the problem is that your theme is making the color of the price text white.
Anyway that’s not major issue because you can work around it by adding the following CSS code in your wp_eStore_custom_style.css file:
div.shopping_cart tr td {
color: #000000;
}
July 12, 2012 at 2:18 am #47169adminKeymasterIn addition to what Peter suggested I am giving you a little more info so you can see what is really going on.
Everything is there but your theme’s CSS is making the color of the text white. So white font color on white background is making it invisible.
Here are some options for you:
Option 1
1) Find the following block of CSS in your theme’s CSS file which is specifying white as the font color (very weird to specify white color on a white background):
.sidebar {
color: white;
font-size: 12px;
}Change the above to the following to correct the mistake:
.sidebar {
font-size: 12px;
}Option 2
Add the following block of CSS in the WP eStore’s custom CSS file (wp_eStore_custom_style.css) to override the color to black by force:
.shopping_cart {
color: black !important;
}July 12, 2012 at 10:24 am #47170Kate_HMemberMany thanks Peter and admin (whoever you are) for your fast response and detailed replies.
I copied the code over to the wp_eStore_custom_style.css file and it works a treat.
I guessed it would be something simple but had no idea it was a white on white problem.
Thanks again
Kate_H
October 18, 2013 at 10:03 pm #47171gabbrrMemberHi,
I’ve got the same problem. The shopping cart widget doesn’t show the product price and the total price.
I tried to insert the code in the wp_eStore_custom_style.css file as suggested above but this didn’t solve the problem.
Here is a snapshot: [http://cl.ly/image/2M2m3Z1O1U3H]
Thank you.
October 18, 2013 at 11:32 pm #47172adminKeymasterHi, Please provide link to the page where I can go and add the item to the cart. That will allow me to see the HTML code and find out what is going wrong on this site. Which shortcode are you using and what value did you use for the price of the item?
October 19, 2013 at 8:22 am #47173gabbrrMemberHi, Thanks for your reply. Here is the link:
[http://surround-ambiences.com/?page_id=284]
I used [wp_eStore_add_to_cart] shortcode, prices are in euro.
Thank you.
October 19, 2013 at 11:05 am #47174gabbrrMemberHi,
Solved! I forgot to deactivate the plugin before installing update! Now everything works fine.
Thank you.
-
AuthorPosts
- You must be logged in to reply to this topic.