mike1394
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Set Price for Product VariationsApparently woocommerce has two extensions to handle this. They do not call what I was trying to accomplish “variations” they call them product addons. Which makes sense to me now. Woocommerce got back to me and suggested one of these two extensions:
https://www.woothemes.com/products/gravity-forms-add-ons/
https://www.woothemes.com/products/product-add-ons/
Hope this helps someone with the same issue I had.
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Redirect on loginAnyone know how to redirect specific roles to specific pages? I.E. dealers are redirected to a specific url upon login.
Thanks in advance.
Forum: Plugins
In reply to: [WooCommerce] User Role PricingI was actually on your website earlier and one of your comments said 6-8 weeks, is that from now? Do you have a ballpark of when you think you’ll be releasing it?
Forum: Plugins
In reply to: [WooCommerce] User Role PricingI am also looking for this.
Forum: Plugins
In reply to: [WooCommerce] Adding the text "NOW" before the price on a single product pageYou’re welcome.
Forum: Plugins
In reply to: [WooCommerce] delete From$ ~From is a span class of from so .from should target it. It doesn’t seem to and I’m not sure why. Perhaps contact the makers of the theme. Obviously something in their code is preventing that change.
I checked a firebug of the Mystile theme and it is a class of from but when I altered it, it did not change. Maybe try a google search for that specific theme. It’s good to be putting your new css in the custom.css by the way, like you’re doing. Good luck.
Forum: Plugins
In reply to: [WooCommerce] Dynamic variation prices based on main priceI’ve been looking for that too, otherwise you have to do a bunch of math and your customer gets a different price but isn’t told why.
Forum: Plugins
In reply to: [WooCommerce] Multiple Images under product page/feature imageYou can also “attach” them to a product from the media page. I looks like:
(Unattached)
AttachClick the attach link and add it to a product.
The fact that there is no section in woocommerce for handling thumbnails is definitely an issue I hope they fix.
It used to be the only way to unattach the images was to delete them but there is a small plugin called unattach that will do it without deletion.
Forum: Plugins
In reply to: [WooCommerce] delete From$ ~You can hide it with css.
.from { display: none !important; }
Forum: Plugins
In reply to: [WooCommerce] Adding the text "NOW" before the price on a single product pageYou can do this with css.
ins:before { content: "Now: "; color: #000; font-size: 14px; }
“ins” is the new price when it’s onsale. I believe it would be “.amount” if there is no sale price.