How do I make the call to the "wp_head()" and "wp_footer()" fuctions so WordPress can load the javascript and CSS which many plugins will use.
I tried creating templates like this:
<?php
/*
Template Name: Thank You Page
*/
//Display the header
get_header();
//Display the page content/body
//Display the footer
get_footer();
?>
this didnt work, so I tried this;
<?php
/*
Template Name: Thank You Page
*/
//Display the header
wp_head();
//Display the footer
wp_footer();
?>
this did not work either.
I want to create a thank you page with the clickbank field already embedded in a table for reuse, and I want to create thank you pages for other payment processors like paypal, 2checkout, alertpay, etc.
Any help is very appreciated.
Thank you.