Files
mccans-theme/actions/WooCommerceBeforeProductSummary.php
2025-06-25 16:04:19 -07:00

19 lines
397 B
PHP

<?php
namespace Actions;
use ofc\RadAction;
class WooCommerceBeforeProductSummary extends RadAction
{
protected string $hookName = "woocommerce_before_single_product_summary";
protected int $priority = 0;
public function callback()
{
echo site()->render('woocommerce-before-content', [
"additionalTopLevelClass" => "single-product-top",
]);
}
}