Skip to content

Instantly share code, notes, and snippets.

@dizzyza
dizzyza / functions.php
Created May 24, 2021 21:14
Add Code From A Page To Hidden Fields In Gravity Form Embedded In Popup Maker
function custom_jc_woo_product_loop_Contact_for_bulk_pricing(){
global $post,$product;
$formsku = get_post_meta(get_the_id(), '_sku' , true);
$permalink = get_the_permalink();
//Request Quote Button,
echo "<a class='ab-item button pdfspec' href='' onclick=\"save_current_product('$formsku', '$permalink'); PUM.open(43068);return false;\">Request Quote</a>";
}