skip to Main Content

i want to show Show Woo Commerce Price Variation Before Product Short Description

our website made in wordpress and we use woodmart theme and for product price variation We use this plugin:
**Ni WooCommerce Product Variations Table
**
**i want to show the product price table like this in below given image means Show WooCommerce Price Variation Before Product Short Description
**
enter image description here

i want to show Show Woo Commerce Price Variation Before Product Short Description

i expact change the in this givwen image
enter image description here

2

Answers


  1. I havent tested it but try the following. Place the code in your functions.php

    // Remove the action from its original hook
    remove_action( 'woocommerce_after_single_product_summary', array( 'Ni_wooCommerce_After_Single_Product_Summary', 'ni_woocommerce_after_single_product_summary' ) );
    
    // Add the action to the desired hook with the specified priority
    add_action( 'woocommerce_single_product_summary', array( 'Ni_wooCommerce_After_Single_Product_Summary', 'ni_woocommerce_after_single_product_summary' ), 55 );
    
    Login or Signup to reply.
  2. They have the Layouts builder which can help you to customize the product page in the way you want. Check this article: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search