Jon9679
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Broken checkout pageI assume you mean get rid of Additional information and make it a little nicer?
This will make it fill 100% of the container.
.col-1 { width: 100% !important; }
This will get rid of the “Additional information”
.col-2 { display: none; }
Any good? As you’ve done before add these 2 to the CSS.
Forum: Plugins
In reply to: [WooCommerce] quantiy selectorHello,
Simply add this into your external CSS section or your style sheet.
.woocommerce .quantity .plus, .woocommerce-page .quantity .plus, .woocommerce #content .quantity .plus, .woocommerce-page #content .quantity .plus, .woocommerce .quantity .minus, .woocommerce-page .quantity .minus, .woocommerce #content .quantity .minus, .woocommerce-page #content .quantity .minus { display: none; }
Forum: Plugins
In reply to: [WooCommerce] Variation name (Choose an option..) changePerfect Mike’s, thanks for your help.
I ended up using your function in the end Mike Moore. Works flawlessly – now I must delve in and get my head around functions.
Thanks as always.
Forum: Plugins
In reply to: [WooCommerce] Box around variationsIf for some reason Mike’s code doesn’t work, add in this css.
.woocommerce div.product form.cart .variations td { background: inherit; }
Forum: Plugins
In reply to: [WooCommerce] Moving the add to cart button…<div class="single_variation_wrap" style="display:none;"> <?php /** * woocommerce_before_single_variation Hook */ do_action( 'woocommerce_before_single_variation' ); /** * woocommerce_single_variation hook. Used to output the cart button and placeholder for variation data. * @since 2.4.0 * @hooked woocommerce_single_variation - 10 Empty div for variation data. * @hooked woocommerce_single_variation_add_to_cart_button - 20 Qty and cart button. */ do_action( 'woocommerce_single_variation' ); /** * woocommerce_after_single_variation Hook */ do_action( 'woocommerce_after_single_variation' ); ?> </div>
In the code listed, what is the actual add to cart button? I really appreciate your help Mike, legend.
Forum: Plugins
In reply to: [WooCommerce] Variation name (Choose an option..) changeThanks for your reply.
Does this go in the functions file? I get an error posting this in at the min.
Is there any other way to resolve this? ??
thanks again.
Forum: Plugins
In reply to: [WooCommerce] Box around variationsWhat’s your website? I’ll take a look.
Am I right to assume the best way to integrate is to use hooks?
Thanks for the CSS class, I still don’t understand why my account and the other pages are blank.
Any ideas? So far I’m just using the <?php woocommerce_content(); ?>) and i can see the shop and products, just nothing on the other pages.