petelutonuk:
Hi Bigenuf, yes I enabled whitelist and noticed the "Thank you" page sort of works but is still a mess. I have done what you "designed" and yes it looks a lot better, well done. However...
I can't seem to disable the header etc (as I am not that familiar with php).
The instruction in tpl_main_page.php to uncomment $flag_disable_header = true: <br/> ... Does that mean remove the ***** if so this does not seem to uncomment it and doesn't work. Am I being a bit thick here?:dontgetit
I thought that in php, // commented things out, what is the * ?
Also on my site I have extra stylesheets that are needed but I do not know how to include them as they are not called up in html_header.php like the other 3 are.
I use the CSS drop down menu module which needs it own stylesheet (I have disabled it for now)
I also have another stylesheet for the Ezpages side boxes....any ideas how I can get these to see their stylesheets....I am getting a little confused.
You never know, all this effort and worldpay might just allow all the tags we need again :clap:
This is what i used
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'wp_callback')) ) {
$flag_disable_right = true;
$flag_disable_left = true;
// $flag_disable_footer = true;
// $flag_disable_header = true;
}
I have to admit i never tried to uncomment that section as i had this in my page. Give it a try or something similar might be in your page.
You can hard code to any stylesheet using this in the html_header.php
<link rel="stylesheet" type="text/css" href="http://YOURSITE.co.uk/includes/templates/YOUR_TEMPLATE/css/stylesheet.css" />
or the location of the stylesheet.
But it looks like the <base href= works now. Try running a test on your site and see ho it looks.
Lake