Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
bumba000
PS Just leaving the sidebox and language files up kinda works but it breaks Live Product Feed and Google Base Feed.
I did a modified install of WP with a sidebox on my ZC site and made some modifications to WP sidebox for it to work. I found the file \includes\extra_configures\wordpress-config.php is designed to make a feed. I commented this out and my ZC rss feeds started working again.
Code:
/*if(isset($_GET['feed'])){
wp();
gzip_compression();
// require_once('./wordpress/wp-includes/template-loader.php');
require_once(ABSPATH . WPINC . '/template-loader.php');
exit();
}*/
Re: Wordpress On Zencart / Released
Hey Dave, Thanks. That almost works for me. Not sure why but it fixes the RSS problem and leaves me with a broken sidebox. I did mine just like yours and it broke.
Thanks,
John
Re: Wordpress On Zencart / Released
Hi All! I have a couple of questions...
First, please know that I'm creating all of this for someone else (two sites) and I just need a little direction.
1) Created zencart in domain.com/store... They wanted domain.com to have the blog on it. What would be the proper way to have that domain.com to look right? (with the zen cart template etc)
2)Different site/setup. Set up Zencart in domain.com/store. Set up Wordpress in domain.com/blog- everything is great! Now they would like to add a second blog... I've got that all installed in domain.com/news- not pretty but functioning. How do I make that one look right? (with the zen cart template etc)
Since these are not my sites, I really didn't want to post links here. If you would like to see the issues, please PM me and I'll send them to you!
Thanks
Nancy
Re: Wordpress On Zencart / Released
I installed wordpress into my zencart however the url has to end with index.php?main_page=wordpress I was wondering if there is a way to make my index.php alone have wordpress in it?
Thanks
Gary
Re: Wordpress On Zencart / Released
ok. so installation has been a breeze, and there aren't any issues with the actual WP install.
however, when a user logs into zencart, they get this:
Fatal error: Call to undefined function: vtu_checkuserws() in /home/soapdish/public_html/soapdish/includes/classes/observers/class.loginWordPress.php on line 27
they get a similar error when they register, although in either case, simply refreshing shows that you are both logged in and everything appears as it should.
line 27, FYI is this:
vtu_checkUserWS($email, $inCart);
vtu_checkUserWS appears in one other place...
line 33 of class.registerWordPress.php
vtu_checkUserWS($email, true);
any ideas? the site is www.prettybabynaturals.com/soapdish
Show or hide wordpress sidebox on certain page only
hi all I am using zencart1.3.8a and wordpress 2.5 and it's working nicely.
I like to find out how to enable or diable wordpress sidebox on certain wordpress page.
I try below script but the sidebox shows on every wordpress pages
If(in_array($current_page_base,explode(",",'wordpress')) ){
$show_box06_sidebox = true;
}
else {
$show_box06_sidebox = false;
}
If anyone knows how to fix this, please help
Re: Wordpress On Zencart / Released
why not just change it via the layout box controller in admin?
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
hzp
why not just change it via the layout box controller in admin?
it will apply to all pages on zencart. i want the sidebox appeal on certain word press page.
Re: Show or hide wordpress sidebox on certain page only
Quote:
Originally Posted by
keenskin
hi all I am using zencart1.3.8a and wordpress 2.5 and it's working nicely.
I like to find out how to enable or diable wordpress sidebox on certain wordpress page.
I try below script but the sidebox shows on every wordpress pages
If(in_array($current_page_base,explode(",",'wordpress')) ){
$show_box06_sidebox = true;
}
else {
$show_box06_sidebox = false;
}
If anyone knows how to fix this, please help
I only wanted the sidebox to show on my blog page, so I added the following to the very beginning of my store's template stylesheet:
PHP Code:
#wparchives {display:none}
#wpcats {display:none}
#wplinks {display:none}
#wppages {display:none}
#wpsidebar {display:none}
Don't know if that helps you any.
Re: Wordpress On Zencart / Released
Hi @ all,
first, my english is not great, so please excuse me.
I use Zen 1.3.7 and WP 2.3.3.
zen in /shop/
cms in /shop/cms/
For me the best solution. But if i change any permalink structur,
it gives me only the entry site of zen, no error or anything else.
I tried with rewrites in zen htaccess, but i didnt found the way to do a URL like
/category/postname.html within my zen-cart URL.
Without permalink enabled, it works all the way with www.mydomain.com/?page_id=1
I wish it works like
www.mydomain.com/category/postname.html
I hope you understand me ?
Please help me.