<?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: Display Promotion &amp; Random Products in Magento</title>
	<atom:link href="http://inchoo.net/ecommerce/magento/promotion-and-random/feed/" rel="self" type="application/rss+xml" />
	<link>http://inchoo.net/ecommerce/magento/promotion-and-random/</link>
	<description>Magento Design and Magento Development Professionals - Inchoo</description>
	<lastBuildDate>Tue, 22 May 2012 16:01:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: bruno</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-2/#comment-29123</link>
		<dc:creator>bruno</dc:creator>
		<pubDate>Fri, 18 May 2012 11:41:30 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-29123</guid>
		<description>hi, 
and for the new produts how i display them randomly??</description>
		<content:encoded><![CDATA[<p>hi,<br />
and for the new produts how i display them randomly??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peterjan</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-2/#comment-28281</link>
		<dc:creator>Peterjan</dc:creator>
		<pubDate>Tue, 17 Apr 2012 13:05:01 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-28281</guid>
		<description>Hi, promotion products is working fine but...
I have 4 stores and would love to show promotion products for each store specific. Right now its showing all products with the promotion atribute.
Can someone tell me how to do that?
Thanks</description>
		<content:encoded><![CDATA[<p>Hi, promotion products is working fine but&#8230;<br />
I have 4 stores and would love to show promotion products for each store specific. Right now its showing all products with the promotion atribute.<br />
Can someone tell me how to do that?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tuba</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-2/#comment-27647</link>
		<dc:creator>tuba</dc:creator>
		<pubDate>Mon, 19 Mar 2012 15:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-27647</guid>
		<description>Thank you for the blog!
Probably following code will help someone to show  products randomly from a particular category:

We need to write code for home cms like:
{{block type=&quot;catalog/product_list&quot; category_id=&quot;50&quot; template=&quot;catalog/product/list_home.phtml&quot;}}

Code: 
[code]
&lt;?php
$_productCollection=$this-&gt;getLoadedProductCollection();
$categoryID = $this-&gt;category_id;
//$categoryID = $this-&gt;getCategoryId();
if($categoryID){
  $category = new Mage_Catalog_Model_Category();
  $category-&gt;load($categoryID); // this is category id
  $collection = $category-&gt;getProductCollection();
} else{
  $collection = Mage::getResourceModel(&#039;catalog/product_collection&#039;);
}
Mage::getModel(&#039;catalog/layer&#039;)-&gt;prepareProductCollection($collection);
$collection-&gt;getSelect()-&gt;order(&#039;rand()&#039;);
$collection-&gt;addStoreFilter();
$numProducts = $this-&gt;getNumProducts() ? $this-&gt;getNumProducts() : 1;
$collection-&gt;setPage(1, $numProducts)-&gt;load();
$_productCollection = $this-&gt;_productCollection = $collection;
?&gt;
&lt;?php if(!$_productCollection-&gt;count()): ?&gt;
&lt;div class=&quot;note-msg&quot;&gt;
    &lt;?php echo $this-&gt;__(&#039;There are no products matching the selection. Please provide a category ID.&#039;) ?&gt;
&lt;/div&gt;
&lt;?php else: ?&gt;
  &lt;ul&gt;
	&lt;?php $_collectionSize = $_productCollection-&gt;count() ?&gt;
    &lt;?php foreach ($_productCollection as $_product): ?&gt;		        
		&lt;li&gt;
        &lt;a href=&quot;&lt;?php echo $_product-&gt;getProductUrl() ?&gt;&quot; title=&quot;&lt;?php echo $this-&gt;htmlEscape($_product-&gt;getName()) ?&gt;&quot;&gt;
            &lt;img src=&quot;&lt;?php echo $this-&gt;helper(&#039;catalog/image&#039;)-&gt;init($_product, &#039;small_image&#039;)-&gt;resize(105, 105); ?&gt;&quot; width=&quot;105&quot; height=&quot;105&quot; alt=&quot;&lt;?php echo $this-&gt;htmlEscape($_product-&gt;getName()) ?&gt;&quot; /&gt;
        &lt;/a&gt;
		&lt;/li&gt;
    &lt;?php endforeach ?&gt;
&lt;/ul&gt;
&lt;?php endif; ?&gt;
[/code]

This code displays a single product.</description>
		<content:encoded><![CDATA[<p>Thank you for the blog!<br />
Probably following code will help someone to show  products randomly from a particular category:</p>
<p>We need to write code for home cms like:<br />
{{block type=&#8221;catalog/product_list&#8221; category_id=&#8221;50&#8243; template=&#8221;catalog/product/list_home.phtml&#8221;}}</p>
<p>Code: </p>
<pre class="brush: plain; title: ; notranslate">
&amp;lt;?php
$_productCollection=$this-&amp;gt;getLoadedProductCollection();
$categoryID = $this-&amp;gt;category_id;
//$categoryID = $this-&amp;gt;getCategoryId();
if($categoryID){
  $category = new Mage_Catalog_Model_Category();
  $category-&amp;gt;load($categoryID); // this is category id
  $collection = $category-&amp;gt;getProductCollection();
} else{
  $collection = Mage::getResourceModel('catalog/product_collection');
}
Mage::getModel('catalog/layer')-&amp;gt;prepareProductCollection($collection);
$collection-&amp;gt;getSelect()-&amp;gt;order('rand()');
$collection-&amp;gt;addStoreFilter();
$numProducts = $this-&amp;gt;getNumProducts() ? $this-&amp;gt;getNumProducts() : 1;
$collection-&amp;gt;setPage(1, $numProducts)-&amp;gt;load();
$_productCollection = $this-&amp;gt;_productCollection = $collection;
?&amp;gt;
&amp;lt;?php if(!$_productCollection-&amp;gt;count()): ?&amp;gt;
&amp;lt;div class=&amp;quot;note-msg&amp;quot;&amp;gt;
    &amp;lt;?php echo $this-&amp;gt;__('There are no products matching the selection. Please provide a category ID.') ?&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;?php else: ?&amp;gt;
  &amp;lt;ul&amp;gt;
	&amp;lt;?php $_collectionSize = $_productCollection-&amp;gt;count() ?&amp;gt;
    &amp;lt;?php foreach ($_productCollection as $_product): ?&amp;gt;
		&amp;lt;li&amp;gt;
        &amp;lt;a href=&amp;quot;&amp;lt;?php echo $_product-&amp;gt;getProductUrl() ?&amp;gt;&amp;quot; title=&amp;quot;&amp;lt;?php echo $this-&amp;gt;htmlEscape($_product-&amp;gt;getName()) ?&amp;gt;&amp;quot;&amp;gt;
            &amp;lt;img src=&amp;quot;&amp;lt;?php echo $this-&amp;gt;helper('catalog/image')-&amp;gt;init($_product, 'small_image')-&amp;gt;resize(105, 105); ?&amp;gt;&amp;quot; width=&amp;quot;105&amp;quot; height=&amp;quot;105&amp;quot; alt=&amp;quot;&amp;lt;?php echo $this-&amp;gt;htmlEscape($_product-&amp;gt;getName()) ?&amp;gt;&amp;quot; /&amp;gt;
        &amp;lt;/a&amp;gt;
		&amp;lt;/li&amp;gt;
    &amp;lt;?php endforeach ?&amp;gt;
&amp;lt;/ul&amp;gt;
&amp;lt;?php endif; ?&amp;gt;
</pre>
<p>This code displays a single product.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alcs00</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-2/#comment-24299</link>
		<dc:creator>alcs00</dc:creator>
		<pubDate>Thu, 15 Dec 2011 11:20:30 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-24299</guid>
		<description>@Shashank
catalog.xml
-Category default layout







u can create a new list.phtml and make it show only 10 products

as for the category use &quot;category_id=&quot;&quot;</description>
		<content:encoded><![CDATA[<p>@Shashank<br />
catalog.xml<br />
-Category default layout</p>
<p>u can create a new list.phtml and make it show only 10 products</p>
<p>as for the category use &#8220;category_id=&#8221;"</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shashank</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-2/#comment-24150</link>
		<dc:creator>Shashank</dc:creator>
		<pubDate>Mon, 05 Dec 2011 09:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-24150</guid>
		<description>Am a regular reader of your blog but am commenting for the 1st time..I want to add 10 random products from a specific category lets say &quot;Popular&quot; below my main product on the product view page..am struggling for the last three days...any help wud be greatly appreciated...am using latest Magento lite version that u released as an experiment before :)</description>
		<content:encoded><![CDATA[<p>Am a regular reader of your blog but am commenting for the 1st time..I want to add 10 random products from a specific category lets say &#8220;Popular&#8221; below my main product on the product view page..am struggling for the last three days&#8230;any help wud be greatly appreciated&#8230;am using latest Magento lite version that u released as an experiment before <img src='http://inchoo.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: imran</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-2/#comment-21915</link>
		<dc:creator>imran</dc:creator>
		<pubDate>Fri, 15 Jul 2011 11:48:20 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-21915</guid>
		<description>Hi! I want to set a promotional offer for customer&#039;s depending on there &quot;Date of Birth&#039;s&quot; how can i do that &amp; in my magento its not displaying any of the condition with respect to the Customer. please help me  for doing this......</description>
		<content:encoded><![CDATA[<p>Hi! I want to set a promotional offer for customer&#8217;s depending on there &#8220;Date of Birth&#8217;s&#8221; how can i do that &amp; in my magento its not displaying any of the condition with respect to the Customer. please help me  for doing this&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-2/#comment-21836</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 06 Jul 2011 12:50:53 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-21836</guid>
		<description>Emilio, in 1.5 you should put this

    
        34
    


in Design / XML Layout</description>
		<content:encoded><![CDATA[<p>Emilio, in 1.5 you should put this</p>
<p>        34</p>
<p>in Design / XML Layout</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: emilio</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-2/#comment-21616</link>
		<dc:creator>emilio</dc:creator>
		<pubDate>Mon, 20 Jun 2011 19:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-21616</guid>
		<description>I use magento 1.5. and I want to show random products on home page. Could you please tell where on the home page information I have to put the code? on the &quot;Custom Layout Update XML&quot; or on the end of &quot;Layout Update XML&quot;?
Best regards</description>
		<content:encoded><![CDATA[<p>I use magento 1.5. and I want to show random products on home page. Could you please tell where on the home page information I have to put the code? on the &#8220;Custom Layout Update XML&#8221; or on the end of &#8220;Layout Update XML&#8221;?<br />
Best regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kivin</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-19883</link>
		<dc:creator>kivin</dc:creator>
		<pubDate>Tue, 08 Mar 2011 07:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-19883</guid>
		<description>It&#039;s great! Thanks inchoo</description>
		<content:encoded><![CDATA[<p>It&#8217;s great! Thanks inchoo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-13075</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Fri, 24 Dec 2010 08:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-13075</guid>
		<description>How to make the random.php file collect the current category products?</description>
		<content:encoded><![CDATA[<p>How to make the random.php file collect the current category products?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: magento user</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-9690</link>
		<dc:creator>magento user</dc:creator>
		<pubDate>Tue, 07 Dec 2010 17:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-9690</guid>
		<description>excellent post regarding the random products on magento, saved me time and money, thanks again.</description>
		<content:encoded><![CDATA[<p>excellent post regarding the random products on magento, saved me time and money, thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-9583</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Thu, 02 Dec 2010 07:51:23 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-9583</guid>
		<description>:D think I&#039;m not getting it done correctly...to see the lines of code, please follow the link, they won&#039;t get displayed here...</description>
		<content:encoded><![CDATA[<p> <img src='http://inchoo.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  think I&#8217;m not getting it done correctly&#8230;to see the lines of code, please follow the link, they won&#8217;t get displayed here&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-9582</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Thu, 02 Dec 2010 07:49:51 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-9582</guid>
		<description>Maybe this helps:

If you are looking for the correct way to change how many columns your products are displayed in “grid view” in Magento, the solution is actually quite simple. Navigate down to your catalog.xml file in your theme under the “app” side of Magento and open that file.

Then, what I did to make it simple is did a text search for the number of columns  displayed, in this particular case, the column count is 4. The actual line of code looks like this:

4

Change that line to read:

2

Save the file. Then go into your Magento Admin section under “System&gt;Cache Management”, select “Refresh”, then click “Save Cache Settings”.

Now refresh your Magento catalog page in your browser and you should now see your products in “Grid View” appearing in 2 columns instead of 4, or whatever number you changed the catalog.xml file to.

September 16th, 2009 &#124; Category: Magento E-Commerce Help 
Source: http://www.imagedia.com/2009/09/how-do-you-change-number-of-product-columns-in-magento/</description>
		<content:encoded><![CDATA[<p>Maybe this helps:</p>
<p>If you are looking for the correct way to change how many columns your products are displayed in “grid view” in Magento, the solution is actually quite simple. Navigate down to your catalog.xml file in your theme under the “app” side of Magento and open that file.</p>
<p>Then, what I did to make it simple is did a text search for the number of columns  displayed, in this particular case, the column count is 4. The actual line of code looks like this:</p>
<p>4</p>
<p>Change that line to read:</p>
<p>2</p>
<p>Save the file. Then go into your Magento Admin section under “System&gt;Cache Management”, select “Refresh”, then click “Save Cache Settings”.</p>
<p>Now refresh your Magento catalog page in your browser and you should now see your products in “Grid View” appearing in 2 columns instead of 4, or whatever number you changed the catalog.xml file to.</p>
<p>September 16th, 2009 | Category: Magento E-Commerce Help<br />
Source: <a href="http://www.imagedia.com/2009/09/how-do-you-change-number-of-product-columns-in-magento/" rel="nofollow">http://www.imagedia.com/2009/09/how-do-you-change-number-of-product-columns-in-magento/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-9574</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Wed, 01 Dec 2010 21:56:33 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-9574</guid>
		<description>I am having the same issue as Gareth O Neill, using:

To display products in grid mode on cms homepage. Getting 3 products per line, want 4. Anyone know?</description>
		<content:encoded><![CDATA[<p>I am having the same issue as Gareth O Neill, using:</p>
<p>To display products in grid mode on cms homepage. Getting 3 products per line, want 4. Anyone know?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-9470</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 26 Nov 2010 12:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-9470</guid>
		<description>....it is not working :(

so, I&#039;ll post it without the brackets

block type=&quot;catalog/product_new&quot; template=&quot;catalog/product/new.phtml&quot;
action method=&quot;setProductsCount&quot; 5 /action</description>
		<content:encoded><![CDATA[<p>&#8230;.it is not working <img src='http://inchoo.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>so, I&#8217;ll post it without the brackets</p>
<p>block type=&#8221;catalog/product_new&#8221; template=&#8221;catalog/product/new.phtml&#8221;<br />
action method=&#8221;setProductsCount&#8221; 5 /action</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-9469</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 26 Nov 2010 12:55:16 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-9469</guid>
		<description>wow... the code-issue went totally wrong here ;)

here it is unformatted:


5</description>
		<content:encoded><![CDATA[<p>wow&#8230; the code-issue went totally wrong here <img src='http://inchoo.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>here it is unformatted:</p>
<p>5</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-9468</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 26 Nov 2010 12:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-9468</guid>
		<description>Hey!

Maybe anyone can help me:
I&#039;m trying to set a product limit for a modified list.phtml in combination with the promotion.php

I need to call it via xml-layout in the backend. For the new.php I can easily set it via 
[code]
5...[/code]

But this is not working for the list.phtml :(

Or do you have another hint for me? I need to show max 6 products from a larger list of promoted products, best randomized on my homepage. and the template forces me to call it via XML, so I can not use the CMS variable line {{...}}.

thanks in advance!</description>
		<content:encoded><![CDATA[<p>Hey!</p>
<p>Maybe anyone can help me:<br />
I&#8217;m trying to set a product limit for a modified list.phtml in combination with the promotion.php</p>
<p>I need to call it via xml-layout in the backend. For the new.php I can easily set it via </p>
<pre class="brush: plain; title: ; notranslate">
5...</pre>
<p>But this is not working for the list.phtml <img src='http://inchoo.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Or do you have another hint for me? I need to show max 6 products from a larger list of promoted products, best randomized on my homepage. and the template forces me to call it via XML, so I can not use the CMS variable line {{&#8230;}}.</p>
<p>thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Player Profiles</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-8863</link>
		<dc:creator>Player Profiles</dc:creator>
		<pubDate>Sat, 30 Oct 2010 09:07:59 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-8863</guid>
		<description>Best you could change the webpage name title Display Promotion &amp; Random Products in Magento â€¢ Inchoo to something more catching for your subject you write. I enjoyed the blog post nevertheless.</description>
		<content:encoded><![CDATA[<p>Best you could change the webpage name title Display Promotion &amp; Random Products in Magento â€¢ Inchoo to something more catching for your subject you write. I enjoyed the blog post nevertheless.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thorsten</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-8291</link>
		<dc:creator>Thorsten</dc:creator>
		<pubDate>Sat, 18 Sep 2010 23:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-8291</guid>
		<description>okay ... lost situations need desperate solutions ... last chance: deleted the attribute &quot;promotion&quot; and started all over ... and now it&#039;s working again ... but i guess noone can explain why how and whatever ?? :)</description>
		<content:encoded><![CDATA[<p>okay &#8230; lost situations need desperate solutions &#8230; last chance: deleted the attribute &#8220;promotion&#8221; and started all over &#8230; and now it&#8217;s working again &#8230; but i guess noone can explain why how and whatever ?? <img src='http://inchoo.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thorsten</title>
		<link>http://inchoo.net/ecommerce/magento/promotion-and-random/comment-page-1/#comment-8289</link>
		<dc:creator>Thorsten</dc:creator>
		<pubDate>Sat, 18 Sep 2010 22:43:23 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=2785#comment-8289</guid>
		<description>OH SH***!!! So sorry ! *lol* was posting in two support boards and messed the english and the german version of my text *lol*?? okay in english ... and again SO SORRY!

i got a shop in setup now and already used this &quot;promotion-hack&quot; worked fine! and after that i installed a slider module and the promotionsstuff stopped working. After some tries to fix it, i decided to uninstall the slider (before just tried to dactivate) but nothing still happens with that &quot;promotion&quot; thingy :(

Has anyone a guess on what to do or try ? it&#039;s always saing that there are no items to show for this ...

and sorry again for the language mistake xD</description>
		<content:encoded><![CDATA[<p>OH SH***!!! So sorry ! *lol* was posting in two support boards and messed the english and the german version of my text *lol*?? okay in english &#8230; and again SO SORRY!</p>
<p>i got a shop in setup now and already used this &#8220;promotion-hack&#8221; worked fine! and after that i installed a slider module and the promotionsstuff stopped working. After some tries to fix it, i decided to uninstall the slider (before just tried to dactivate) but nothing still happens with that &#8220;promotion&#8221; thingy <img src='http://inchoo.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Has anyone a guess on what to do or try ? it&#8217;s always saing that there are no items to show for this &#8230;</p>
<p>and sorry again for the language mistake xD</p>
]]></content:encoded>
	</item>
</channel>
</rss>

