[Plugin: WP E-Commerce] Display Product Description on Checkout page
-
Hi guys!
Please help me! Im trying to put Product Description(located on wpsc-products_page.php to the Checkout Page (wpsc-shopping_cart_page.php)I tried echoing the description below the <?php do_action ( “wpsc_after_checkout_cart_item_name” ); ?> but still it’s not working
<td class="wpsc_product_name wpsc_product_name_<?php echo wpsc_the_cart_item_key(); ?>"> <?php do_action ( "wpsc_before_checkout_cart_item_name" ); ?> <a href="<?php echo esc_url( wpsc_cart_item_url() );?>"><?php echo wpsc_cart_item_name(); ?></a> <?php do_action ( "wpsc_after_checkout_cart_item_name" ); ?> <br /> <!--SAMPLE DESCRIPTION ECHO CODE THAT I PUT HERE--> <div class="wpsc_description"> <?php echo wpsc_the_product_description(); ?> </div><!--close wpsc_description--> <!--END SAMPLE DESCRIPTION ECHO CODE THAT I PUT HERE--> </td>
Any suggestion so i can put description on checkout page?
Thanks!
- The topic ‘[Plugin: WP E-Commerce] Display Product Description on Checkout page’ is closed to new replies.