Bertramhage
Forum Replies Created
-
I know this is an old post, but anyways:
In your theme there is a folder called functions.php, copy/paste this in:
<?php add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); function custom_override_checkout_fields( $fields ) { unset($fields['billing']['billing_first_name']); unset($fields['billing']['billing_last_name']); unset($fields['billing']['billing_company']); unset($fields['billing']['billing_address_1']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_city']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_country']); unset($fields['billing']['billing_state']); unset($fields['billing']['billing_phone']); unset($fields['order']['order_comments']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_company']); unset($fields['billing']['billing_last_name']); unset($fields['billing']['billing_email']); unset($fields['billing']['billing_city']); return $fields; }
Just remove the fields you want to keep
Update: like this:
In your themes functions.php file:
<?php add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); function custom_override_checkout_fields( $fields ) { unset($fields['billing']['billing_address_1']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_city']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_country']); unset($fields['billing']['billing_state']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_city']); return $fields; }
Using newest versions of wordpress, woocommerce and woocommerce checkout manager
Well i think i’ve solved it. The site title had too much padding, i cranked it down and i worked ??
I’ve tried using a code snippet to position the Navbar (top: 20px; etc.) but then when i scale it down to mobile view the three stripes will show way down in the slider.
Maybe if there was a way only to affect it when navbar was fully shown and not just the mobile three stripes
Hi, yes i checked all the Customize options and there isn’t a way to get it to the bottom. I have the sticky header feature turned off. I should mention that i wanted it to be stuck to the bottom of the header.
Btw i know the links are broken, here are the working ones:
Forum: Themes and Templates
In reply to: [Toivo Lite] How to get rid of the blue overlay in header image?wow okay, that worked ??
Thank you very much!
Forum: Themes and Templates
In reply to: [Toivo Lite] How to get rid of the blue overlay in header image?okay, so i’m not so experienced with the whole coding thing. So should i use the “Custom CSS Manager” plugin? and what should i put in it?
Forum: Themes and Templates
In reply to: [Toivo Lite] How to get rid of the blue overlay in header image?The header image has a blue overlay