Page 79 of 186 FirstFirst ... 2969777879808189129179 ... LastLast
Results 781 to 790 of 1859
  1. #781
    Join Date
    Mar 2009
    Posts
    17
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    I've installed WP on 2 sites.
    One site everything works fine. The "pages" open up in a new window and not inside of the site on the second one.

    I don't know if that makes sense, but here is the link:
    http://chuforiagraffix.com/store/ind...page=wordpress

    I need everything to open up right in the little wordpress section.
    If someone could give me a clue as to what setting or change I might need to make it would be appreciated.

    thanks in advance!

  2. #782
    Join Date
    Oct 2007
    Location
    MA, USA
    Posts
    385
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Sorry, I cant get it to work. I have WP installed into blog directory and ZC installed into store directory.

    Please help with proper config. I am not sure what the path to WP is.

  3. #783

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by MagicMan View Post
    Sorry, I cant get it to work. I have WP installed into blog directory and ZC installed into store directory.

    Please help with proper config. I am not sure what the path to WP is.
    path to wordpress: yoursite.com/blog_directory/

    or do you mean the ABSPATH thing from the wordpress-config.php file?

  4. #784
    Join Date
    Apr 2009
    Posts
    10
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Hi,

    i have no problems running this mod. I just want to ask - is there someone who is using also some wordpress plugins? What about TDO-MINI-FORMS?

    I tried to use this one, but didnt work. I am not sure if this is the right place to discuss such complicated issue (at least for me :) )
    just wanted to ask if there is someone with similar problems.

  5. #785
    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 pajur View Post
    Hi,

    i have no problems running this mod. I just want to ask - is there someone who is using also some wordpress plugins? What about TDO-MINI-FORMS?

    I tried to use this one, but didnt work. I am not sure if this is the right place to discuss such complicated issue (at least for me :) )
    just wanted to ask if there is someone with similar problems.
    You are probably not going to get much response here on how to get WP plugins to work with this mod. You might have better success on the WP forums..

  6. #786

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by DivaVocals View Post
    Your configuration is the same for the two clients sites (one is live, one is still in development)

    Both sites were running the latest versions of WordPress, ZenCart and, WOZ. I had the "posts not found" error that a few others have posted about. After doing some extensive testing of my own I too determined that the issue is probably in the sidebox code..

    Please don't take this the wrong way, but now what?? We've all identified that there is indeed an issue.. We all have determined where the code that needs to be modified is likely located.. However, unless and until someone who knows PHP steps in to take over this project, that's the extent of it for now. Our only other option is to PAY someone who knows PHP to fix this.

    FYI.. I did make ONE attempt at a paid fix for myself, but was unsuccessful in finding anyone willing to bid on (or follow-up) the job. I posted a request on the commercial forum here and on another site. As I was not getting a satisfactory response, I moved on and found an alternate solution.. Both of my clients are happy. One prefers the seperate blog (she didn't flinch when I told her we had to abandon the embedded blog), the other never saw the blog embedded, and is happy with the solution she has been presented.

    Perhaps when time/resources permit, I may make another attempt to find a commercial resource to fix this mod for me. I suspect that the likelyhood of someone stepping in to take over for this mod is unlikely given the upcoming Zen release..

    You're welcome..
    I wanted to update everybody on the problem I was having using the tpl_wp_sidebar.php file to display links to posts that actually go to the posts and don't display a "Post not found" message" I don't know if this will work for everybody, since its kind of funky.

    Heres the site where I'm using it http://asialuna.com

    The Recent posts is displaying in the right sidebox. I added code to the tpl_wp_pages.php page like so:

    Code:
    <?php
    //
    // +----------------------------------------------------------------------+
    // |zen-cart Open Source E-commerce                                       |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2004 The zen-cart developers                           |
    // |                                                                      |
    // | http://www.zen-cart.com/index.php                                    |
    // |                                                                      |
    // | Portions Copyright (c) 2003 osCommerce                               |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license,       |
    // | that is bundled with this package in the file LICENSE, and is        |
    // | available through the world-wide-web at the following url:           |
    // | http://www.zen-cart.com/license/2_0.txt.                             |
    // | If you did not receive a copy of the zen-cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to       |
    // | [email protected] so we can mail you a copy immediately.          |
    // +----------------------------------------------------------------------+
      $content = "";
    
    if($woz_install){
    
      $content = '<ul>' . wp_list_pages('echo=0&title_li=') . '</ul>';
    
    }
    ?>
    
    <!-- start woz posts display -->
    
    
    <h3 class="rightBoxHeading2" id="wppagesHeading">Recent Posts</h3>
    
    <ul>
    <?php
    $posts = get_posts('numberposts=5'); // change to whatever number of posts to show
    foreach($posts as $post) :
    setup_postdata($post);
    ?>
    
    <li  class="recent-posts"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
    <!-- <?php the_excerpt(); ?>  -->
    <!-- <hr /> -->
    <?php endforeach; ?>
    </ul>
    
    <!-- <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>  -->
    <!-- <?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>  -->
    
    <!-- end woz posts display -->
    I got the added code from an earlier post in this thread. As I said its a little funky, piggybacking the display of posts on the pages sidebar, but I'm curious to know if it can be refined and if it works for anybody else.

    thanks

  7. #787
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: Wordpress On Zencart

    OK. I am trying to integrate zen cart and wordpress. I have the most recent releases of both installed in separate sub-directories.

    I have uploaded the various components of WOZ and have edited the abspath to the appropriate wordpress path.

    In zen cart I can get a sidebar for my blog. When I click on the link I get the following error message :

    Warning: Cannot modify header information - headers already sent by (output started at /home/16602/adseddon/www.starlessriver.com/public_html/shop/includes/templates/starlessriver/templates/tpl_modules_categories_tabs.php:21) in /home/16602/adseddon/www.starlessriver.com/public_html/news/wp-includes/pluggable.php on line 850
    out of my depth now :-)

    can anybody help?

    thank you!
    Nick

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

    Default Re: Wordpress On Zencart

    Quote Originally Posted by niccol View Post
    OK. I am trying to integrate zen cart and wordpress. I have the most recent releases of both installed in separate sub-directories.

    I have uploaded the various components of WOZ and have edited the abspath to the appropriate wordpress path.

    In zen cart I can get a sidebar for my blog. When I click on the link I get the following error message :



    out of my depth now :-)

    can anybody help?

    thank you!
    Nick
    Search this thread for kiddo's fix..

  9. #789
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: Wordpress On Zencart / Released

    Thank you divavocals - works great. had searched but obciously not for the right thing. thanks for pointing me in the right direction
    nick

  10. #790
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: Wordpress On Zencart / Released

    sorry, I have another slight problem.

    when i try to switch wordpress themes I get a blank screen rather than the preview with the error message:

    Code:
    Fatal error: Call to a member function get_template_dir() 
    on a non-object in /home/16602/adseddon/www.starlessriver.com
    /public_html/shop/includes/languages/english/starlessriver
    /credit_cards.php on line 46
    actually the functionality of switching themes works fine so I just get an annoying error message. A quick search indicated that this error isn't unknown but Dr Byte says that this is probably a WOZ issue so here I am back in this forum !

    thanks again



    Nick

 

 

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3662
    Last Post: 30 Apr 2025, 04:14 AM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  3. 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
  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