Page 95 of 186 FirstFirst ... 45859394959697105145 ... LastLast
Results 941 to 950 of 1859
  1. #941
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Wordpress On Zencart / Released

    http://wordpress.org/extend/plugins/...r-integration/ (zencart-and-wordpress-user-integration.0.5.zip)
    Only works using wordpress version 2.5
    Have not tried zencart wordpress mod with wordpress version 2.8...only 2.7

  2. #942
    Join Date
    Apr 2009
    Posts
    118
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by misty View Post
    Only works using wordpress version 2.5
    Have not tried zencart wordpress mod with wordpress version 2.8...only 2.7
    Oh,my god,so i must use wordpress version 2.5 or 2.7 for http://cbwp.us?
    http://www.gueston.com Gueston wholesale plaza--wholesale cheap brand apparel

  3. #943
    Join Date
    Apr 2009
    Posts
    118
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by misty View Post
    Only works using wordpress version 2.5
    Have not tried zencart wordpress mod with wordpress version 2.8...only 2.7
    Hi
    I got new error after use wordpress2.8 to 2.5.:
    <a href="
    Fatal error: Call to undefined function: wp_login_url() in /home/content/l/i/q/liqinghua/html/blog/wp-content/themes/fidi-2/metasite.php on line 18

    And have same problem as last error(can't login/logout/change password.....)

    And what function for this file?:class.rlwp.php(it is in zencart_demo_templates_1.1.zip)
    <?php
    /**
    * @package TPP
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: class.rlwp.php 511 2009-02-17 07:20:44Z hugo13 $
    *
    * @author rainer AT langheiter DOT com // http://www.filosofisch.com // http://edv.langheiter.com
    * example: <!--%WordPress%--><!--###getWPTag###-->
    * first part == name of tab ( <!--%WordPress%--> )
    * second part == name of called function; param: products_id ( <!--###getWPTag###--> )
    */

    define ('ABSPATH','/home/content/l/i/q/liqinghua/html/blog'); // abs-path to wp
    if (file_exists(ABSPATH.'wp-config.php')) {
    require_once(ABSPATH.'wp-config.php');
    $wpinstall = true;
    }


    class rlWP {
    public $wpinstall;
    private $tag;

    function __construct(){
    $this->wpinstall = false;
    if (file_exists(ABSPATH.'wp-config.php')) {
    $this->wpinstall = true;
    require_once(ABSPATH.'wp-config.php');
    }
    }

    public function getWPTag($tag = 'zen-cart'){
    $content = '';
    $this->tag = $tag;
    if($this->wpinstall == true) {
    $lastposts = get_posts('tag=' . $this->tag);
    if(empty($lastposts)){
    $content = 'NIX gefunden';
    } else {
    foreach ($lastposts as $post) {
    $content .= '<div style="padding:4px; border: 1px solid green;"><h3>' . $post-

    >post_title . '</h3><p>' . $post->post_content . '</p></div>';
    }
    }
    } else {
    $content = 'WP nicht installiert/richtig konfiguriert';
    }
    return $content;
    }
    }


    function getWPTag($tag = 'zen-cart'){
    $wp = new rlWP();
    return $wp->getWPTag($tag);
    }

    ?>

    www.cbwp.us
    Last edited by gueston; 10 Sep 2009 at 10:12 AM.
    http://www.gueston.com Gueston wholesale plaza--wholesale cheap brand apparel

  4. #944
    Join Date
    Apr 2009
    Posts
    118
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by misty View Post
    Only works using wordpress version 2.5
    Have not tried zencart wordpress mod with wordpress version 2.8...only 2.7
    Hi,i have new error again,help me please,i know you are great man
    Thanks
    http://www.gueston.com Gueston wholesale plaza--wholesale cheap brand apparel

  5. #945
    Join Date
    Jul 2009
    Location
    Maryland
    Posts
    37
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Hi there, I have searched every where for this problem so I'm assuming that I am doing something wrong that I'm missing since nobody has ever posted about this problem that I could find. What is happening is that my sidebar is perfect in all pages except that when you click to open the blog page itself, the sidebar all of a sudden jumps to the middle of the blog and the sidebar is blank. Here are 2 screen shots of what I'm talking about:

    Home Page (perfect):

    and Blog Page (messed up):

    Please any help would be appreciated.

    Thank You,

  6. #946
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by richardr View Post
    Hi there, I have searched every where for this problem so I'm assuming that I am doing something wrong that I'm missing since nobody has ever posted about this problem that I could find. What is happening is that my sidebar is perfect in all pages except that when you click to open the blog page itself, the sidebar all of a sudden jumps to the middle of the blog and the sidebar is blank.
    I think this is one of two things. You have CSS conflicts because zen cart and wp share some element names, and/or there is a missing </div> tag somewhere. It is most likely the name conflict, I ran into this too. If you don't have firebug plugin for firefox get it, then highlight the messed up area and right click, select inspect element from the context menu and see what the class or id name is. Compare your stylesheets and I bet you will find there are elements with the same name. Rename the wordpress elements and then go to the relevant theme files and change those element names. It's easiest to do with a find and replace function in notepad++ or other text editor.

    Zen Cart and it's community are the best!!

  7. #947
    Join Date
    Jul 2009
    Location
    Maryland
    Posts
    37
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by lankeeyankee View Post
    I think this is one of two things. You have CSS conflicts because zen cart and wp share some element names, and/or there is a missing </div> tag somewhere. It is most likely the name conflict, I ran into this too. If you don't have firebug plugin for firefox get it, then highlight the messed up area and right click, select inspect element from the context menu and see what the class or id name is. Compare your stylesheets and I bet you will find there are elements with the same name. Rename the wordpress elements and then go to the relevant theme files and change those element names. It's easiest to do with a find and replace function in notepad++ or other text editor.
    Thank you, going to try this now, I appreciate the answer and glad to know that I wasn't the only one :)

  8. #948
    Join Date
    Sep 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Great module, but interfere with the rss feed mod.

  9. #949
    Join Date
    Sep 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Hi,

    I'm using zencart 1.38 along with wordpress 2.84. They are all installed in the same directory and I have the woz plugin installed. My problem is with the woz sidebox links.
    On my site www.bfit.ie/store the link to the categories is www.bfit.ie/store/?cat=1 . However this doesnt work and it returns me to the main page. If I type in www.bfit.ie/store/?main_page=wordpress&cat=1 then It works fine. The same is the case with the archive link. I tried the wp-admin to adjust the permalinks but nothign seems to work. I've read back over the forum and have seen similar problems but not sure of the exact fix in my case. Any ideas??

    Rob

  10. #950
    Join Date
    Feb 2009
    Posts
    12
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Gueston

    How did you resolve your registration problem with wordpress?

    I am having the same problem as you mentioned earlier in this forum. That being the "Fatal error: Call to undefined function: username_exists() n /home/content/l/i/q/liqinghua/html/includes/classes/observers/class.registerWordPress.php on line 17"

    I just registered on your site with the user name "Ben Franklin" and I saw that your registration is now working. You can delete that user. Sorry. How did you resolve the registration problem?

    I am sure hoping that you can help me with this.

    I'm Using:
    Zencart: 1.3.8a
    Wordpress: 2.8.4
    WOZ: 1.301
    zencart-and-wordpress-user-integration: .5

 

 

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