Archon147
Forum Replies Created
-
Forum: Plugins
In reply to: Woocommerce: Disable Prices & Replace Price Tag ImageAlrighty, So I figured out my issues and here is how I did it:
1) I went ahead and bought the “Catalog Visibility Options” plugin for woocommerce. Not a free solution, but the clock was ticking and this was easy. Also it comes with some nifty options.
2) I located the image : “price.png” in the woocommerce/images folder and made that into a rectangle.
Then I went into wp-content/themes/whateveryourthemeis/Woocommerce/style.css
I looked for the lines:
div.product div.images p.price, ul.products li.modern .price, .productslider-wrapper .price { color:white; font-size:2em; width:84px; height:84px; font-weight:400; text-align:center; line-height:1.2; background:#191a21 url(images/price.png) no-repeat; -webkit-border-radius: 60px; -moz-border-radius: 60px; border-radius:60px; }
This is that price label, price circle, or whatever you want to call it. Changed Height, Width, added Opacity, changed the background color. Most importantly I commented out the last three lines (because they say radius) with the “/*” and “*/”. Here’s what the code looks like:
div.product div.images p.price, ul.products li.modern .price, .productslider-wrapper .price { color:white; font-size:2em; width:165px; height:35px; opacity: .75; font-weight:400; text-align:center; line-height:1.2; background:#191a21 url(images/price.png) no-repeat; /*-webkit-border-radius: 60px; -moz-border-radius: 60px; border-radius:60px;*/ }
This is how it now looks:
https://khourybros.com/product/topaz-visionnaire-ring/
Need to change location of the rectangle but works for now.Mine is a rectangle, but if you want a resource on the code for rounded edges go here:
https://www.css3.info/preview/rounded-border/Forum: Themes and Templates
In reply to: Woothmes or Themeforest ?Sorry for the late reply to Chrisfer, but I would definitely stay away from Meari. The thing is sooooo buggy. Attractive, but buggy. It breaks every time woo updates and there is no support. I have spent months trying to keep up with the fixes. In short: Don’t buy Mearishop. If you’ve bought it, I’m sorry. If you mail me, I’ll try and send any fixes I have worked out. Best of luck.
Oh, to actually answer your question. If Woo updates, and your theme isn’t set to roll with the update, your store goes down (at least partially). Therefore, buying a Woo theme is the better bet, though they set it up that you HAVE to buy their plugins for a lot of beneficial functionality. Cheers!