Page 13 of 96 FirstFirst ... 311121314152363 ... LastLast
Results 121 to 130 of 955
  1. #121
    Join Date
    Feb 2007
    Location
    Barcelona
    Posts
    201
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Thank you for your replies, Andrew.
    Quote:
    Originally Posted by tonibarcelona
    The BUY NOW button only appears to work in FF, not IE...
    And neither in some of rss agregators.


    Of course. Like many additional tags. In IE xsl can help you.

    Does this means that i can correct it with css for ie?

    Quote:
    Originally Posted by tonibarcelona
    1)Is not clear for me how restrict rss feed only to new products and incoming products...

    Only update script.
    I donīt understand you. I installed from fresh last update published yesterday at download area.. I see the menu at admin area wick look like the menu posted by Vicky, but i donīt see any option for publish rss only to certain pages

    And for the last point, i tried to append echo rss_feed_link to the a href of Google. I supposed that itīs a trouble with the syntaxis, but iīm unable of make it working correctly, doesnīt generate a correct link for thge rss page

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

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by tonibarcelona View Post
    Thank you for your replies, Andrew.
    Quote:
    Originally Posted by tonibarcelona
    The BUY NOW button only appears to work in FF, not IE...
    And neither in some of rss agregators.


    Of course. Like many additional tags. In IE xsl can help you.

    Does this means that i can correct it with css for ie?
    XSL
    Quote Originally Posted by tonibarcelona View Post
    Quote:
    Originally Posted by tonibarcelona
    1)Is not clear for me how restrict rss feed only to new products and incoming products...
    Only update script.
    I donīt understand you. I installed from fresh last update published yesterday at download area.. I see the menu at admin area wick look like the menu posted by Vicky, but i donīt see any option for publish rss only to certain pages
    Where I say that you can do it from admin??? I say that you can do it updating script. Write you own update for this script.
    Quote Originally Posted by tonibarcelona View Post
    And for the last point, i tried to append echo rss_feed_link to the a href of Google. I supposed that itīs a trouble with the syntaxis, but iīm unable of make it working correctly, doesnīt generate a correct link for thge rss page
    echo rss_feed_linkto the a href of Google??????????? I think I don't understand you. May more details?

  3. #123
    Join Date
    Feb 2007
    Location
    Barcelona
    Posts
    201
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by a_berezin View Post
    XSL

    Where I say that you can do it from admin??? I say that you can do it updating script. Write you own update for this script.

    I think my knowledge on php is very poor for doing that.

    echo rss_feed_linkto the a href of Google??????????? I think I don't understand you. May more details?
    Yes: For sending rss feed to google reader or igoogle the code for the button is: [FONT=Courier New]<a href="http://fusion.google.com/add?feedurl=[FEED_URL]">
    <img src="[LOCAL_PATH]/add.gif"
    width="104" height="17" border="0"
    alt="Add to Google">
    </a> [/FONT]

    [FONT=Courier New]How to integrate this code at your mod ?[/FONT]

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

    Default Re: RSS2 Feed Contribution

    Quick decision
    Code:
    <a href="http://fusion.google.com/add?feedurl=<?php list($feed, ) = rss_feed_current_page(); echo zen_href_link(FILENAME_RSS_FEED, 'feed=' . $feed); ?>">
    <img src="[LOCAL_PATH]/add.gif"
    width="104" height="17" border="0"
    alt="Add to Google">
    </a>

  5. #125
    Join Date
    Feb 2007
    Location
    Barcelona
    Posts
    201
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Thanks a lot, Andrew:I will try it this afternoon and inform of working process.

    thank you very much.

  6. #126

    Default Re: RSS2 Feed Contribution

    Dear developer of this excellent mod,

    Just wanna inform you that the included installation sql patch will delete configuration_key with configuration_group_id = 0

    The effected keys are

    PRODUCTS_OPTIONS_TYPE_SELECT
    UPLOAD_PREFIX
    TEXT_PREFIX

    Deletion of above keys will effect the proper functionality of Zen Cart.

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

    Default Re: RSS2 Feed Contribution

    surf7.net
    Thanks!

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

    Default Re: RSS2 Feed Contribution

    Please execute this sql to restore deleted records:
    Code:
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('Product option type Select', 'PRODUCTS_OPTIONS_TYPE_SELECT', '0', 'The number representing the Select type of product option.', 0, NULL, now(), now(), NULL, NULL);
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('Upload prefix', 'UPLOAD_PREFIX', 'upload_', 'Prefix used to differentiate between upload options and other options', 0, NULL, now(), now(), NULL, NULL);
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('Text prefix', 'TEXT_PREFIX', 'txt_', 'Prefix used to differentiate between text option values and other option values', 0, NULL, now(), now(), NULL, NULL);

  9. #129
    Join Date
    Feb 2007
    Location
    Barcelona
    Posts
    201
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by a_berezin View Post
    Quick decision
    Code:
    <a href="http://fusion.google.com/add?feedurl=<?php list($feed, ) = rss_feed_current_page(); echo zen_href_link(FILENAME_RSS_FEED, 'feed=' . $feed); ?>">
    <img src="[LOCAL_PATH]/add.gif"
    width="104" height="17" border="0"
    alt="Add to Google">
    </a>

    YES!!! IT WORKS, AND WORKS VERY WELL!!
    THANKX A LOT, ANDREW

  10. #130
    Join Date
    Feb 2007
    Location
    Barcelona
    Posts
    201
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    I donīt know which implications it may have, but the mod generates the same url feed for products and for products reviews

 

 
Page 13 of 96 FirstFirst ... 311121314152363 ... 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