Skip to content

Instantly share code, notes, and snippets.

@dougaitken
dougaitken / move_stripeprbutton.php
Last active August 11, 2022 10:59
[broken] Moving the WooCommerce Stripe Payment Request buttons below the add to cart button
I'm removing this for now as it broke some point due to code changes. I may revert in the future. I'm glad it helped some folks in the past.
@kraftbj
kraftbj / functions.php
Created November 9, 2015 15:51
Indeed Customization
add_filter( 'job_manager_indeed_get_jobs_args', 'bk_custom_args');
function bk_custom_args( $args ){
$args['as_not'] = 'the-query-value-here';
return $args;
}