wpc_pq_after_form_wrapper
“wpc_pq_after_form_wrapper” action hook allows you to add additional form information after the form field sections.
Note: This action hook is only available in the Parcel Quotation addon plugin. You may also use “wpc_pq_before_form_wrapper” action hook to display data information before the form.
Copy and paste this code to the them functions.php file.
function my_custom_data(){ ?> <div class="my-4"> <h2>Additional Information</h2> <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.</p> <p>Donec nec justo eget felis facilisis fermentum. Aliquam porttitor mauris sit amet orci. Aenean dignissim pellentesque felis.</p> </div> <?php } add_action('wpc_pq_after_form_wrapper', 'my_custom_data');