Choose to have us come assemble your structure on top of your provided foundation base.
Assembly packages include assembly in one day plus roof panels supplied and installed. * Delivery charge extra. See your cart to receive a rough delivery quote to your address.
';
}
}
add_action( 'woocommerce_after_add_to_cart_button', 'misha_after_add_to_cart_btn' );
function misha_after_add_to_cart_btn(){
echo 'Clicking “Add to Cart” selects this structure kit / product and will add it and any selected add-ons you have chosen to your cart. You can also calculate shipping price by clicking through here and entering your delivery address.
';
}
function divi_engine_wc_translations($translated){
$text = array(
'Change Address' => 'Enter Your Address for Shipping Rates, or Choose to Pickup', // changes all Addresses text to be Billing Information (in account)
);
$translated = str_ireplace( array_keys($text), $text, $translated );
return $translated;
}
add_filter( 'gettext', 'divi_engine_wc_translations', 20 );
//Add shipping info above the proceed to checkout button
add_action('woocommerce_proceed_to_checkout', 'before_proceed_to_checkout_shipping_text');
function before_proceed_to_checkout_shipping_text() {
echo do_shortcode('[br_cart_notices]');
}
/**
* Gravity Forms
*
* Removes all but Canada and United States from the Country dropdown menu
*/
add_filter( 'gform_countries', function( $countries ) {
return array( 'Canada', 'United States' );
} );
function ASI_post_search_columns($columns, $search, $query) {
if($query->is_admin) {
return $columns;
} else {
return ['post_title'];
}
}
add_filter('post_search_columns', 'ASI_post_search_columns', 10, 3);
add_action( 'init', 'change_max_variations_linked' );
function change_max_variations_linked(){
define( 'WC_MAX_LINKED_VARIATIONS', 250 );
}
add_filter( 'content_visibility_for_divi_builder_allowed_callables', function( $callables ) {
// First seen: et_pb_text "Icon" in post #8910; built-in (PHP/extension) — review behavior
$callables[] = 'function_exists';
// First seen: et_pb_text "Icon" in post #8910; defined at wp-content/plugins/advanced-custom-fields-pro/includes/api/api-template.php:26
$callables[] = 'get_field';
return $callables;
} );