define('WP_MEMORY_LIMIT', '256M'); define( 'WP_POST_REVISIONS', 3 ); define('DISALLOW_FILE_EDIT', true); define( 'FORCE_SSL_ADMIN', true ); define( 'WP_ALLOW_REPAIR', trueread more...
//Hide categories from WordPress function exclude_category( $query ) { if ( $query->is_home() && $query->is_main_query() )read more...
UI-design en UX-design In de wereld van webdesign, maar ook in het ontwikkelen van softwareread more...
Translatepress plug-in The internet is truly global in nature. An internet user in the Netherlandsread more...
Sucuri firewall The internet is full of malicious actors. There are low-level annoyances like “scriptread more...
Cloudways hosting Web hosting is an essential service for any internet-based or internet-interfaced business. Whetherread more...
if( !function_exists('redirect_404_to_homepage') ){ add_action( 'template_redirect', 'redirect_404_to_homepage' ); function redirect_404_to_homepage(){ if(is_404()): wp_safe_redirect( home_url('/') ); exit; endif;read more...
// Adding a custom checkout date field add_filter( 'woocommerce_billing_fields', 'add_birth_date_billing_field', 20, 1 ); function add_birth_date_billing_field($billing_fields)read more...
// Disable Gutenberg editor. add_filter('use_block_editor_for_post_type', '__return_false', 10); read more...
E-commerce is a booming industry worldwide. The advent of the internet and the rapid, sustainedread more...
// Add category title add_action('woocommerce_before_main_content', 'show_category_title', 10, 2); function show_category_title() { $cat_title = single_tag_title("", false);read more...
// Add new stock status options function filter_woocommerce_product_stock_status_options( $status ) { // Add new statusesread more...