jastos
Forum Replies Created
-
Forum: Plugins
In reply to: What plugin(s) is this site using for their photos?Hi Revived,
I’m the webmaster for Owings Brothers and I used Pinterest Pin It Button For Images plugin:
https://www.ads-software.com/extend/plugins/pinterest-pin-it-button-for-images/
The rest is just the standard wordpress gallery really with the themes styling. I may have custom inserted the facebook and twitter button on the lightbox – can’t remember that as it has been a while.
Glad you liked it and let me know if you need any help getting anything set up.
Forum: Plugins
In reply to: [WooCommerce] How to add Product Description to Category or shop pageHere is what I came up with:
content-product.php – This is the shop page and the code below will show the info from the short description box.
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php /** * woocommerce_after_shop_loop_item_title hook * * @hooked woocommerce_template_loop_price - 10 */ do_action( 'woocommerce_after_shop_loop_item_title' ); ?> <?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?> <a class="more" href="<?php the_permalink(); ?>">Read More >></a> <?php do_action( 'woocommerce_after_shop_loop_item' ); ?>
short-description.php – This is for the single page view of a product. I switched this to display from the main content area instead of the short description info.
global $post; if ( ! $post->post_excerpt ) return; ?> <div itemprop="description"> <?php the_content(); ?> </div>
Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] Adding a Short Description to the "Catalog" PageSorry duplicate question – refer to https://www.ads-software.com/support/topic/how-to-add-product-description-to-category-or-shop-page
Forum: Plugins
In reply to: [WooCommerce] How to add Product Description to Category or shop pageI didn’t see this question before I posted a duplicate question. I also need the same solution as mdlsumair. Is there any way we could take advantage of the “Insert More Tag” in the visual editor of the product (Product Short Description)?
Clients want short description on Shop pages and then more details within the single product pages.