Page 50 of 96 FirstFirst ... 40484950515260 ... LastLast
Results 491 to 500 of 955
  1. #491
    Join Date
    Jul 2007
    Location
    Australia
    Posts
    21
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    I have searched every where to find the answer, but I keep reading the same thing, and they either get resolved by the the person asking, but don't explain how it was fixed, or it has been missed by people who know the answer.
    In the admin> RSS FEED> area, it asks for an image, do I put a path or just type in the input box jpeg, gif etc.

    In the Readme file it says to
    "5. You can add to tpl_footer.php or where you want:
    <!--bof RSS Feed -->
    <div id="RSSFeedLink"><?php echo rss_feed_link(RSS_ICON); ?></div>
    <!--eof RSS Feed -->"

    Ok I did this in a few different places of the file and got this on the bottom of my site....
    "Fatal error: Call to undefined function rss_feed_link() in /home/xxxx/public_html/includes/templates/template_default/common/tpl_footer.php on line 66"

    When I tried number 4 "4. You can add to html_header.php somewhere beetwen <head> and </head> tags:
    <?php echo rss_feed_link_alternate(); // RSS Feed ?>"

    my whole site disappears and get a fatal error message on the top of a blank page.

    I'm very sorry about rehashing old questions, but I can't seem to find an answer to the stuff I know very little about.
    Thanks for any help.
    Chris.

  2. #492
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: RSS2 Feed Contribution

    In the admin> RSS FEED> area, it asks for an image, do I put a path or just type in the input box jpeg, gif etc.
    You just put the name of the image like logo.gif
    In the Readme file it says to
    "5. You can add to tpl_footer.php or where you want:
    <!--bof RSS Feed -->
    <div id="RSSFeedLink"><?php echo rss_feed_link(RSS_ICON); ?></div>
    <!--eof RSS Feed -->"
    Put it all the way at the bottom of your footer /includes/templates/your_template/common/tpl_footer
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #493
    Join Date
    Jul 2008
    Location
    San Francisco
    Posts
    63
    Plugin Contributions
    0

    Default It was working and now is broken

    I had it working, everything was fine. But when I checked on it lately, I got this error:

    XML Parsing Error: XML or text declaration not at start of entity Location: http://majortek.com/index.php?main_p...d=new_products Line Number 2, Column 1:

    <?xml version="1.0" encoding="iso-8859-1"?>
    ^

    help? Please?

  4. #494
    Join Date
    Jul 2008
    Location
    San Francisco
    Posts
    63
    Plugin Contributions
    0

    Default Re: It was working and now is broken

    Quote Originally Posted by majoritywhip View Post
    I had it working, everything was fine. But when I checked on it lately, I got this error:

    XML Parsing Error: XML or text declaration not at start of entity Location: http://majortek.com/index.php?main_p...d=new_products Line Number 2, Column 1:

    <?xml version="1.0" encoding="iso-8859-1"?>
    ^

    help? Please?
    OK, This is odd. The RSS works just fine in Safari, but is broken in FF and MSIE. Usually it's the other way around.

  5. #495
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: It was working and now is broken

    Quote Originally Posted by majoritywhip View Post
    XML Parsing Error: XML or text declaration not at start of entity Location: http://majortek.com/index.php?main_p...d=new_products Line Number 2, Column 1:

    <?xml version="1.0" encoding="iso-8859-1"?>
    ^

    help?
    I am a thousand times to answer this question - this is an error in your other files.

  6. #496
    Join Date
    Jul 2008
    Location
    San Francisco
    Posts
    63
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Could you elaborate on which files it may be?

  7. #497
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: RSS2 Feed Contribution

    Apparently you did not understand me. How can I know what your files contain an error?
    View all files are edited and added. Replace ended
    ?>
    by
    // EOF

    I have a script that checks php-files on the extra symbols. Try to find it.

  8. #498
    Join Date
    Jun 2008
    Location
    Canada
    Posts
    274
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by xordox View Post
    Thanks for Great mod!
    It works. But in validation page I have 2 recommendations:

    line 4, column 0: Use of unknown namespace: http://base.google.com/cns/1.0
    <rss version="2.0"


    line 12, column 108: Self reference doesn't match document location
    <atom:link href="http://bestfashion.me/" rel="self" type="application/rss+xml" />

    How I can fix it?
    Thanks


    Hello Everyone!


    Worderful Mod, Andrew!


    Regarding Post 463.

    You reply that you fix it in Post 468. How did you fix it?

    I did a search and I found this: http://feedvalidator.org/docs/warnin...mSelfLink.html

    I used validator: http://feedvalidator.org and http://validator.w3.org/feed/

    Can you help me correct it.

    Thank you in advance!
    Pre-Owned Books and Second Hand Stuff: http://www.onlineyardsale.ca

  9. #499
    Join Date
    Dec 2008
    Posts
    42
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    This was nice and easy to install and works just great.

    One thing though which i am having a problem with.

    How do i remove the date a product was added to my shop from the RSS feed - I would rather the date a product was added is not visible.

    Is this possible to remove ?

  10. #500
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: RSS2 Feed Contribution

    Grace38,
    Quote Originally Posted by Grace38 View Post
    How do i remove the date a product was added to my shop from the RSS feed
    /includes/pages/rss_feed/header_php.php
    line ~516
    Replace
    PHP Code:
    date('r'strtotime($products->fields['products_date'])), 
    by
    PHP Code:
    false
    So, code must be:

    PHP Code:
          $rss->rss_feed_item($products->fields['products_name'],
                              
    $link,
                              array(
    'url' => $link'PermaLink' => true),
                              
    false,
                              
    $products_description,
                              
    $rss->_clear_url($products->fields['products_image']),
                              
    zen_href_link(FILENAME_PRODUCT_REVIEWS,'products_id=' $products->fields['products_id'] . $additionalURL'NONSSL'false),
                              (
    RSS_AUTHOR == ''STORE_OWNER_EMAIL_ADDRESS " <" STORE_OWNER ">" RSS_AUTHOR),
                              
    false,
                              
    false,
                              
    $xtags
                              
    ); 

 

 
Page 50 of 96 FirstFirst ... 40484950515260 ... LastLast

Similar Threads

  1. Rss2 feed & Ultimate SEO URL
    By Jerry5763837 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 1 Feb 2009, 12:42 PM
  2. RSS2 feed contribution support
    By Woodymon in forum All Other Contributions/Addons
    Replies: 73
    Last Post: 26 Sep 2007, 07:38 AM
  3. How to display Price in Rss2.php ( Rss Feed )
    By anand in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 27 Jan 2007, 10:38 PM
  4. rss2.php rss feed contribution - YAHOO picks up only IMAGE URL?
    By gsh in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 29 Dec 2006, 05:19 AM
  5. Does rss2 mod also do mailing lists?
    By levander in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 3 Sep 2006, 11:15 AM

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