Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1764029
Modify detail of a product
Closed

Comments

  • Jesús started the conversation

    How can you customize the detail of a product? what file is there to modify? The intention is to move the SKU, Category and tags below the add button to the cart

  •  7,095
    Oliver replied

    Hi,

    To be sure, you need to put it here?: 

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • Jesús replied

    yes. below the description

  •  7,095
    Oliver replied

    Hi,

    Add this code to the fucntions.php of the child theme:

    function thegem_woocommerce_after_single_product_change() {
        remove_action('thegem_woocommerce_single_product_left', 'woocommerce_template_single_meta', 15);
        add_action('thegem_woocommerce_single_product_right', 'woocommerce_template_single_meta', 45);
    }
    add_action('init', 'thegem_woocommerce_after_single_product_change');
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver