-
- How to increase the address limit to 50?
Please add the below code snippet in your child theme's functions.php file in order to increase the address limit to 50 addresses.
add_filter('thwma_multiple_address_limit', 'thwma_set_address_limit');
function thwma_set_address_limit(){
$address_limit = '50';
return $address_limit;
}
Please note that you can limit addresses as per your requirement by updating the $address_limit in the above code.
Comments
0 comments
Please sign in to leave a comment.