Re: Wordpress On Zencart / Released
ok, the part that says --
Upload the contents of [ZC_ROOT] to [Path of Zen-Cart] on the server.
Upload the contents of [WP_ROOT] to [Path of WordPress] on the server.
does the first point mean i drop the ZC_ROOT folder into /public_html?
and then the second point means i drop the WP_ROOT folder into /public_html/blog?
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
jenn8five
does the first point mean i drop the ZC_ROOT folder into /public_html?
Exactly. Unless you have your ZC store files located in a sub-folder which you probably don't.
Quote:
Originally Posted by
jenn8five
and then the second point means i drop the WP_ROOT folder into /public_html/blog?
Yes
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
jenn8five
Upload the contents of [WP_ROOT] to [Path of WordPress] on the server.
I don't mean to make matters more confusing but I should probably tell you that I did not put the WP files in a separate folder because I couldn't get it to work that way. I put them all in the public_html. But go ahead and try putting them in your "blog" folder. If it doesn't work you can go back and do it the other way.
Re: Wordpress On Zencart / Released
ok, i've got it all installed, but the blog page doesn't "look" like my website. it's the regular WP template. is this contribution supposed to only add WP to ZC or make it look all the same?
also, i can't access WP admin.
http://indiediggs.com/blogwp
Re: Wordpress On Zencart / Released
Quote:
Originally Posted by
jenn8five
ok, i've got it all installed, but the blog page doesn't "look" like my website. it's the regular WP template. is this contribution supposed to only add WP to ZC or make it look all the same?
also, i can't access WP admin.
http://indiediggs.com/blogwp
It *should* look like it is a part of your website. If I remember correctly I had this same problem. I suggest you try the installation again but this time put the WP files directly into your public_html folder.
Re: Wordpress On Zencart / Released
arghhhhhhh ok i'll try storing it all w/o creating a new blog folder. :cry:
Re: Wordpress On Zencart / Released
In the WOZ install I want to be able to get the WP title and keyword datd to out put instead of the zens cart one.s on the pages that are WP.
In the header file I wanted to write an if/else statement but this doesnt deem to work.
I was going to do it the simple way and just have the wp_head loop first to get the titles and keywords out first where they exsist. So i have
<?php
/**
* Common Template
/**
* load the module for generating page meta-tags
*/
require(DIR_WS_MODULES . zen_get_module_directory('meta_tags.php'));
/**
* output main page HEAD tag and related headers/meta-tags, etc
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php echo HTML_PARAMS; ?>>
<head>
<?php wp_head(); ?>
<title><?php echo META_TAG_TITLE; ?></title>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>" />
<meta name="keywords" content="<?php echo META_TAG_KEYWORDS; ?>" />
<meta name="description" content="<?php echo META_TAG_DESCRIPTION; ?>" />
is there another way of doing this?
Re: Wordpress On Zencart - Disabling Right Column for WordPress Pages ONLY.
O.k. This actually is a tough one I believe, as it would require some code to recognize if a page is a WordPress page or not.
Normally disabling the right column is an easy task by adding some code to the tpl_main_page.php or to the stylesheet, but this is not possible with the WordPress pages because stylesheet_woz.css is global, so disabling the right column would obviously shut them off on all pages that load that stylesheet (which is all pages because it is global).
I'm thinking there must be some sort of an 'if else' statement that could help in disabling the right column for wordpress only pages.
Any Help?
This would actually be a helpful thing for many people.
Re: Wordpress On Zencart / Released
Normally disabling the right column is an easy task by adding some code to the tpl_main_page.php or to the stylesheet,
You can turn the right column off in zen cart's admin without editing the css file, which would may solve your problem.