Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter cqwjds

    (@cqwjds)

    ah, ok, so it’s pretty useless for doing anything real in terms of customizing a site. Guidance for all answers seems to be “go pay someone to do that for you, here’s a referral link we make money off of” . nice an useless site in terms of helping, but i’m sure it makes you money and that’s all you care about. what shame its not actually a useful or helpful site.

    Thread Starter cqwjds

    (@cqwjds)

    No, its not resolved. NO one posted any suggestions or help. Please re-activate.

    Telling someone to go hire someone is not resolving a question/issue, it’s avoiding it. Please leave this active for actual resolution & help.

    • This reply was modified 3 years, 7 months ago by cqwjds.
    Thread Starter cqwjds

    (@cqwjds)

    oh, and one more detail – How do I force all ship to address fields to empty? I tried

    add_filter('woocommerce_checkout_fields', 'custom_override_checkout_fields', 999);
    
    function custom_override_checkout_fields($fields)
     {
    	$fields['shipping']['shipping_company']['placeholder'] = ''; 
    	$fields['shipping']['shipping_country']['placeholder'] = ''; 
    	$fields['shipping']['shipping_address_1']['placeholder'] = ''; 
    	$fields['shipping']['shipping_address_2']['placeholder'] = ''; 
    	$fields['shipping']['shipping_city']['placeholder'] = ''; 
    	$fields['shipping']['shipping_state']['placeholder'] = ''; 
    	$fields['shipping']['shipping_postcode']['placeholder'] = ''; 
    	
    	return $fields;
     }

    but it had no effect.

Viewing 3 replies - 1 through 3 (of 3 total)