Skip to content

Instantly share code, notes, and snippets.

@shazdeh
Created December 5, 2013 00:11
Show Gist options
  • Save shazdeh/7797982 to your computer and use it in GitHub Desktop.
Save shazdeh/7797982 to your computer and use it in GitHub Desktop.
Flatshop: display content in the product lightbox instead of the product description text
<?php
function product_lightbox_full_text() {
if( themify_theme_is_product_lightbox() ) {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_single_product_summary', 'the_content', 20 );
}
}
add_action( 'init', 'product_lightbox_full_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment