You are really close to solving this problem:
Have a look at the FAQ
https://wordpress.org/plugins/woocommerce-checkout-manager/faq/
Will help you.
Thread Starter
Sheila
(@sheilahoff)
Thanks for the response Emark. However there’s nothing there about hiding fields. I did try changing the ID to Class (period to pound sign) but still no joy: #myfield1_field {display: none;}
Can you tell me what I’m missing?
I can give you a login but I sort of hate to post it here. Can I PM you?
You are correct in changing it pound, it should be working.
Where are you placing the CSS?
I am sorry, I am only able to assist you here.
Thread Starter
Sheila
(@sheilahoff)
I SO appreciate you’re responses. I’ve now tried adding !important to each and including but with a dot and with the hastag!
/* hide custom check out field */
#add_info_wccs {display: none !important;}
.add_info_wccs {display: none !important;}
.myfld1_field {display: none !important;}
#myfield1_field {display: none !important;}
I first added it to the bottom of my Shortcodes Ultimate CSS because I’ve always been able to add custom code there successfully. But on your prompt I’ve now tried it at the bottom of the site’s style.css AND then I also tried on the plugin Shop Styler’s Custom CSS panel. This site has way too many places to add CSS! But it seems like one of them should’ve worked. I think I’m missing some selector information to make this work.
Thanks.
Thread Starter
Sheila
(@sheilahoff)
OK…I’ve got it now! Back to the original placement and this code…
/* hide custom check out field */
.add_info_wccs {display: none !important;}
#myfld1_field {display: none !important;}
THANK YOU!