17 lines
319 B
PHP
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');
|
|
}
|
|
}
|