PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / 1.6.6
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler v1.6.6
1.6.6 1.6.5 1.6.4 1.6.3 1.6.2 1.6.1 1.6.0 1.5.4 1.5.5 1.5.3 1.5.2 1.5.1 1.5.0 1.4.2 1.4.1 1.4.0 1.3.28 1.3.27 1.3.26 1.3.25 1.3.23 1.3.22 1.3.21 1.3.20 1.3.19 All 49 releases
← All changes | app/Modules/Templating/BlockTemplates/TemplateParts/ProductModalTemplatePart.php +0 -4 1.3.21 → 1.6.6 View file →
@@ -241,10 +241,8 @@
241 241 return '';
242 242 }
243 243
244 244 // Apply filters before rendering (allows other plugins to modify)
245 - $content = apply_filters_deprecated('fluent_cart_template_part_content', [$content, self::SLUG, $args], '1.3.16', 'fluent_cart/template_part_content', 'Use fluent_cart/template_part_content instead of fluent_cart_template_part_content.');
246 - $content = apply_filters_deprecated('fluent_cart_template_part_content_' . self::SLUG, [$content, $args], '1.3.16', 'fluent_cart/template_part_content_' . self::SLUG, 'Use fluent_cart/template_part_content_' . self::SLUG . ' instead of fluent_cart_template_part_content_' . self::SLUG . '.');
247 245 $content = apply_filters('fluent_cart/template_part_content', $content, self::SLUG, $args);
248 246 $content = apply_filters('fluent_cart/template_part_content_' . self::SLUG, $content, $args);
249 247
250 248 // Parse and render blocks
@@ -250,10 +248,8 @@
250 248 // Parse and render blocks
251 249 $output = do_blocks($content);
252 250
253 251 // Apply filters after rendering
254 - $output = apply_filters_deprecated('fluent_cart_template_part_output', [$output, self::SLUG, $args], '1.3.16', 'fluent_cart/template_part_output', 'Use fluent_cart/template_part_output instead of fluent_cart_template_part_output.');
255 - $output = apply_filters_deprecated('fluent_cart_template_part_output_' . self::SLUG, [$output, $args], '1.3.16', 'fluent_cart/template_part_output_' . self::SLUG, 'Use fluent_cart/template_part_output_' . self::SLUG . ' instead of fluent_cart_template_part_output_' . self::SLUG . '.');
256 252 $output = apply_filters('fluent_cart/template_part_output', $output, self::SLUG, $args);
257 253 $output = apply_filters('fluent_cart/template_part_output_' . self::SLUG, $output, $args);
258 254
259 255 return $output;