Archives: Snippets
hkosnip
// index.php?name=david echo $_GET[‘name’]; // index.php?name=david&surname=adams echo $_GET[‘surname’];Continue reading
Untitled Snippet
Untitled Snippet
Untitled Snippet
Prevent Powerpack Off Canvas from Breaking JavaScript loading
add_filter( ‘pp_offcanvas_body_inner_wrap’, ‘__return_false’ );Continue reading
Test New
Untitled Snippet
Skip Unwanted 404 Logs
add_filter( ‘aioseo_redirects_log_skip’, ‘redirects_log_skip’, 10, 2 ); function redirects_log_skip( $skip, $data ) { // Define a list of unwanted URLs $ignoreUrls = [ ‘/config.json’, ‘/home’, ‘/main’, ‘/server-status’, ‘/private’ ]; // Skip logging these URLs if they result in a 404 error…Continue reading
Add products column to the orders list on the Vendor Dashboard
/** * Add the product column to the order table. * * @param array $columns The columns. * * @return array The modified columns. */ add_filter( ‘wcv_order_table_columns’, ‘wcv_add_product_column_table_columns’ ); /** * Add the product column to the order table. *…Continue reading