All I needed was a way to display only the post from my word press on my zencart.
I found a way without installing any mods.
All you need to do is put the following on whatever page you need to display the post on.
This will post the entire page into the main section of your zencart to change what appears here you need to change the wordpress theme to fit your needs. You can display post or the sideboxes as well. it all depends on your wordpress theme.Code:<?php include('http://www.your_site.com/your_word_press/index.php'); ?>
You can even add this code to your tpl_main_page.php to remove the zen sideboxes so that you actually display your wordpress page under your zen cart header.
EXAMPLE HERECode://add page names that you wantto disable left and right columns $center_column_only = array('WORDPRESS PAGE'); // the following IF statement can be duplicated/modified as needed to set additional flags if (in_array($current_page_base,$center_column_only) ) { $flag_disable_right = true; $flag_disable_left = true; }



