No problem hopefully it will help others with the same problem.
One last thing currently my blog address is /wordpress/ and my install is /blog/ is it possible to change the zen cart URL from wordpress to something else?
Printable View
Yeah im using Simple SEO URL
I tried it in a demonstration site.
http://demo.s-page.net/woz/en_v139/ZC_ROOT/blog/
I edit two files.
In addition, setting of Zen-Cart and WordPress is necessary.
includes\classes\ssu\cores\link.php
includes\init_includes\overrides\init_sanitize.phpCode:// if this page is our exclude list, let zen handle the job
if($page == 'wordpress') $page = 'blog';
if($this->checkPageExcludedList($page)) return false;
(copy from includes\init_includes\init_sanitize.php)
Code:/**
* We do some checks here to ensure $_GET['main_page'] has a sane value
*/
if (!isset($_GET['main_page']) || !zen_not_null($_GET['main_page'])) $_GET['main_page'] = 'index';
if (!isset($_GET['main_page']) || $_GET['main_page'] == 'blog') $_GET['main_page'] = 'wordpress';
if (!is_dir(DIR_WS_MODULES . 'pages/' . $_GET['main_page'])) {
WordPress Admin Setting
General Settings > Site address (URL) > Zen-Cart URL/blog
Permalink Settings Day and name etc...
Zen-Cart Admin Setting
Configuration > Simple SEO URL > Exclude list
Remove wordpress.
i use some other theme,but i find the html have two title,two keyword,two description in wordpress; woo,i think i must make some mistake.
i read the text in woz,and i really can't understand somewhere . example
replace wp_head() to woz_wp_head(). where find woz_wp_head()?
my english is not bad...:cry: can you talk in detail,thanks...
Code:To use other themes?
--------------------------------
I customized the woz_default theme for this modules based on a default theme of WordPress. I put down the point that I customized.
Please compare woz_default with woz_default_old.
It is copied text between <head></head> of [header.php] to [includes/templates/MY_TEMP/common/html_header.php]
The thing defined in Zen-Cart does not copy it. ex)<title,<meta http-equiv
and replace wp_head() to woz_wp_head().
Delete text between <html></head> and <body> of [header.php].
Delete </body> and </html> of [footer.php].
The style sheet of the theme comes to be read by the above, too.
The style sheet is read in the other pages of Zen-Cart. Therefore the indication of other pages is just confused, too.
The item which I want to apply only in a page of WordPress please add "#wordpressDefault" in front of the item.
In search of "get_sidebar();" in the theme file, please comment out entirely.
I installed WOZ, i though everything was ok but i noticed many customers and no payments...I went through the payment and i noticed checkout issues
My issue was once the person checked out AT paypals site then was re-directed back to my site i would get
10571 address missing error and the order was never completed
After doing much debugging i finally narrowed it down to WOZ and specifically init_woz.php and the initlization of WP
I added something like this to the top of it (so the WP() doesnt get executed on payment processing)
I replaced
if (defined('WOZ_CONFIG_STATUS') && WOZ_CONFIG_STATUS == 'true')
with
if (defined('WOZ_CONFIG_STATUS') && WOZ_CONFIG_STATUS == 'true' && $_GET['main_page']=='wordpress')
And it all jives now...wish i figured it out earlier!!
BTW I dont use any sideboxes so this might be a fix only if your not using sideboxes...not sure
Pete
Hi I installed WOZ and after all is done i get this * An above file is not be it for overriding from template_default on a server. 7.With the above installation is completion. Please check the operation from the following URL. Thank you. http://parfumite.biz/index.php?main_page=wordpress on the top of my page...
I'll be very hapy if somebody know's how to remove it.
Txs in advance.
Hi All,
I installed this module about 4 weeks ago and all seem to be working fine untill yesterday when i found out google had de indexed 900 links on my webpage all with 500 errors. After investigation from a third party developer we narrowed it down to the way wordpress was implemented with the woz addon.
It seems that the html_header code was redirecting google to wordpress and as a result did not find any of the existing products or links that had already been indexed.
We had a period of about a week where crawlers had not been to my site and the only results in google related to my word press blog. Not even the homepage came up on google anymore.
Im not sure if it was a mistake on my side with the installation but after uninstalling the module i am finally back on track and wont be loosing any business anymore.
I just wanted to let people know my experience with this module and to see if anyone else found this?
I stopped using this module long ago after I realized that the code is unecesarrily overly complicated and does not appear to follow the guidelines for implementing WordPress' "The Loop" codex.. There are TOO MANY gotchas and exceptions that have to be implemented in order for this module to work side by side with other modules.. I keep tabs on this in hopes that some day someone will re-write this the correct way..
In the meantime if you do not need WordPress sideboxes for Zen Cart, then the Numinix blog embedding solution works and plays nice with other modules (including SEO modules) without requires a boatload of hacks to keep it from screwing with other modules..
Thanks DivaVocals. Which Numinix blog embedding solution are you referring to?