Page 175 of 186 FirstFirst ... 75125165173174175176177185 ... LastLast
Results 1,741 to 1,750 of 1859
  1. #1741
    Join Date
    Feb 2011
    Posts
    2
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by DivaVocals View Post
    Will repost this for you are well..
    DivaVocals, I've been following your advice for the past day or two (searching the forums), after experiencing the hardship that is WOZ... taring that off, and then going to the numinix solution. Afterwords, I developed a side box that is compatible with it. Now you can have your cake, and eat it too... this method uses the wordpress API, so you can change the format of how everything is displayed if you so wish, or even use other functions.. Haven't tried it, but you could also display the archives and last several posts no problemo with this route and some knowledge.

    AFTER you have successfully integrated numinix’s solution for wordpress blog, paste this code into a brand new file, save it as: wordpress_posts.php and save it at: includes/modules/sideboxes/YOUR_TEMPLATE/wordpress_posts.php
    Then, enable the box from your layout boxes controller… style the box appropriately, notice the width is coded into the style. Change that to match your page. Also change the link to match your blog’s URI. It may not be the best solution, but it works great.
    PHP Code:

    <?php
    //Wordpress SideBox
    // Display sidebox if TRUE
    $show_wordpress_posts true;
    if (
    $show_wordpress_posts == true) {
    ?>
    <div class=”leftBoxContainer” id=”wordpress-blog” style=”width: 195px;”>
    <h3 class=”leftBoxHeading” id=”blog-heading”><a href=”http://litebrightraves.com/raveblog” title=”Blog”>Blog [more]</a></h3>
    <div class=”categoriesContent centeredContent”>
    <?php
    if ($_GET['main_page'] != ‘blog’) {
    // Include WordPress
    define(‘WP_USE_THEMES’false);
    require(
    ./wordpress/wp-load.php’);
    query_posts(‘showposts=5&#8242;);}
    while (have_posts()): the_post(); ?>
    <h2><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h2>
    <?php the_excerpt(); ?>
    <?php 
    endwhile;
    ?>
    </div>
    </div>
    <?php }
    ?>
    From the helpful folks at New Corporate Image

  2. #1742
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Wordpress On Zencart / Released

    Awesome!!!Bravo to you!!!

    I have sideboxes I use with the Numinix solution too.. The nice thing about these sideboxes is that could function without the blog embedding.

    Quote Originally Posted by tgcallaway View Post
    DivaVocals, I've been following your advice for the past day or two (searching the forums), after experiencing the hardship that is WOZ... taring that off, and then going to the numinix solution. Afterwords, I developed a side box that is compatible with it. Now you can have your cake, and eat it too... this method uses the wordpress API, so you can change the format of how everything is displayed if you so wish, or even use other functions.. Haven't tried it, but you could also display the archives and last several posts no problemo with this route and some knowledge.

    AFTER you have successfully integrated numinix’s solution for wordpress blog, paste this code into a brand new file, save it as: wordpress_posts.php and save it at: includes/modules/sideboxes/YOUR_TEMPLATE/wordpress_posts.php
    Then, enable the box from your layout boxes controller… style the box appropriately, notice the width is coded into the style. Change that to match your page. Also change the link to match your blog’s URI. It may not be the best solution, but it works great.
    PHP Code:

    <?php
    //Wordpress SideBox
    // Display sidebox if TRUE
    $show_wordpress_posts true;
    if (
    $show_wordpress_posts == true) {
    ?>
    <div class=”leftBoxContainer” id=”wordpress-blog” style=”width: 195px;”>
    <h3 class=”leftBoxHeading” id=”blog-heading”><a href=”http://litebrightraves.com/raveblog” title=”Blog”>Blog [more]</a></h3>
    <div class=”categoriesContent centeredContent”>
    <?php
    if ($_GET['main_page'] != &#8216;blog’) {
    // Include WordPress
    define(&#8216;WP_USE_THEMES’, false);
    require(&#8216;./wordpress/wp-load.php’);
    query_posts(&#8216;showposts=5′);}
    while (have_posts()): the_post(); ?>
    <h2><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h2>
    <?php the_excerpt(); ?>
    <?php 
    endwhile;
    ?>
    </div>
    </div>
    <?php }
    ?>
    From the helpful folks at New Corporate Image
    Last edited by DivaVocals; 3 Mar 2011 at 03:23 AM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  3. #1743
    Join Date
    Jul 2010
    Location
    Battle Ground, WA
    Posts
    273
    Plugin Contributions
    1

    Default Re: Wordpress On Zencart / Released

    I'm building a prototype which is located here.
    Wordpress is here.

    When I go to the worpress page, it's a white page. Here's the link:

    http://lfswear.com/sites/lfs/index.p...page=wordpress

    Please help!

    p.s. im using zen cart 1.3.9h and wordpress 3.1

  4. #1744
    Join Date
    Mar 2011
    Posts
    1
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Hello All,

    I am getting an error in step 4 where I need to confirm the URL path under Admin>WOZ Manager which says:

    WordPress config(wp-config.php) was not found.

    When I download the install file the extra_configures folder located in ZC_ROOT/includes/ was empty. Can someone please provide me with the wp-config.php file for WOZ V 1.5 or tell me where I can get it?

    Thanks

  5. #1745
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Wordpress On Zencart / Released

    I was also planning to install this mod but shied away after reading through this thread.

    It seems that many others had a go at integrating WP into ZC.

    Just googled "Wordpress On Zencart" and got these results:

    http://www.google.com/search?q=Wordp...fe=images&tbs=

    The most recent result shows a date of 28 Oct 2010, blog by Michael Wender. This seems to be a working way of integrating WP.

  6. #1746
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by frank18 View Post
    I was also planning to install this mod but shied away after reading through this thread.

    It seems that many others had a go at integrating WP into ZC.

    Just googled "Wordpress On Zencart" and got these results:

    http://www.google.com/search?q=Wordp...fe=images&tbs=

    The most recent result shows a date of 28 Oct 2010, blog by Michael Wender. This seems to be a working way of integrating WP.
    His "solution" is the opposite of WOZ or the Numinix solution.. Where WOZ and Numinix are designed to embed WP inside ZC, Michael Wender's solution is attempting to embed ZC inside WP. Even he recently admits that a better way to go about this today would be to use a WP plugin if WP is the primary platform your site is built upon.. (his solution is over 3 years old.. WP and ZC have changed a fair bit in that time, and his solution seems to be showing signs of these changes..)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #1747
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by DivaVocals View Post
    His "solution" is the opposite of WOZ or the Numinix solution.. Where WOZ and Numinix are designed to embed WP inside ZC, Michael Wender's solution is attempting to embed ZC inside WP. Even he recently admits that a better way to go about this today would be to use a WP plugin if WP is the primary platform your site is built upon.. (his solution is over 3 years old.. WP and ZC have changed a fair bit in that time, and his solution seems to be showing signs of these changes..)
    Yep, you're right

    Would you generally give to Numinix's solution?

  8. #1748
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by frank18 View Post
    Yep, you're right

    Would you generally give to Numinix's solution?
    Yep.. That's been my general position throughout this thread.. WOZ is FULL of issues IMHO, and not worth the trouble of "banging" together.. The Numinix solution works.. I will post the same cause I've posted before about this solution.. DON'T SKIP ANY OF THE INSTALL STEPS!!! I've helped a coupla folks fix their Numinix embedding installs and the common causes for failure I've found are 1 or 2 things:

    1. Skipping steps from the Numinix instrucions
    2. Leaving WOZ behind (must remove WOZ in FULL!)

    Good luck..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #1749

    Default Re: Wordpress On Zencart / Released

    Hi everybody, to add to the list of incompatibilities of the WOZ mod. The RSS feed contribution http://www.zen-cart.com/index.php?ma...roducts_id=733 does NOT work when WOZ is installed. The feed pages return a WordPress error page.

  10. #1750
    Join Date
    Oct 2010
    Posts
    19
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Hi

    I have managed to set this module and all seems to work ok from a user point of view, however it seems to block crawlers from accessing my pages (Categories and Products).

    Has anyone else found this and did you manage to sort it?

 

 

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3657
    Last Post: 3 Jan 2025, 12:04 AM
  2. WordPress® for Zen Cart® (wp4zen) [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 109
    Last Post: 1 Dec 2024, 01:36 PM
  3. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 AM
  4. PurpleShades Support Thread
    By kobra in forum Addon Templates
    Replies: 122
    Last Post: 18 May 2011, 07:18 PM
  5. ZJ Black 2 support thread
    By Liamv in forum Addon Templates
    Replies: 1
    Last Post: 15 Feb 2010, 02:53 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR