Woocommerce product details reposition ¿Hooks?

eCommerce WordPress theme to create online shop with WooCommerce support
GK User
Fri Feb 26, 2016 11:45 am
Hi, I need help.

In my web using the Gravity Forms Addon. I tried it on "Quark store" Template and looks good and works well there under the product images, but I prefer the InStyle template. In this -InStyle- template, product data appear on the right side (where I also appear Gravity Forms form Addon).
I tried to move by Hooks but I could not, I could say that I have to modify code.
I was reading your post https://www.gavick.com/forums/storebox-wp/item-view-move-price-after-description-41514, your "A full list of Available Hooks in the GavernWP theme framework for WordPress" and WooCommerce Action and Filter Hook Reference
and some other information, but can not find the way to do it.

Could you tell me how I have to do?

Beyond that, if you allow me to be the first time I get in contact with you, I will say that I bought the pack of all templates in Joomla and pack Wordpress templates. And I would say you have many templates, very good and at a great price, but for my taste lack a template for ecomerce, and mixed with a traditional design.

Traditional and mixed: that not a design ecomerce pure, a mixture where they can present text articles on products, services of a company, items related to the sector and that also have the option of a proper display of products blog online store. A Technews like design, with a portion of the cover similar to the "Reviews" section where Technews make a Premiere or a report of a product which is then sold. A template not as focused on the sale, but with information and sales, both. Just imagine that the owner of the template Technews wants to sell a product of writing in its web.

I would not want to get into your work that you do it well, just wanted to give an idea, which I think could be positive. I will not expand further because I think this is not the place and really what I wanted to solve my little problem with Hooks

Thank you.
User avatar
Fresh Boarder

Joshua M
Fri Feb 26, 2016 12:29 pm
Hello,

Thank you for your suggestion and idea - I'll share it with our team.

Regarding your issue - your Gravity Forms Addon is not visible at all? (or is visible but in wrong place?)
User avatar
Moderator

GK User
Fri Feb 26, 2016 4:55 pm
Gravity Forms Addon is visible at all times, only I, both the product description as the Gravity Form addon, I want it down, as it appears in Quark Comerce.
There is more space to put text describing the article and more space for Gravity Forms.

Thank you.
User avatar
Fresh Boarder

Joshua M
Sun Feb 28, 2016 5:26 pm
Please try to use actions from Quark wocommerce:
Code: Select all
// change order on single product page
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 10 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 20 );

add_action( 'woocommerce_before_single_product_summary', 'woocommerce_template_single_title', 5 );
add_action( 'woocommerce_before_single_product_summary', 'quark_wc_simple_product_additional', 6 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 5 );

instead of your instyle actions (Instyle/gavern/wc-functions.php file)
User avatar
Moderator


cron