// Add Shortcode for Quote Button function quote_button_shortcode() { // Get the product ID global $product; // Button HTML $button_html = ''; $button_html .= ''; $button_html .= 'Get a Quote'; $button_html .= ''; return $button_html; } add_shortcode( 'quote_button', 'quote_button_shortcode' );