<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Add a remove button to the shopping cart page</title>
	<atom:link href="http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/</link>
	<description>lets talk about osCommerce</description>
	<lastBuildDate>Tue, 07 Apr 2020 11:18:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Plugger</title>
		<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/#comment-1205</link>
		<dc:creator>Plugger</dc:creator>
		<pubDate>Thu, 10 Oct 2013 06:41:50 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=1123#comment-1205</guid>
		<description>can we have the &quot;remove&quot; as an image (obviously one from the languages/images/buttons folder to be multilingual)


im also struggling to make the delete button an image in the address_book_process page</description>
		<content:encoded><![CDATA[<p>can we have the &#8220;remove&#8221; as an image (obviously one from the languages/images/buttons folder to be multilingual)</p>
<p>im also struggling to make the delete button an image in the address_book_process page</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: multimixer</title>
		<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/#comment-1116</link>
		<dc:creator>multimixer</dc:creator>
		<pubDate>Thu, 18 Apr 2013 16:35:05 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=1123#comment-1116</guid>
		<description>Hi Mike

Well, the code changed a bit in version 2.3.3, but it&#039;s basically still same, just some constants for text added

Find this part

 &#039;&lt; a href=&quot;&#039; . tep_href_link(FILENAME_SHOPPING_CART, &#039;products_id=&#039; . $products[$i][&#039;id&#039;] . &#039;&amp;action=remove_product&#039;) . &#039;&quot; rel=&quot;nofollow&quot;&gt;&#039; . TEXT_REMOVE . &#039;&lt; /a&gt;&#039;

And replace by this

tep_draw_button(IMAGE_BUTTON_REMOVE, &#039;trash&#039;, tep_href_link(FILENAME_SHOPPING_CART, &#039;products_id=&#039; . $products[$i][&#039;id&#039;] . &#039;&amp;action=remove_product&#039;))</description>
		<content:encoded><![CDATA[<p>Hi Mike</p>
<p>Well, the code changed a bit in version 2.3.3, but it&#8217;s basically still same, just some constants for text added</p>
<p>Find this part</p>
<p> &#8216;< a href="' . tep_href_link(FILENAME_SHOPPING_CART, 'products_id=' . $products[$i]['id'] . '&amp;action=remove_product') . '" rel="nofollow">&#8216; . TEXT_REMOVE . &#8216;< /a>&#8216;</p>
<p>And replace by this</p>
<p>tep_draw_button(IMAGE_BUTTON_REMOVE, &#8216;trash&#8217;, tep_href_link(FILENAME_SHOPPING_CART, &#8216;products_id=&#8217; . $products[$i]['id'] . &#8216;&#038;action=remove_product&#8217;))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/#comment-1115</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 18 Apr 2013 06:19:50 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=1123#comment-1115</guid>
		<description>Hi all, i&#039;m not to good on php and i can&#039;t make changes because this lines are different on my page then in example here. Any help please ?
$products_name .= &#039;&#039; . 
tep_draw_input_field(&#039;cart_quantity[]&#039;, $products[$i][&#039;quantity&#039;], &#039;size=&quot;4&quot;&#039;) . 
tep_draw_hidden_field(&#039;products_id[]&#039;, $products[$i][&#039;id&#039;]) . 
tep_draw_button(IMAGE_BUTTON_UPDATE, &#039;refresh&#039;) . &#039;&#160;&#160;&#160;&#039;
 . TEXT_OR . &#039;&lt;a href=&quot;&#039; . tep_href_link(FILENAME_SHOPPING_CART, &#039;products_id=&#039; . $products[$i][&#039;id&#039;] . &#039;&amp;action=remove_product&#039;) . &#039;&quot; rel=&quot;nofollow&quot;&gt;&#039; . TEXT_REMOVE . &#039;&lt;/a&gt;&#039;;


Best Regards
Mike</description>
		<content:encoded><![CDATA[<p>Hi all, i&#8217;m not to good on php and i can&#8217;t make changes because this lines are different on my page then in example here. Any help please ?<br />
$products_name .= &#8221; .<br />
tep_draw_input_field(&#8216;cart_quantity[]&#8216;, $products[$i]['quantity'], &#8216;size=&#8221;4&#8243;&#8216;) .<br />
tep_draw_hidden_field(&#8216;products_id[]&#8216;, $products[$i]['id']) .<br />
tep_draw_button(IMAGE_BUTTON_UPDATE, &#8216;refresh&#8217;) . &#8216;&nbsp;&nbsp;&nbsp;&#8217;<br />
 . TEXT_OR . &#8216;<a href="' . tep_href_link(FILENAME_SHOPPING_CART, 'products_id=' . $products[$i]['id'] . '&amp;action=remove_product') . '" rel="nofollow">&#8216; . TEXT_REMOVE . &#8216;</a>&#8216;;</p>
<p>Best Regards<br />
Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ebrahim</title>
		<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/#comment-1081</link>
		<dc:creator>Ebrahim</dc:creator>
		<pubDate>Sat, 23 Feb 2013 22:46:42 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=1123#comment-1081</guid>
		<description>Once again so many thanks.
I have gone to the 2files mention but I dont know what to do. can you please show me.
I am new to oscommerce.
Thanks


The add to cart buttons need to be removed manually, they appear on 2 files, catalog/product_info.php and index.php
 
To remove the prices you need to modify function display_price() at is in file catalog/includes/classes/currencies.php
 
The topic is also covered in the osCommerce forum</description>
		<content:encoded><![CDATA[<p>Once again so many thanks.<br />
I have gone to the 2files mention but I dont know what to do. can you please show me.<br />
I am new to oscommerce.<br />
Thanks</p>
<p>The add to cart buttons need to be removed manually, they appear on 2 files, catalog/product_info.php and index.php</p>
<p>To remove the prices you need to modify function display_price() at is in file catalog/includes/classes/currencies.php</p>
<p>The topic is also covered in the osCommerce forum</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: multimixer</title>
		<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/#comment-1078</link>
		<dc:creator>multimixer</dc:creator>
		<pubDate>Thu, 21 Feb 2013 13:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=1123#comment-1078</guid>
		<description>Hello Ebrahim

The add to cart buttons need to be removed manually, they appear on 2 files, catalog/product_info.php and index.php

To remove the prices you need to modify function display_price() at is in file catalog/includes/classes/currencies.php

The topic is also covered in the osCommerce forum</description>
		<content:encoded><![CDATA[<p>Hello Ebrahim</p>
<p>The add to cart buttons need to be removed manually, they appear on 2 files, catalog/product_info.php and index.php</p>
<p>To remove the prices you need to modify function display_price() at is in file catalog/includes/classes/currencies.php</p>
<p>The topic is also covered in the osCommerce forum</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ebrahim</title>
		<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/#comment-1074</link>
		<dc:creator>Ebrahim</dc:creator>
		<pubDate>Sun, 17 Feb 2013 18:47:01 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=1123#comment-1074</guid>
		<description>First Thank for all you help online I got a lot from you.
I would like to know how to remove ADD TO CART AND PRICES in oscommerce 2.3.1 and 2.3.3 any help will be welcome.
Thanks</description>
		<content:encoded><![CDATA[<p>First Thank for all you help online I got a lot from you.<br />
I would like to know how to remove ADD TO CART AND PRICES in oscommerce 2.3.1 and 2.3.3 any help will be welcome.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marc</title>
		<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/#comment-955</link>
		<dc:creator>marc</dc:creator>
		<pubDate>Wed, 24 Oct 2012 17:45:16 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=1123#comment-955</guid>
		<description>Hello George

I made a new installation from the shopping cart file, because the buttons are not in the same line on Google Chrome, and in Explorer it is fine. Why I can not get it in the same line in Google Chrome and firefox?

Thank you in advance for helping
best regards

Marc</description>
		<content:encoded><![CDATA[<p>Hello George</p>
<p>I made a new installation from the shopping cart file, because the buttons are not in the same line on Google Chrome, and in Explorer it is fine. Why I can not get it in the same line in Google Chrome and firefox?</p>
<p>Thank you in advance for helping<br />
best regards</p>
<p>Marc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: multimixer</title>
		<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/#comment-927</link>
		<dc:creator>multimixer</dc:creator>
		<pubDate>Fri, 27 Jul 2012 13:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=1123#comment-927</guid>
		<description>Hi Rob, thank you for the comment</description>
		<content:encoded><![CDATA[<p>Hi Rob, thank you for the comment</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob van Abeelen</title>
		<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/#comment-926</link>
		<dc:creator>Rob van Abeelen</dc:creator>
		<pubDate>Wed, 25 Jul 2012 13:37:21 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=1123#comment-926</guid>
		<description>Hi Multimixer , thanks for putting this up here , very usefull!! now i go and do some more of whats on here ;-)

Thanks again.

Gr,

Rob</description>
		<content:encoded><![CDATA[<p>Hi Multimixer , thanks for putting this up here , very usefull!! now i go and do some more of whats on here ;-)</p>
<p>Thanks again.</p>
<p>Gr,</p>
<p>Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: multimixer</title>
		<link>http://multimixer.gr/05/01/2012/add-remove-button-to-shopping-cart-page/#comment-891</link>
		<dc:creator>multimixer</dc:creator>
		<pubDate>Wed, 30 May 2012 08:58:57 +0000</pubDate>
		<guid isPermaLink="false">http://multimixer.gr/?p=1123#comment-891</guid>
		<description>It would help to see the site, however, for accented characters, the best way to go is using utf-8 everywhere: The page encoding and the database</description>
		<content:encoded><![CDATA[<p>It would help to see the site, however, for accented characters, the best way to go is using utf-8 everywhere: The page encoding and the database</p>
]]></content:encoded>
	</item>
</channel>
</rss>
