/*
Theme Name: Aenyo
Theme URI: http://wpbingosite.com/wordpress/aenyo/
Author: Wpbingo
Author URI: http://wpbingosite.com/
Description: Aenyo is a modern, clean and professional WooCommerce WordPress theme. It is built to well suit for any online stores: electronics store, fashion store, jewelry store...
Version: 1.1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, two-columns, left-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
Text Domain: aenyo*/


add_filter( 'woocommerce_attribute', 'twf_render_iframe_from_attribute', 10, 3 );

function twf_render_iframe_from_attribute( $value, $slug, $product ) {
    // Only apply to a specific attribute slug (e.g., 'video')
    if ( $slug === 'video' ) {
        // Decode HTML entities
        $decoded = html_entity_decode( $value );

        // Remove automatic paragraph tags and line breaks
        $clean = wp_kses_post( $decoded ); // Keeps safe HTML like <iframe>
        $clean = wpautop( $clean );        // Format nicely (optional)

        return $clean;
    }

    return $value;
}