16 lines
274 B
PHP
16 lines
274 B
PHP
<?php
|
|
|
|
namespace Actions;
|
|
|
|
use ofc\RadAction;
|
|
|
|
class WooCommerceProductSummary extends RadAction
|
|
{
|
|
protected string $hookName = "woocommerce_single_product_summary";
|
|
|
|
public function callback()
|
|
{
|
|
echo site()->render('woocommerce-after-content');
|
|
}
|
|
}
|