Title: Adding extra information
Last modified: June 6, 2019

---

# Adding extra information

 *  Resolved [fprati](https://wordpress.org/support/users/fprati/)
 * (@fprati)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/adding-extra-information-2/)
 * Hello,
    are there hooks available in order to be able to add more elements in
   the modal view, such as the description or ‘back to shop’ buttons, by any chance?
 * Regards
 * Franco

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [YITHEMES](https://wordpress.org/support/users/yithemes/)
 * (@yithemes)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/adding-extra-information-2/#post-11621379)
 * Hi Franco,
    you can use the hook **‘yith_wcqv_product_summary’** with different
   priority to show your additional information. We do it in the method **‘yith_quick_view_action_template’**
   of the class **‘YITH_WCQV_Frontend’**
 *     ```
       // Image
       add_action( 'yith_wcqv_product_image', 'woocommerce_show_product_sale_flash', 10 );
       add_action( 'yith_wcqv_product_image', 'woocommerce_show_product_images', 20 );
   
       // Summary
       add_action( 'yith_wcqv_product_summary', 'woocommerce_template_single_title', 5 );
       add_action( 'yith_wcqv_product_summary', 'woocommerce_template_single_rating', 10 );
       add_action( 'yith_wcqv_product_summary', 'woocommerce_template_single_price', 15 );
       add_action( 'yith_wcqv_product_summary', 'woocommerce_template_single_excerpt', 20 );
       add_action( 'yith_wcqv_product_summary', 'woocommerce_template_single_add_to_cart', 25 );
       add_action( 'yith_wcqv_product_summary', 'woocommerce_template_single_meta', 30 );
       ```
   
 * I hope to be helpful for you.
    -  This reply was modified 7 years, 2 months ago by [YITHEMES](https://wordpress.org/support/users/yithemes/).
 *  Thread Starter [fprati](https://wordpress.org/support/users/fprati/)
 * (@fprati)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/adding-extra-information-2/#post-11638903)
 * Hi,
    thank you for that. I tried the add_action( ‘yith_wcqv_product_summary’,‘
   woocommerce_template_single_excerpt’, 20 ); and it adds the summary excerpt under
   the price, which is fine. But how do I add the full description (not the summary)
   below the quantity and add-to-cart button, please?
 * Best regards
 * Franco
 *  Plugin Author [YITHEMES](https://wordpress.org/support/users/yithemes/)
 * (@yithemes)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/adding-extra-information-2/#post-11695266)
 * Hi Franco,
 * > But how do I add the full description (not the summary) below the quantity 
   > and add-to-cart button, please?
 * you can achieve this goal by adding the following code snippet to your theme **
   functions.php**
 *     ```
       remove_action( 'yith_wcqv_product_summary', 'woocommerce_template_single_excerpt', 20 );
       add_action( 'yith_wcqv_product_summary', 'the_content', 27 );
       ```
   
 * Please try this solution and let us know if everything works fine!
 *  Thread Starter [fprati](https://wordpress.org/support/users/fprati/)
 * (@fprati)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/adding-extra-information-2/#post-11718327)
 * Great, it works, thanks a lot!
 *  Plugin Author [YITHEMES](https://wordpress.org/support/users/yithemes/)
 * (@yithemes)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/adding-extra-information-2/#post-11743370)
 * Hi there,
 * thanks for your cooperation. We are happy that works now.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Adding extra information’ is closed to new replies.

 * ![](https://ps.w.org/yith-woocommerce-quick-view/assets/icon-128x128.gif?rev=
   3193930)
 * [YITH WooCommerce Quick View](https://wordpress.org/plugins/yith-woocommerce-quick-view/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/yith-woocommerce-quick-view/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/yith-woocommerce-quick-view/)
 * [Active Topics](https://wordpress.org/support/plugin/yith-woocommerce-quick-view/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/yith-woocommerce-quick-view/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/yith-woocommerce-quick-view/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [YITHEMES](https://wordpress.org/support/users/yithemes/)
 * Last activity: [7 years, 1 month ago](https://wordpress.org/support/topic/adding-extra-information-2/#post-11743370)
 * Status: resolved