mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
10 lines
440 B
Text
10 lines
440 B
Text
add_filter( 'dgwt/wcas/suggestion_details/product/html', function( $html ) {
|
|
// Remove dgwt-wcas-details-hr
|
|
$html = str_replace( '<div class="dgwt-wcas-details-hr"></div>', '', $html );
|
|
// Remove description
|
|
$html = preg_replace( '#<div class="dgwt-wcas-details-desc">(.+?)</div>#s', '', $html );
|
|
// Remove stock status
|
|
$html = preg_replace( '#<span class="dgwt-wcas-stock[^"]*">(.+?)</span>#s', '', $html );
|
|
|
|
return $html;
|
|
}, 10 );
|