This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Permite mostrar contenido personalizado en la parte superior de la ficha de producto | |
| if ( in_array( 'woocommerce/woocommerce.php', get_option( 'active_plugins' ) ) ){ | |
| // Muestra el contenido si lo hay | |
| add_action( 'woocommerce_before_single_product_summary', 'add_custom_content_before_main_content_of_product', 5 ); | |
| function add_custom_content_before_main_content_of_product(){ | |
| global $post; | |
| $top_content = get_post_meta( $post->ID, 'top_content', true ); | |
| if ( !empty( $top_content ) ) { |