Home Forums WC Vendors Pro Support Show "product short description"

NOTICE: We've Moved to a Ticket System for Support

As of August 31, 2017 (12am EST) our support forums will be retired (read-only), and we will be moving to a support ticket system.  This will allow us to better organize and answer support requests, and provide a more personalized experience as we assist our customers.

For the time being, we will leave our forums open for reading and learning while we work on creating a more robust Knowledge Base for everyone to use.

If you are a WC Vendors Pro customer please open a support ticket here. 

If you are a WC Vendors user please open a support ticket on the Wordpress.org forums.

The information on this forum is outdated and in most instances no longer relevant. Please be sure to check our documentation for the most up to date information.

https://docs.wcvendors.com/

Thank you to all of our customers!

 

  • This topic has 2 replies, 2 voices, and was last updated 7 years ago by Anna.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #61794
    Mehmet
    Participant

    Hi,
    i want to show the product short description on the “Downloadable/Virtual Product” Product form. How is it possible? I’ve added the following code in the “product-download.php” but nothing happened.

    <!-- Product Short Description -->
    		<?php WCVendors_Pro_Product_Form::short_description( $object_id, $product_short_description );  ?>
    #61930
    Mehmet
    Participant

    Is there nobody who can help me?

    #61969
    Anna
    Member

    Hello,
    Where in the template did you place the modification?
    Did you move the template to your theme/child theme or did you modify the template file directly in the plugin?

    I added short description to the template and it is working for me..
    plugins.wc-vendors-pro/templates/dashboard/product-download.php

    And my modifications look like this.. I just added the short description code:

    <!-- Basic Product Details -->
    	<div class="wcv-product-basic wcv-product"> 
    		<!-- Product Title -->
    		<?php WCVendors_Pro_Product_Form::title( $object_id, $product_title ); ?>
    		<!-- Product Description -->
    		<?php WCVendors_Pro_Product_Form::description( $object_id, $product_description );  ?>
    		<!-- Product Short Description -->
    		<?php WCVendors_Pro_Product_Form::short_description( $object_id, $product_short_description );  ?>
    		<!-- Product Categories -->
    	    <?php WCVendors_Pro_Product_Form::categories( $object_id, true ); ?>
    	</div>
    
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘WC Vendors Pro Support’ is closed to new topics and replies.