Is it possible to separate a function with another function of action hooks?
For example, I only want to display product data tabs in an item. So I remove the other function like related products
remove_action (& # 39; woocommerce_after_single_product_summary & # 39 ;, & wookommerce_output_related_products & # 39 ;, 20);
do_action (& # 39; woocommerce_after_single_product_summary & # 39 ;, woocommerce_output_product_data_tabs & # 39 ;, 10);
For the other element, I want to display related products. So it can be possible?
The point is, I want to have separate product tabs and related products in different elements.
Many Thanks.