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

17 lines
319 B
PHP

<?php
namespace Actions;
use ofc\RadAction;
class WooCommerceAfterProductSummary extends RadAction
{
protected string $hookName = "woocommerce_after_single_product_summary";
protected int $priority = 0;
public function callback()
{
echo site()->render('woocommerce-before-content');
}
}