We have been using the WooCommerce Multiple Customer Addresses extension but we can’t seem to get it to work.
After installing and activating, I can’t see the field on the WP back-end customer page to add more addresses. My Woocommerce menu also doesn’t show the link to the settings. I have tried installing on two separate WP installations.
Any ideas?
]]>Hi sir,
i need to add 65 upto Customer Addresses. can i add increase this limit.
i can only 65 limit not more add Addresses.
can you help me ?
thanks.
It seems that the wp-content/plugins/multiple-customer-addresses-for-woocommerce/assets/css/public.css file has a use of font-awesome.
Please enqueue font-awesome in the wp-content/plugins/multiple-customer-addresses-for-woocommerce/ma-multiple-customer-addresses.php file.
function wmca_styles() {
wp_register_style( 'fontawesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css' );
wp_enqueue_style( 'fontawesome' );
}
add_action( 'wp_enqueue_scripts', 'wmca_styles' );
Then add the font-awesome family in the public.css file.
body.woocommerce-account ul li.woocommerce-MyAccount-navigation-link--ma-manage-address a:before{
font-family: "FontAwesome";
content: "\f2bc"
}
]]>
on checkout we’ve got notice in debug mode caused by your plugin: Notice: woocommerce_get_page_id is deprecated since version 3.0! Use wc_get_page_id instead. in /home/brodposenn/public_html/wp-includes/functions.php on line 3839
]]>Would it be possible to implement so that the choice of address in the checkout is by radio button instead of selection button?
]]>