/**
* Show international customs disclaimer checkbox at WooCommerce checkout
* Displays for all countries EXCEPT United States (US)
*/
// Add the checkbox field to checkout
add_action( 'woocommerce_review_order_before_submit', 'idesign_international_customs_checkbox' );
function idesign_international_customs_checkbox() {
$chosen_country = WC()->customer->get_shipping_country();
// Fallback to billing country if shipping country is not set
if ( empty( $chosen_country ) ) {
$chosen_country = WC()->customer->get_billing_country();
}
// Only show for non-US countries
if ( $chosen_country === 'US' ) {
return;
}
?>
'checkbox',
'label' => __( 'I understand that international shipments may be delayed, held, or rejected by cust
oms in my country and refunds cannot be guaranteed. I accept this liability.', 'woocommerce' ),
'required' => true,
), WC()->checkout->get_value( 'international_customs_accept' ) );
?>
customer->get_shipping_country();
if ( empty( $chosen_country ) ) {
$chosen_country = WC()->customer->get_billing_country();
}
// Only validate for non-US countries
if ( $chosen_country === 'US' ) {
return;
}
if ( empty( $_POST['international_customs_accept'] ) ) {
wc_add_notice(
__( 'Please acknowledge the international shipping disclaimer to complete your order.', 'woocommerce' ),
'error'
);
}
}
// Save the checkbox value to th
e order meta
add_action( 'woocommerce_checkout_update_order_meta', 'idesign_save_international_customs_checkbox' );
function idesign_save_international_customs_checkbox( $order_id ) {
if ( ! empty( $_POST['international_customs_accept'] ) ) {
update_post_meta( $order_id, '_international_customs_accept', '1' );
}
}
// Re-render checkbox dynamically when country is changed (AJAX update)
add_filter( 'woocommerce_checkout_fields', 'idesign_customs_checkbox_country_refresh' );
function idesign_customs_che
Skip to content
Welcome to the official Bostin Loyd Bodybuilding Blog. Our mission is to continue providing the unfiltered, science-backed protocols that the BigDaddyB community has trusted for years. Whether you are looking for advanced physique enhancement or deep-dives into industry secrets, this is the definitive resource.
How do I use site enhancement oils safely and effectively?
Safety is paramount; always follow established protocols and use high-quality, lab-tested products. Learn more about our commitment to athlete safety on our About Page.
Are topical massage oils legal for competitive bodybuilders?
Our topical oils are formulated to be 100% legal and safe for use, unlike many dangerous alternatives. Check out our full range of compliant products in the BigDaddyB Store.
Who is the team behind BigDaddyB and Bostin Loyd’s legacy?
Our team is dedicated to preserving the raw truth and innovative spirit that Bostin brought to the industry. Get to know the people behind the mission on our About Us page.
Where can I buy authentic 3CC Gear and enhancement oils?
To ensure you are receiving the genuine formula developed for elite results, always purchase directly from our Shop.