You have selected the One of the Blokes membership level.
Do you feel you are getting more than 10c of value from our sites a day?
Then maybe you would consider supporting the sites directly. You get extra content, downloads and ultimately, help keep us going. The business model for the site leans heavily towards reader support, instead of 'money for reviews' - which is the traditional model of magazines. This tends to tilt the information you get from them in the favour of the advertiser and often reduces reviews to a rewritten press release. We do have business partnerships, but they are initiated from my end - the product I want to use, and work to get a good deal on. I spend the money and make the mistakes, so you don't have to.
The Bloke and Precision Shooter were set up to provide information and impartial review of new products. As well as provide a bit of entertainment to modern Blokes (and the ladies, of course).
"Sweet, thanks mate. Best money i spend a month, well worth it and already taking a lot from your content and putting it to use behind the rifle and general gun-based life! - Jason"
You will gain full access to The Bloke, Precision Shooter, and other projects planned.
Membership is $15 per quarter - that's only $5 per month for access to all the articles on this site.
Many thanks for the support. It's truly appreciated.
//this script will hide show billing fields based on the price set
jQuery(document).ready(function() {
//bind other field toggle to dropdown change
jQuery('#donation_dropdown').change(function() {
pmprodon_toggleOther();
});
//bind check to price field
var pmprodon_price_timer;
jQuery('#donation').bind('keyup change', function() {
pmprodon_price_timer = setTimeout(pmprodon_checkForFree, 500);
});
if(jQuery('input[name=gateway]'))
{
jQuery('input[name=gateway]').bind('click', function() {
pmprodon_price_timer = setTimeout(pmprodon_checkForFree, 500);
});
}
//check when page loads too
pmprodon_toggleOther();
pmprodon_checkForFree();
});
function pmprodon_toggleOther() {
//make sure there is a dropdown to check
if(!jQuery('#donation_dropdown').length)
return;
//get val
var donation_dropdown = jQuery('#donation_dropdown').val();
if(donation_dropdown == 'other')
jQuery('#pmprodon_donation_input').show();
else
jQuery('#pmprodon_donation_input').hide();
}
function pmprodon_checkForFree() {
var donation = parseFloat(jQuery('#donation').val());
//does the gateway require billing?
if(jQuery('input[name=gateway]').length) {
var no_billing_gateways = ['paypalexpress', 'twocheckout', 'check', 'paypalstandard'];
var gateway = jQuery('input[name=gateway]:checked').val();
if(no_billing_gateways.indexOf(gateway) > -1)
pmpro_gateway_billing = false;
else
pmpro_gateway_billing = true;
}
//is there a donation?
if(donation || pmpro_pricing_billing)
pmpro_donation_billing = true;
else
pmpro_donation_billing = false;
//figure out if we should show the billing fields
if(pmpro_gateway_billing && pmpro_donation_billing) {
jQuery('#pmpro_billing_address_fields').show();
jQuery('#pmpro_payment_information_fields').show();
pmpro_require_billing = true;
} else if ( 'check' !== gateway ) {
jQuery('#pmpro_billing_address_fields').hide();
jQuery('#pmpro_payment_information_fields').hide();
pmpro_require_billing = false;
}
}