Website Settings

Dondere modus
Hoog contrast
Font grootte
Lees pagina-inhoud
Afdrukken
  • Het is 06-04-2026 en week 15 in de Lente .

Account Settings

Winkelwagen

De winkelwagen is nog leeg

Filter op lijst in WordPress > woocomerce > verzend methoden

particle

add_filter(‘get_terms’, function($terms, $tax, $query_vars, $query){ if(is_admin() && get_post_type() == ‘product’ && in_array(‘product_shipping_class’, $tax) && count($tax) == 1){ usort($terms, ‘sort_by_name’); } return $terms; }, 10, 4); function sort_by_name($a, $b) { return strcmp($a->name, $b->name); }

WordPress – read more show / hide on page

particle

// WP – Read more for page var $showMore = $(‘span[id*=”more-“]’); $showMore.html(“Lees meer “); var $showMoreNext = $showMore.parent().nextAll(); $showMoreNext.hide(); $showMore.on(‘click’, function() { $showMoreNext.toggle(“slow”); });

Set PHP in htaccess

particle

# Change to PHP version 5.6 AddHandler application/x-httpd-php56 .php .php7 .php5 .php4 .php3 SetHandler application/x-lsphp56 # EOF

Home