Hi Ricky,
You said you were pushed for time so i thought i would do it for you.
The changes are very simple and all in one place. All my changes are in your functions.php file in your child theme.
Basically what i do is look at the standard page template of your theme and find the classes that are doing the work of positioning and then we use hooks to replace the GD wrappers with these, classes or id’s.
for example the standard GD opening wrapper is:
// action for adding the wrapper div opening tag
add_action( 'geodir_wrapper_open', 'geodir_action_wrapper_open', 10, 3 );
function geodir_action_wrapper_open($type='',$id='',$class=''){
echo '<div id="'.$id.'" class="'.$class.'">';
}
(the ID and class are filled in by the page template)
So to replace that with your theme wrapper we first remove the standard one
remove_action( 'geodir_wrapper_open', 'geodir_action_wrapper_open', 10 );
And then add in one that matches your theme:
add_action( 'geodir_wrapper_open', 'smartmag_action_wrapper_open', 9 );
function smartmag_action_wrapper_open(){
echo '<div class="main wrap cf">';
}
It’s very simple once you get the hang of it, please look at the functions.php file for more examples. Depending on your theme we could also replace the standard breadcrum with the GD one but just now i have just did the positioning for you.
Thanks,
Stiofan