P1 Commerce GmbH
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Customers vs. User CustomersHi, thanks for your reply. The User Role Editor does not work for this, because they already have the correct user role (customer) and I don’t want to add any new role. My problem is that 90% of the registered Customers don’t show up in my WooCommerce Customer List and there has been no way to solve this until now.
The only way I was able to get the customers to show up there is if I manually added something in their billing address.Forum: Plugins
In reply to: [WooCommerce] WooCommerce Customers vs. User Customers@ihereira I would like to have all registered customers listed under Woocommerce -> Customers.
If someone creates a customer account, I can only find them under Users -> Customers and not under Woocommerce. But I would like to export my customers and that only works with the woocommerce customers.
It is a little hard to explain this problem.
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Change widget title heading h3 to p@tkarwe
Just add this to your functions.php:add_filter(‘BeRocket_AAPF_template_full_content’, ‘some_custom_berocket_aapf_template_full_content’, 4000, 1);
add_filter(‘BeRocket_AAPF_template_full_element_content’, ‘some_custom_berocket_aapf_template_full_content’, 4000, 1);
function some_custom_berocket_aapf_template_full_content($template_content) {
$template_content[‘template’][‘content’][‘header’][‘content’][‘title’][‘tag’] = ‘span’;
return $template_content;
}You can change span to p or any other tag
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Change widget title heading h3 to pCan you tell me where you found it?
Thank you very muchHi Michael,
thank you for fast response and help, but as I have written, the category metabox is no solution for me. I need an input like I have with the tag metabox (without checkboxes) and I need to be able to insert the items with comma on the post page itself.
Best regards