oont-contents/plugins/sold-out-badge-for-woocommerce/classes/Elementor.php
2025-02-08 15:10:23 +01:00

15 lines
No EOL
286 B
PHP

<?php
namespace CharlieEtienne\WCSOB;
class Elementor {
public static function fix_missing_hook( $content, $widget ) {
if( $widget->get_name() === 'woocommerce-product-images' ) {
ob_start();
Badge::display();
return ob_get_clean() . $content;
}
return $content;
}
}