skip to Main Content

Move product meta to the description tab in WooCommerce

How to move the product meta to the beginning of the product description tab? I try: remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 ); add_action( 'woocommerce_product_tabs_description', 'woocommerce_template_single_meta', 10 ); Remove works, but add_action() doesn't.

VIEW QUESTION

How to overwrite a template in Magento

I was following this answer, https://[stackoverflow.com/questions/12936608/magento-howto-overwrite-one-template-file][1] The file I'm trying to overwrite is, app/design/frontend/base/default/template/customer/form/register.phtml I copied that file to app/design/frontend/mycompany/default/template/customer/form/register.phtml I set, System -> Configuration -> Design -> Package = mycompany I flushed the buffer and refreshed and so forth,…

VIEW QUESTION
Back To Top
Search