Home Forums WoodMart support forum Moving description

Moving description

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #547769

    gaudenis.juravicius
    Participant

    Hello,
    I couldn’t find any way to do this without help from you guys. I need to move description under the size guide. I’ll attach a photo for better understanding.
    Cheers

    Attachments:
    You must be logged in to view attached files.
    #547774

    gaudenis.juravicius
    Participant

    With some chatgpt and a bit of digging managed to write this code which worked to move everything.
    remove_action(‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 20);
    add_action(‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 31);

    remove_action(‘woocommerce_single_product_summary’, ‘woodmart_sguide_display’, 38);
    add_action(‘woocommerce_single_product_summary’, ‘woodmart_sguide_display’, 30);

    add_action(‘init’, ‘remove_woodmart_sguide_display’);

    function remove_woodmart_sguide_display() {
    remove_action(‘woocommerce_single_product_summary’, ‘woodmart_sguide_display’, 38);
    }

    #548131

    Hung Pham
    Participant

    Hi gaudenis.juravicius,

    Thanks for reaching to us.

    First of all, take my apologies for the delay in answering because of the weekend.

    You can use WoodMart WooCommerce builder, which allows you to create custom templates for Product, Product Categories pages and other functional pages that are not editable by default and you can place widgets in any positions you want.

    Here below are the documentation articles:
    https://xtemos.com/docs-topic/single-product-page-builder/

    Regards,

Viewing 3 posts - 1 through 3 (of 3 total)