uraT
Forum Replies Created
-
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Popup subscription page not popping upNo ?? Sometimes it shows up, but I haven’t seen it myself.
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] GPDR opt-inI have noticed this too and it is a big shortage ?? I hope this will be fixed soon.
Forum: Plugins
In reply to: [WC Fields Factory] Label field above textarea, how?Ok. This is a great plugin, but maybe I need to use another one then…
Thank you lorro!
Ok. Maybe I need to check out the theme options then.
Thank you!
That would be great ??
Hi,
Maybe I wasn’t able to explain correctly… I mean the text over product image on the category page.
Regards,
TaruHi,
It’s a pity ?? That would be a really useful feature!
Regards,
TaruForum: Plugins
In reply to: [Order Delivery Date for WooCommerce] Adding holidays doesn’t workHi,
Pro version of the plugin may be to pricy for my little store… I have to think what I do :-/
Regards,
TaruForum: Plugins
In reply to: [Order Delivery Date for WooCommerce] Adding holidays doesn’t workHi,
Thank you for your reply. Reason has to be the version I’m using cause I’m using version 2.6.6 ??
Regards,
TaruForum: Plugins
In reply to: [Custom Fee Woocommerce] Fatal errorI think I’m not able to do that without breaking everything ?? I have to try to find some other solution :-/
Forum: Plugins
In reply to: [Custom Fee Woocommerce] Fatal errorI can’t find any ‘woo_add_cart_fee’ from functions.php.
Forum: Plugins
In reply to: [WooCommerce] Adding phone field to checkout page (shipping)No I haven’t… And I don’t know how to do it. Maybe it is better to install a plugin for this… ??
Thank you anyway Mike!Forum: Plugins
In reply to: [WooCommerce] Adding phone field to checkout page (shipping)On the checkout page everything is correct and I can see “Saajan puhelin” text on the admin panel. But not the given phone number :-/
Forum: Plugins
In reply to: [WooCommerce] Adding phone field to checkout page (shipping)Thank you Mike! Now I tried code like this. But the situation is the same. I’m not a coder… so could you tell me what is wrong now?
**************
// Hook in
add_filter( ‘woocommerce_checkout_fields’ , ‘custom_override_checkout_fields’ );// Our hooked in function – $fields is passed via the filter!
function custom_override_checkout_fields( $fields ) {
$fields[‘shipping’][‘_shipping_phone’] = array(
‘label’ => __(‘Saajan puhelin’, ‘woocommerce’),
‘placeholder’ => _x(‘Anna matkapuhelinnumero’, ‘placeholder’, ‘woocommerce’),
‘required’ => false,
‘class’ => array(‘form-row-first’),
‘clear’ => true
);return $fields;
}add_action(‘woocommerce_admin_order_data_after_shipping_address’, ‘my_custom_shipping_fields_display_admin_order_meta’, 10, 1);
function my_custom_shipping_fields_display_admin_order_meta($order) {
echo ‘<p>‘ . __(‘Saajan puhelin’) . ‘:
‘ . get_post_meta($order->id, ‘_shipping_phone’, true) . ‘</p>’;
}
***************Forum: Fixing WordPress
In reply to: Adding phone field to checkout page (shipping)Ok, again. I have to remember this next time ??