Page 174 of 186 FirstFirst ... 74124164172173174175176184 ... LastLast
Results 1,731 to 1,740 of 1859
  1. #1731
    Join Date
    Apr 2007
    Posts
    649
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Has anyone got the RSS feeder to work when using SSU? Mine just pulls my main page up.

  2. #1732
    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 helpme View Post
    Has anyone got the RSS feeder to work when using SSU? Mine just pulls my main page up.
    Nobody's worked on this mod in a month of Sundays.. Though usually when I make statements like that Hira "mysteriously" shows back up..
    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. #1733
    Join Date
    Apr 2007
    Posts
    649
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    lol, I doubt that only because I am asking :) Do you have an success with rewrite for SSU? that is really my main problem. I have tried Numinix's version and it just breaks my page.

  4. #1734
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,030
    Plugin Contributions
    13

    Default Re: Wordpress On Zencart / Released

    Quote Originally Posted by helpme View Post
    lol, I doubt that only because I am asking :) Do you have an success with rewrite for SSU? that is really my main problem. I have tried Numinix's version and it just breaks my page.

    Magic SEO works with this mod (not familiar with other SEO addons) with some major tweaks and so on. But this mod is not worth a bucket of bolts unless someone fixes has a lot of work arounds as some call it hacks to work we made it work some what for some customers but not worth sharing due to the limited support we can offer but if you plan to use this mod try Magic SEO they may have a work around for it.
    PCI Certified Web Hosting - ControlScan, Security Metrics (Platinum Partner), McAfee, TrustKeeper
    Business Class Web Hosting - Linux and cPanel Powered

  5. #1735
    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 helpme View Post
    lol, I doubt that only because I am asking :) Do you have an success with rewrite for SSU? that is really my main problem. I have tried Numinix's version and it just breaks my page.
    Numinix's blog embedding works, and he has posted the required changes for his blog embedding solution to work with SSU.. I don't use SSU (I prefer Ceon's URI Mapping module), and with the correct .htaccess settings, the Numinix blog embedding solution works perfectly with Ceon URI Mapping...

    I have found that when folks have issues with Numinix's solution it's because a step has been missed or not implemented correctly.. (I say this because I have been hired to fix a number of sites with the Numinix solution and EVERY one of these sites wasn't working due to a missed or improperly implemented step..)

    The Numinix solution unlike WOZ is the correct way to do a blog embedding. It properly makes use of WordPress' own recommendations for displaying blog content outside of WordPress. WOZ does NOT follow these guidelines and makes use of too many unnecessary hacks which is why it has always been problematic...
    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.

  6. #1736
    Join Date
    Feb 2011
    Posts
    2
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Wow, what a great thread, interesting and informative topics are really cool. Thank you for sharing it here.

  7. #1737
    Join Date
    Oct 2010
    Posts
    9
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Im trying to get wordpress posts on the zen cart home page.
    Im using the following code

    PHP Code:
    <?php define('WP_USE_THEMES'false); get_header(); ?>

        <?php if (have_posts()) : ?>

            <?php while (have_posts()) : the_post(); ?>

                <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
                    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

                    <div class="entry">
                        <?php the_content('Read the rest of this entry &raquo;'); ?>
                    </div>

                </div>

            <?php endwhile; ?>

        <?php else : ?>

            <h2 class="center">Not Found</h2>
            <p class="center">Sorry, but you are looking for something that isn't here.</p>
            <?php get_search_form(); ?>

        <?php endif; ?>
    The posts show up on the main page but when i click on them they just go back to the home page.

    the link is come up with - website.co.uk/&p=1
    when its meant to be - website.co.uk/index.php?main_page=wordpress&p=1

    and there is no styling

    Can anyone help?

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

    Default Re: Wordpress On Zencart / Released

    DEAD mod (see last few posts above this one re-iterating this point..) Doesn't work well (poorly coded IMHO) and not well supported by the author or the community.. Numinix solution works if you want blog embedding.. WOZ??? not so much IMHO..

    Historically though, Hira seems to "magically" show up to provide support whenever you post anything that even remotely IMPLIES that this is a dead/non-working/non-supported mod.. (kinda like saying Beetlejuice three times) Maybe you'll get lucky and he'll do a drive-by and help you hack/hammer this thing into place..

    There are other posts which list options for getting blog posts to appear on the main page if that's what you really want.. Search the forum for WordPress and my user name... I've posted on a majority of the WordPress threads that are floating around out here.. You find the solution I refer to..


    Quote Originally Posted by ryan11 View Post
    Im trying to get wordpress posts on the zen cart home page.
    Im using the following code

    PHP Code:
    <?php define('WP_USE_THEMES'false); get_header(); ?>

        <?php if (have_posts()) : ?>

            <?php while (have_posts()) : the_post(); ?>

                <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
                    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

                    <div class="entry">
                        <?php the_content('Read the rest of this entry &raquo;'); ?>
                    </div>

                </div>

            <?php endwhile; ?>

        <?php else : ?>

            <h2 class="center">Not Found</h2>
            <p class="center">Sorry, but you are looking for something that isn't here.</p>
            <?php get_search_form(); ?>

        <?php endif; ?>
    The posts show up on the main page but when i click on them they just go back to the home page.

    the link is come up with - website.co.uk/&p=1
    when its meant to be - website.co.uk/index.php?main_page=wordpress&p=1

    and there is no styling

    Can anyone help?
    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. #1739
    Join Date
    Oct 2010
    Posts
    9
    Plugin Contributions
    0

    Default Re: Wordpress On Zencart / Released

    Thanks DivaVocals

    I will uninstall WOZ and try the Numinix solution.


    Quote Originally Posted by DivaVocals View Post
    DEAD mod (see last few posts above this one re-iterating this point..) Doesn't work well (poorly coded IMHO) and not well supported by the author or the community.. Numinix solution works if you want blog embedding.. WOZ??? not so much IMHO..

    Historically though, Hira seems to "magically" show up to provide support whenever you post anything that even remotely IMPLIES that this is a dead/non-working/non-supported mod.. (kinda like saying Beetlejuice three times) Maybe you'll get lucky and he'll do a drive-by and help you hack/hammer this thing into place..

    There are other posts which list options for getting blog posts to appear on the main page if that's what you really want.. Search the forum for WordPress and my user name... I've posted on a majority of the WordPress threads that are floating around out here.. You find the solution I refer to..

  10. #1740
    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 ryan11 View Post
    Thanks DivaVocals

    I will uninstall WOZ and try the Numinix solution.
    Will repost this for you are well..
    I have found that when folks have issues with Numinix's solution it's because a step has been missed or not implemented correctly.. (I say this because I have been hired to fix a number of sites with the Numinix solution and EVERY one of these sites wasn't working due to a missed or improperly implemented step..)
    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.

 

 

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