Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wpbean/381607921b84ade87792 to your computer and use it in GitHub Desktop.
Save wpbean/381607921b84ade87792 to your computer and use it in GitHub Desktop.
WPB WooCommerce LightBox { Replace popup short description with full description }
<?php
/* Add the following code to your theme functions.php file */
add_action( 'init', 'remove_wpb_wl_excerpt' );
function remove_wpb_wl_excerpt(){
remove_action( 'wpb_wl_woocommerce_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'wpb_wl_woocommerce_product_summary', 'wpb_wl_get_the_content', 20 );
}
function wpb_wl_get_the_content(){
echo wpautop(get_the_content());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment