<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
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/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Hiranthi&#039;s weblog &#187; custom templates - Hiranthi&#039;s weblog - Weblog van een ondernemende vrouw</title> <atom:link href="http://hiranthi.nl/tag/custom-templates/feed/" rel="self" type="application/rss+xml" /><link>http://hiranthi.nl</link> <description>Weblog van een ondernemende vrouw</description> <lastBuildDate>Wed, 02 May 2012 09:00:06 +0000</lastBuildDate> <language>nl</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Producten op je catalog.php</title><link>http://hiranthi.nl/tutorials/producten-op-je-catalog-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=producten-op-je-catalog-php</link> <comments>http://hiranthi.nl/tutorials/producten-op-je-catalog-php/#comments</comments> <pubDate>Thu, 19 Nov 2009 13:07:28 +0000</pubDate> <dc:creator>hiranthi</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[catalog]]></category> <category><![CDATA[custom templates]]></category> <category><![CDATA[E-commerce]]></category> <category><![CDATA[productenoverzicht]]></category> <category><![CDATA[Shopp]]></category> <category><![CDATA[webshop]]></category><guid
isPermaLink="false">http://www.hiranthi.nl/cms/?p=936</guid> <description><![CDATA[Een vraag die ik steeds meer tegenkom op de Shopp forums is de volgende: &#8220;Hoe geef ik al mijn producten weer op de Shopp indexpagina?&#8221;. Ofwel: hoe pas ik mijn catalog.php aan zodat al mijn producten worden weergegeven in plaats van de smart categories? Voor ik de code weergeef en deze uitleg moet je rekening [...]]]></description> <content:encoded><![CDATA[<p>Een vraag die ik steeds meer tegenkom op de Shopp forums is de volgende: &#8220;Hoe geef ik al mijn producten weer op de Shopp indexpagina?&#8221;. Ofwel: hoe pas ik mijn catalog.php aan zodat al mijn producten worden weergegeven in plaats van de smart categories?<span
id="more-936"></span></p><p> <img
src='http://hiranthi.nl/wp-includes/images/smilies/icon_exclaim.gif' alt=':!:' class='wp-smiley' /> Voor ik de code weergeef en deze uitleg moet je rekening houden met het volgende: om ervoor te zorgen dat alle producten eenmaal worden weergegeven moeten ze toegewezen zijn aan één categorie (dus niet meerdere). Op het moment dat je een product in meerdere categorieën hebt staan zal deze even vaak weergegeven worden als de hoeveelheid categorieën hij is toegewezen.</p><h3>De code</h3><pre><pre lang="php">
&lt;ul class=&quot;products&quot;&gt;
&lt;li class=&quot;row&quot;&gt;
&lt;ul&gt;
&lt;?php
if (shopp(&#039;catalog&#039;,&#039;has-categories&#039;)) :
  while (shopp(&#039;catalog&#039;,&#039;categories&#039;)) :
    if (shopp(&#039;category&#039;,&#039;hasproducts&#039;)) : while (shopp(&#039;category&#039;,&#039;products&#039;)) :
      if (shopp(&#039;category&#039;,&#039;row&#039;)): ?&gt;&lt;/ul&gt;
&lt;hr /&gt;&lt;/li&gt;
&lt;li class=&quot;row&quot;&gt;
&lt;ul&gt;&lt;?php endif; ?&gt;
&lt;li class=&quot;product&quot;&gt;
&lt;div class=&quot;frame&quot;&gt;
          &lt;a href=&quot;&lt;?php shopp(&#039;product&#039;,&#039;link&#039;); ?&gt;&quot;&gt;&lt;?php shopp(&#039;product&#039;,&#039;thumbnail&#039;); ?&gt;&lt;/a&gt;
&lt;h3&gt;&lt;a href=&quot;&lt;?php shopp(&#039;product&#039;,&#039;link&#039;); ?&gt;&quot;&gt;&lt;?php shopp(&#039;product&#039;,&#039;name&#039;); ?&gt;&lt;/a&gt;&lt;/h3&gt;

                    &lt;?php shopp(&#039;product&#039;,&#039;summary&#039;); ?&gt;
              &lt;/div&gt;
&lt;/li&gt;

&lt;?php
        endwhile; endif; // shopp(&#039;category&#039;,&#039;hasproducts&#039;)
  endwhile; // shopp(&#039;catalog&#039;,&#039;categories&#039;)
endif; // shopp(&#039;catalog&#039;,&#039;has-categories&#039;)
?&gt;
  &lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
</pre></pre><h3>Uitleg van de code</h3><p>Net als de inhoud van de category pagina worden de producten in een <code>ul</code> geplaatst. De weergave is de zogenaamde &#8216;gridview&#8217; en het aantal producten dat op 1 regel wordt weergegeven is in te stellen in je Shopp instellingen (Shopp -&gt; Instellingen -&gt; Presentatie).</p><p>Als eerste moeten we er zeker van zijn dat de catalogus wel categorieën heeft, dit doen we met <code>if (shopp(&#039;catalog&#039;,&#039;has-categories&#039;))</code>. Daar staat eigenlijk hetzelfde als &#8220;als de catalogus categorieën heeft, dan &#8230;&#8221;. Daarna gaan we met behulp van de <code>while</code>-loop door alle categorieën heen. Alles wat in die <code>while</code>-loop staat wordt eenmaal per categorie uitgevoerd.</p><p>De <code>if (shopp(&#039;category&#039;,&#039;hasproducts&#039;))</code> zorgt ervoor dat de code &#8211; binnen die <code>if</code> &#8211; alleen wordt uitgevoerd als de huidige categorie, in de loop, producten heeft. De <code>while</code>-loop die meteen daarna komt (<code>while (shopp(&#039;category&#039;,&#039;products&#039;))</code>) zorgt ervoor dat we alle producten van de huidige categorie doorlopen. Alles in die <code>while</code>-loop wordt eenmaal per product (in de huidige categorie) doorgelopen.</p><p>Om de gridview te krijgen hebben we de <code>if</code> nodig die ervoor zorgt dat het aantal kolommen &#8211; zoals in je Shopp instellingen is ingevuld &#8211; juist is:</p><pre><pre lang="php">&lt;?php if (shopp(&#039;category&#039;,&#039;row&#039;)): ?&gt;&lt;/ul&gt;
&lt;hr /&gt;&lt;/li&gt;
&lt;li class=&quot;row&quot;&gt;
&lt;ul&gt;&lt;?php endif; ?&gt;</pre></pre><p>De code in die <code>if</code> wordt alleen uitgevoerd als we bij het aantal producten zijn die op 1 regel weergegeven moeten worden (standaard is overigens 3).</p><h4>Het product</h4><p>Per product geven we de thumbnail weer, inclusief link naar de productpagina. Dan de titel van het product (die ook gelinkt is) en daar onder de korte omschrijving.</p><h3>Voorbeeld</h3><p><a
rel="nofollow" target="_blank" href="http://famire.nl/wp-content/blogs.dir/6/files/2009/11/producten-catalog.jpg" class="lightbox" ><img
src="http://famire.nl/wp-content/blogs.dir/6/files/2009/11/producten-catalog-412x200.jpg" alt="Producten weergeven in catalog.php" width="412" height="200" class="aligncenter size-large wp-image-938" /></a></p><div
id="seo_alrp_related"><br
class=\"clear\" /><h2>Gerelateerde posts</h2><ul><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/tutorials/alle-producten-op-je-catalog-php-v2/" rel="bookmark"><img
src="http://hiranthi.nl/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Alle producten op je catalog.php &#8211; v2" title="Alle producten op je catalog.php &#8211; v2" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/tutorials/alle-producten-op-je-catalog-php-v2/" rel="bookmark">Alle producten op je catalog.php &#8211; v2</a></h3><p>In de eerste post over '' heb ik een stuk code gegeven waarmee je de producten van je shop kunt weergeven. Er zat alleen wel ...</p><br
class=</div></li><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/tutorials/overzicht-van-categorieen-op-catalog-php/" rel="bookmark"><img
src="http://famire.nl/wp-content/blogs.dir/6/files/2009/11/overzicht-van-categorieen-op-catalog-php-300x160.jpg" alt="Overzicht van categorieën op catalog.php" title="Overzicht van categorieën op catalog.php" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/tutorials/overzicht-van-categorieen-op-catalog-php/" rel="bookmark">Overzicht van categorieën op catalog.php</a></h3><p>Standaard krijg je op catalog.php (de template die de de 'Shop'-pagina gebruikt, ofwel: de template voor de indexpagina van je shop) het volgende te zien: ...</p><br
class=</div></li><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/tutorials/productenwidget-met-thumbnails/" rel="bookmark"><img
src="http://hiranthi.nl/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Productenwidget met thumbnails" title="Productenwidget met thumbnails" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/tutorials/productenwidget-met-thumbnails/" rel="bookmark">Productenwidget met thumbnails</a></h3><p>Bij Shopp zitten een aantal standaard widgets geleverd, inclusief een producten widget. Maar wat deze widget mist is eigenlijk cruciaal voor je webshop: visuele ondersteuning, ...</p><br
class=</div></li></ul></div><div
class="wp-socializer 16px"><ul
class="wp-socializer-jump columns-no"><li><a
href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhiranthi.nl%2Ftutorials%2Fproducten-op-je-catalog-php%2F&amp;t=Producten+op+je+catalog.php" title="Share this on Facebook" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Facebook" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -391px; border:0;"/></a></li><li><a
href="http://twitter.com/home?status=Producten+op+je+catalog.php%20-%20http%3A%2F%2Fhiranthi.nl%3Fp%3D936%20" title="Tweet this !" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Twitter" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1615px; border:0;"/></a></li><li><a
href="http://delicious.com/post?url=http%3A%2F%2Fhiranthi.nl%2Ftutorials%2Fproducten-op-je-catalog-php%2F&amp;title=Producten+op+je+catalog.php&amp;notes=Een+vraag+die+ik+steeds+meer+tegenkom+op+de+Shopp+forums+is+de+volgende%3A+%22Hoe+geef+ik+al+mijn+producten+weer+op+de+Shopp+indexpagina%3F%22.+Ofwel%3A+hoe+pas+ik+mijn+catalog.php+aan+zodat+al+mijn+producten+worden+weergegeven+in+plaats+van+de+smart+categorie" title="Post this on Delicious" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Delicious" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -221px; border:0;"/></a></li><li><a
href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhiranthi.nl%2Ftutorials%2Fproducten-op-je-catalog-php%2F&amp;title=Producten+op+je+catalog.php&amp;bodytext=Een+vraag+die+ik+steeds+meer+tegenkom+op+de+Shopp+forums+is+de+volgende%3A+%22Hoe+geef+ik+al+mijn+producten+weer+op+de+Shopp+indexpagina%3F%22.+Ofwel%3A+hoe+pas+ik+mijn+catalog.php+aan+zodat+al+mijn+producten+worden+weergegeven+in+plaats+van+de+smart+categorie" title="Submit this to Digg" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Digg" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -272px; border:0;"/></a></li><li><a
href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhiranthi.nl%2Ftutorials%2Fproducten-op-je-catalog-php%2F&amp;title=Producten+op+je+catalog.php" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="StumbleUpon" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1530px; border:0;"/></a></li><li><a
href="http://hiranthi.nl/tutorials/producten-op-je-catalog-php/" onclick="addBookmark(event);" title="Producten op je catalog.php" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Add to favorites" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li><li><a
href="mailto:subject=Producten op je catalog.php&amp;body=Een vraag die ik steeds meer tegenkom op de Shopp forums is de volgende: "Hoe geef ik al mijn producten weer op de Shopp indexpagina?". Ofwel: hoe pas ik mijn catalog.php aan zodat al mijn producten worden weergegeven in plaats van de smart categorie - http://hiranthi.nl/tutorials/producten-op-je-catalog-php/" title="Email this" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Email" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -374px; border:0;"/></a></li><li><a
href="http://hiranthi.nl/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="RSS" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1377px; border:0;"/></a></li></ul><div
class="wp-socializer-clearer"></div></div>]]></content:encoded> <wfw:commentRss>http://hiranthi.nl/tutorials/producten-op-je-catalog-php/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Overzicht van categorieën op catalog.php</title><link>http://hiranthi.nl/tutorials/overzicht-van-categorieen-op-catalog-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=overzicht-van-categorieen-op-catalog-php</link> <comments>http://hiranthi.nl/tutorials/overzicht-van-categorieen-op-catalog-php/#comments</comments> <pubDate>Sat, 07 Nov 2009 14:00:03 +0000</pubDate> <dc:creator>hiranthi</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[custom templates]]></category> <category><![CDATA[Shopp]]></category><guid
isPermaLink="false">http://www.hiranthi.nl/cms/?p=654</guid> <description><![CDATA[Standaard krijg je op catalog.php (de template die de de &#8216;Shop&#8217;-pagina gebruikt, ofwel: de template voor de indexpagina van je shop) het volgende te zien: Featured producten (3 stuks) Producten in de aanbieding (3 stuks) Bestsellers (3 stuks) Nieuwe producten (3 stuks) In deze tutorial gaan we dat allemaal vervangen met een handig overzicht van [...]]]></description> <content:encoded><![CDATA[<p>Standaard krijg je op catalog.php (de template die de de &#8216;Shop&#8217;-pagina gebruikt, ofwel: de template voor de indexpagina van je shop) het volgende te zien:</p><ol><li>Featured producten (3 stuks)</li><li>Producten in de aanbieding (3 stuks)</li><li>Bestsellers (3 stuks)</li><li>Nieuwe producten (3 stuks)</li></ol><p><span
id="more-654"></span></p><p>In deze tutorial gaan we dat allemaal vervangen met een handig overzicht van de categorieën die je in je webshop hebt, inclusief de categorie afbeelding. We slaan alle sub-categorieën in deze tutorial over.</p><h3>Catalog.php</h3><p>Open de <strong>catalog.php</strong> van je custom templates en verwijder de gehele inhoud. Kopieer daar de onderstaande code in:</p><pre><pre lang="php">&lt;?php

if(shopp(&#039;catalog&#039;,&#039;has-categories&#039;))
{
  $i = 0;

  while(shopp(&#039;catalog&#039;,&#039;categories&#039;))
  {
    if(shopp(&#039;category&#039;,&#039;is-subcategory&#039;)) { continue; }
    ?&gt;
&lt;div class=&quot;&lt;?php echo ( ( $i % 2 ) == 0 ? &#039; alignleft&#039; : &#039; alignright&#039; ); ?&gt;&quot;&gt;
&lt;div class=&quot;alignleft&quot;&gt;&lt;?php shopp(&#039;category&#039;,&#039;thumbnail&#039;); ?&gt;&lt;/div&gt;
&lt;h3&gt;&lt;a href=&quot;&lt;?php shopp(&#039;category&#039;,&#039;url&#039;); ?&gt;&quot;&gt;&lt;?php shopp(&#039;category&#039;,&#039;name&#039;); ?&gt;&lt;/a&gt;&lt;/h3&gt;

      &lt;?php shopp(&#039;category&#039;,&#039;description&#039;); ?&gt;

&lt;a href=&quot;&lt;?php shopp(&#039;category&#039;,&#039;url&#039;); ?&gt;&quot;&gt;&lt;strong&gt;Bekijk alle producten &amp;raquo;&lt;/strong&gt;&lt;/a&gt;
&lt;/div&gt;

    &lt;?php
    if ( ( $i % 2 ) != 0 ) { echo &#039;
&lt;hr class=&quot;clear&quot; /&gt;&#039;; }
    $i++;
  }
}

?&gt;</pre></pre><h3>Uitleg code</h3><p>Met <code>if(shopp(&#039;catalog&#039;,&#039;has-categories&#039;))</code> geven we eigenlijk aan: &#8220;alleen als de catalog (webshop) categorieën heeft&#8221;.<br
/>Na die if gaan we een while-lus beginnen. Deze while-lus kun je vergelijken met &#8216;The Loop&#8217; van WordPress, maar in dit geval alleen om door alle categorieën van de catalogus (webshop) te gaan. Alles wat in die while-lus staat wordt eenmaal per categorie uitgevoerd.</p><p>De volgende code zorgt ervoor dat de subcategorieën worden overgeslagen (wil je dus subcategorieën wel weergeven, dan moet je die regel weghalen):</p><pre lang="php">&lt;?php if(shopp(&#039;category&#039;,&#039;is-subcategory&#039;)) { continue; } ?&gt;</pre><p>Er wordt per categorie een blok (div) aangemaakt die de alignleft of alignright class mee krijgt. Dit hangt af van waar we zijn in het tellen (<code>$i</code> wordt tussen de <code>if</code> en <code>while</code> aangemaakt met een waarde van 0). Onderin de while-lus krijgt <code>$i</code> er 1 bij op (na de eerste keer de <code>while</code> doorlopen gaat <code>$i</code> van 0 naar 1, etc). De code die bekijkt of we bij een even of oneven getal zijn en dus welke class er dan mee gegeven moet worden staat op deze regel:</p><pre><pre lang="php">
&lt;div class=&quot;&lt;?php echo ( ( $i % 2 ) == 0 ? &#039; alignleft&#039; : &#039; alignright&#039; ); ?&gt;&quot;&gt;</pre></pre><p>Op de regel daarna maken we een nieuw blok aan om de afbeelding van de categorie in weer te geven. Het blok krijgt een alignleft class mee, zodat de tekst er mooi naast komt te staan:</p><pre><pre lang="php">
&lt;div class=&quot;alignleft&quot;&gt;&lt;?php shopp(&#039;category&#039;,&#039;thumbnail&#039;); ?&gt;&lt;/div&gt;
</pre></pre><p>Dan komen we bij de header (titel) van de categorie aan. Deze wordt ook gelinkt naar de juiste pagina. Op de regel daaronder geven we de omschrijving van de categorie weer:</p><pre><pre lang="php">
&lt;h3&gt;&lt;a href=&quot;&lt;?php shopp(&#039;category&#039;,&#039;url&#039;); ?&gt;&quot;&gt;&lt;?php shopp(&#039;category&#039;,&#039;name&#039;); ?&gt;&lt;/a&gt;&lt;/h3&gt;

&lt;?php shopp(&#039;category&#039;,&#039;description&#039;); ?&gt;</pre></pre><p>Het laatste wat we nog toevoegen is een extra link die duidelijker aangeeft dat de klant daar kan doorklikken om naar de categorie te gaan:</p><pre lang="php">&lt;a href=&quot;&lt;?php shopp(&#039;category&#039;,&#039;url&#039;); ?&gt;&quot;&gt;&lt;strong&gt;Bekijk alle producten &amp;raquo;&lt;/strong&gt;&lt;/a&gt;</pre><p>Onder elke twee categorieën wordt er een lijn (hr) weergegeven. Hierdoor weet je zeker dat de blokken van de categorieën visueel gezien ook zijn gescheiden van elkaar.</p><pre><pre lang="php">&lt;?php if ( ( $i % 2 ) != 0 ) { echo &#039;
&lt;hr class=&quot;clear&quot; /&gt;&#039;; } ?&gt;</pre></pre><p>Een voorbeeld hiervan uitgewerkt:</p><p><a
rel="nofollow" target="_blank" href="http://famire.nl/wp-content/blogs.dir/6/files/2009/11/overzicht-van-categorieen-op-catalog-php.jpg" class="lightbox" ><img
src="http://famire.nl/wp-content/blogs.dir/6/files/2009/11/overzicht-van-categorieen-op-catalog-php-300x160.jpg" alt="Overzicht van categorieën-op catalog.php" width="300" height="160" class="aligncenter size-medium wp-image-662" /></a></p><div
id="seo_alrp_related"><br
class=\"clear\" /><h2>Gerelateerde posts</h2><ul><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/wordpress/shoppcustom-templates-activeren-en-gebruiken/" rel="bookmark"><img
src="http://hiranthi.nl/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Shopp: Custom templates activeren en gebruiken" title="Shopp: Custom templates activeren en gebruiken" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/wordpress/shoppcustom-templates-activeren-en-gebruiken/" rel="bookmark">Shopp: Custom templates activeren en gebruiken</a></h3><p>Als je Shopp activeert krijg je de 'out-of-the-box' templates te zien. Je kunt er niks aan veranderen? Fout, je kan juist alles aanpassen! Het enige ...</p><br
class=</div></li><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/tutorials/productenwidget-met-thumbnails/" rel="bookmark"><img
src="http://hiranthi.nl/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Productenwidget met thumbnails" title="Productenwidget met thumbnails" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/tutorials/productenwidget-met-thumbnails/" rel="bookmark">Productenwidget met thumbnails</a></h3><p>Bij Shopp zitten een aantal standaard widgets geleverd, inclusief een producten widget. Maar wat deze widget mist is eigenlijk cruciaal voor je webshop: visuele ondersteuning, ...</p><br
class=</div></li><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/tutorials/producten-op-je-catalog-php/" rel="bookmark"><img
src="http://famire.nl/wp-content/blogs.dir/6/files/2009/11/producten-catalog-412x200.jpg" alt="Producten op je catalog.php" title="Producten op je catalog.php" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/tutorials/producten-op-je-catalog-php/" rel="bookmark">Producten op je catalog.php</a></h3><p>Een vraag die ik steeds meer tegenkom op de Shopp forums is de volgende: "Hoe geef ik al mijn producten weer op de Shopp indexpagina?". ...</p><br
class=</div></li></ul></div><div
class="wp-socializer 16px"><ul
class="wp-socializer-jump columns-no"><li><a
href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhiranthi.nl%2Ftutorials%2Foverzicht-van-categorieen-op-catalog-php%2F&amp;t=Overzicht+van+categorie%C3%ABn+op+catalog.php" title="Share this on Facebook" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Facebook" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -391px; border:0;"/></a></li><li><a
href="http://twitter.com/home?status=Overzicht+van+categorie%C3%ABn+op+catalog.php%20-%20http%3A%2F%2Fhiranthi.nl%3Fp%3D654%20" title="Tweet this !" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Twitter" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1615px; border:0;"/></a></li><li><a
href="http://delicious.com/post?url=http%3A%2F%2Fhiranthi.nl%2Ftutorials%2Foverzicht-van-categorieen-op-catalog-php%2F&amp;title=Overzicht+van+categorie%C3%ABn+op+catalog.php&amp;notes=Standaard+krijg+je+op+catalog.php+%28de+template+die+de+de+%27Shop%27-pagina+gebruikt%2C+ofwel%3A+de+template+voor+de+indexpagina+van+je+shop%29+het+volgende+te+zien%3A%0A%0AFeatured+producten+%283+stuks%29%0AProducten+in+de+aanbieding+%283+stuks%29%0ABestsellers+%283+stuks%29%0ANieuwe" title="Post this on Delicious" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Delicious" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -221px; border:0;"/></a></li><li><a
href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhiranthi.nl%2Ftutorials%2Foverzicht-van-categorieen-op-catalog-php%2F&amp;title=Overzicht+van+categorie%C3%ABn+op+catalog.php&amp;bodytext=Standaard+krijg+je+op+catalog.php+%28de+template+die+de+de+%27Shop%27-pagina+gebruikt%2C+ofwel%3A+de+template+voor+de+indexpagina+van+je+shop%29+het+volgende+te+zien%3A%0A%0AFeatured+producten+%283+stuks%29%0AProducten+in+de+aanbieding+%283+stuks%29%0ABestsellers+%283+stuks%29%0ANieuwe" title="Submit this to Digg" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Digg" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -272px; border:0;"/></a></li><li><a
href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhiranthi.nl%2Ftutorials%2Foverzicht-van-categorieen-op-catalog-php%2F&amp;title=Overzicht+van+categorie%C3%ABn+op+catalog.php" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="StumbleUpon" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1530px; border:0;"/></a></li><li><a
href="http://hiranthi.nl/tutorials/overzicht-van-categorieen-op-catalog-php/" onclick="addBookmark(event);" title="Overzicht van categorieën op catalog.php" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Add to favorites" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li><li><a
href="mailto:subject=Overzicht van categorieën op catalog.php&amp;body=Standaard krijg je op catalog.php (de template die de de 'Shop'-pagina gebruikt, ofwel: de template voor de indexpagina van je shop) het volgende te zien:Featured producten (3 stuks)
Producten in de aanbieding (3 stuks)
Bestsellers (3 stuks)
Nieuwe - http://hiranthi.nl/tutorials/overzicht-van-categorieen-op-catalog-php/" title="Email this" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Email" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -374px; border:0;"/></a></li><li><a
href="http://hiranthi.nl/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="RSS" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1377px; border:0;"/></a></li></ul><div
class="wp-socializer-clearer"></div></div>]]></content:encoded> <wfw:commentRss>http://hiranthi.nl/tutorials/overzicht-van-categorieen-op-catalog-php/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Nederlandse custom templates (Shopp)</title><link>http://hiranthi.nl/freebies/nederlandse-custom-templates-shopp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nederlandse-custom-templates-shopp</link> <comments>http://hiranthi.nl/freebies/nederlandse-custom-templates-shopp/#comments</comments> <pubDate>Fri, 06 Nov 2009 18:20:27 +0000</pubDate> <dc:creator>hiranthi</dc:creator> <category><![CDATA[Freebies]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[custom templates]]></category> <category><![CDATA[E-commerce]]></category> <category><![CDATA[Shopp]]></category> <category><![CDATA[webshop]]></category><guid
isPermaLink="false">http://www.hiranthi.nl/cms/?p=631</guid> <description><![CDATA[Als je Shopp installeert en het Nederlandse taalbestand in de juiste map zet wordt aan de achterkant alles vertaald. Op de voorkant heb je nog wel allemaal Engels. Dit komt doordat de tekst in de templates allemaal &#8216;statisch&#8217; zijn en niet gereed zijn gemaakt voor het vertalen. Om ze te vertalen zul je dus de [...]]]></description> <content:encoded><![CDATA[<p>Als je Shopp installeert en het Nederlandse taalbestand in de juiste map zet wordt aan de achterkant alles vertaald. Op de voorkant heb je nog wel allemaal Engels. Dit komt doordat de tekst in de templates allemaal &#8216;statisch&#8217; zijn en niet gereed zijn gemaakt voor het vertalen.<span
id="more-631"></span></p><p>Om ze te vertalen zul je dus de custom templates aan moeten zetten (omdat anders de templates worden overschreven met een update) en dan allemaal vertalen naar het Nederlands. Om je hier wat tijd bij te besparen heb ik de bestanden vast voor je naar het Nederlands gegooid (kan niet garanderen dat het 100% klaar is, maar hoe dan ook: het scheelt je tijd <img
src='http://hiranthi.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ).</p><p>Als je de bestanden download hoef je dus alleen de custom templates nog maar te activeren, zipbestand uitpakken en de templates die daar in staan over de templates in de shopp map in je theme gooien. En klaar is klara <img
src='http://hiranthi.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p> <a
class="downloadlink" href="http://hiranthi.nl/wp-content/plugins/download-monitor/download.php?id=35" title="Version1 downloaded 302 times" >Shopp templates (v1.0.13) (302)</a><div
id="seo_alrp_related"><br
class=\"clear\" /><h2>Gerelateerde posts</h2><ul><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/wordpress/shoppcustom-templates-activeren-en-gebruiken/" rel="bookmark"><img
src="http://hiranthi.nl/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Shopp: Custom templates activeren en gebruiken" title="Shopp: Custom templates activeren en gebruiken" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/wordpress/shoppcustom-templates-activeren-en-gebruiken/" rel="bookmark">Shopp: Custom templates activeren en gebruiken</a></h3><p>Als je Shopp activeert krijg je de 'out-of-the-box' templates te zien. Je kunt er niks aan veranderen? Fout, je kan juist alles aanpassen! Het enige ...</p><br
class=</div></li><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/freebies/custom-templates-v1014/" rel="bookmark"><img
src="http://hiranthi.nl/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Custom templates v1.0.14" title="Custom templates v1.0.14" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/freebies/custom-templates-v1014/" rel="bookmark">Custom templates v1.0.14</a></h3><p>Naast de die in (en lager) ook al aanwezig waren is er sinds v1.0.14 een nieuwe custom template bij: thanks.php Deze template wordt weergegeven als ...</p><br
class=</div></li><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/tutorials/bankoverschrijving-met-shopp/" rel="bookmark"><img
src="http://hiranthi.nl/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Bankoverschrijving met Shopp" title="Bankoverschrijving met Shopp" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/tutorials/bankoverschrijving-met-shopp/" rel="bookmark">Bankoverschrijving met Shopp</a></h3><p>Op de Shopp forums is meerdere malen aangegeven dat mensen toch echt wel graag een handmatige betaling (manual payment - standaard bankoverschrijving) willen hebben. Dit ...</p><br
class=</div></li></ul></div><div
class="wp-socializer 16px"><ul
class="wp-socializer-jump columns-no"><li><a
href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhiranthi.nl%2Ffreebies%2Fnederlandse-custom-templates-shopp%2F&amp;t=Nederlandse+custom+templates+%28Shopp%29" title="Share this on Facebook" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Facebook" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -391px; border:0;"/></a></li><li><a
href="http://twitter.com/home?status=Nederlandse+custom+templates+%28Shopp%29%20-%20http%3A%2F%2Fhiranthi.nl%3Fp%3D631%20" title="Tweet this !" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Twitter" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1615px; border:0;"/></a></li><li><a
href="http://delicious.com/post?url=http%3A%2F%2Fhiranthi.nl%2Ffreebies%2Fnederlandse-custom-templates-shopp%2F&amp;title=Nederlandse+custom+templates+%28Shopp%29&amp;notes=Als+je+Shopp+installeert+en+het+Nederlandse+taalbestand+in+de+juiste+map+zet+wordt+aan+de+achterkant+alles+vertaald.+Op+de+voorkant+heb+je+nog+wel+allemaal+Engels.+Dit+komt+doordat+de+tekst+in+de+templates+allemaal+%27statisch%27+zijn+en+niet+gereed+zijn" title="Post this on Delicious" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Delicious" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -221px; border:0;"/></a></li><li><a
href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhiranthi.nl%2Ffreebies%2Fnederlandse-custom-templates-shopp%2F&amp;title=Nederlandse+custom+templates+%28Shopp%29&amp;bodytext=Als+je+Shopp+installeert+en+het+Nederlandse+taalbestand+in+de+juiste+map+zet+wordt+aan+de+achterkant+alles+vertaald.+Op+de+voorkant+heb+je+nog+wel+allemaal+Engels.+Dit+komt+doordat+de+tekst+in+de+templates+allemaal+%27statisch%27+zijn+en+niet+gereed+zijn" title="Submit this to Digg" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Digg" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -272px; border:0;"/></a></li><li><a
href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhiranthi.nl%2Ffreebies%2Fnederlandse-custom-templates-shopp%2F&amp;title=Nederlandse+custom+templates+%28Shopp%29" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="StumbleUpon" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1530px; border:0;"/></a></li><li><a
href="http://hiranthi.nl/freebies/nederlandse-custom-templates-shopp/" onclick="addBookmark(event);" title="Nederlandse custom templates (Shopp)" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Add to favorites" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li><li><a
href="mailto:subject=Nederlandse custom templates (Shopp)&amp;body=Als je Shopp installeert en het Nederlandse taalbestand in de juiste map zet wordt aan de achterkant alles vertaald. Op de voorkant heb je nog wel allemaal Engels. Dit komt doordat de tekst in de templates allemaal 'statisch' zijn en niet gereed zijn - http://hiranthi.nl/freebies/nederlandse-custom-templates-shopp/" title="Email this" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Email" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -374px; border:0;"/></a></li><li><a
href="http://hiranthi.nl/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="RSS" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1377px; border:0;"/></a></li></ul><div
class="wp-socializer-clearer"></div></div>]]></content:encoded> <wfw:commentRss>http://hiranthi.nl/freebies/nederlandse-custom-templates-shopp/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Shopp: Custom templates activeren en gebruiken</title><link>http://hiranthi.nl/wordpress/shoppcustom-templates-activeren-en-gebruiken/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=shoppcustom-templates-activeren-en-gebruiken</link> <comments>http://hiranthi.nl/wordpress/shoppcustom-templates-activeren-en-gebruiken/#comments</comments> <pubDate>Wed, 14 Oct 2009 10:58:01 +0000</pubDate> <dc:creator>hiranthi</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[custom templates]]></category> <category><![CDATA[E-commerce]]></category> <category><![CDATA[Shopp]]></category> <category><![CDATA[templates]]></category> <category><![CDATA[webshop]]></category> <category><![CDATA[WordPress theme]]></category><guid
isPermaLink="false">http://www.hiranthi.nl/cms/?p=492</guid> <description><![CDATA[Als je Shopp activeert krijg je de &#8216;out-of-the-box&#8217; templates te zien. Je kunt er niks aan veranderen? Fout, je kan juist alles aanpassen! Het enige dat je ervoor hoeft te doen is de custom templates activeren en de templates bewerken tot ze precies zijn zoals jij wil! Als je Shopp activeert krijg je de &#8216;out-of-the-box&#8217; [...]]]></description> <content:encoded><![CDATA[<p>Als je <a
rel="nofollow" target="_blank" href="http://www.shopplugin.net" title="Shopp: an e-commerce plugin for WordPress">Shopp</a> activeert krijg je de &#8216;out-of-the-box&#8217; templates te zien. Je kunt er niks aan veranderen? Fout, je kan juist alles aanpassen! Het enige dat je ervoor hoeft te doen is de custom templates activeren en de templates bewerken tot ze precies zijn zoals jij wil!</p><p>Als je Shopp activeert krijg je de &#8216;out-of-the-box&#8217; templates te zien. Je kunt er niks aan veranderen? Fout, je kan juist alles aanpassen! Het enige dat je ervoor hoeft te doen is de custom templates activeren en de templates bewerken tot ze precies zijn zoals jij wil!<span
id="more-492"></span></p><h3>Custom templates activeren</h3><p>Ga naar Shopp -&amp;gt; Settings -&amp;gt; Presentation (of Shopp -&amp;gt; Instellingen -&amp;gt; Presentatie) en klik op &#8216;Use custom templates&#8217;. Dan krijg je drie punten te zien die je moet aflopen:</p><ul><li>Maak een map aan, in je huidige theme, en noem deze &#8216;shopp&#8217;</li><li>Geef de server schrijfrechten voor die map (of: geef de map een CHMOD van 0777)</li><li>Ververs de instellingen pagina voor meer instructies</li></ul><p>Nadat je de map hebt aangemaakt (moet dus hier staan: /wp-content/themes/jouw_theme/shopp &#8211; waarbij jouw_theme dus de map is van jouw huidige theme) en deze een CHMOD heeft van 0777 ga je terug naar de presentatie instellingen pagina van Shopp en ververs je &#8216;m.</p><p>Als de map gevonden is door Shopp (en schrijfbaar is) krijg je nu een button &#8216;Install Theme Templates&#8217;. Als je op die knop drukt worden alle custom templates van Shopp in die nieuwe shopp map gezet.<br
/>Nadat alle bestanden zijn gekopieerd krijg je een checkbox te zien om de custom templates ook daadwerkelijk te activeren.</p><h3>De custom templates</h3><p>Een overzicht van alle templates die in je shopp map worden gezet en waar ze voor zijn:</p><ul><li><strong>account.php</strong> &#8211; de account pagina van ingelogde klanten</li><li><strong>cart.php</strong> &#8211; de winkelwagen</li><li><strong>catalog.php</strong> &#8211; de indexpagina van je webshop</li><li><strong>category.php</strong> &#8211; de template die gebruikt wordt voor als je een categorie bekijkt</li><li><strong>checkout.php</strong> &#8211; het afrekenen (nadat je in de winkelwagen op een betalingsmethode hebt geklikt)</li><li><strong>confirm.php</strong> &#8211; om de bestelling te bevestigen (wordt niet bij elke betalingsmethode gebruikt)</li><li><strong>errors.php</strong> &#8211; voor het weergeven van eventuele fouten in de procedure, of bij inloggen etc.</li><li><strong>login.php</strong> &#8211; inlogpagina voor klanten</li><li><strong>notification.html</strong> &#8211; notificatie die wordt verzonden via e-mail (voor als er een wijziging is gemaakt in de bestelling)</li><li><strong>order.html</strong> &#8211; de order die via email verzonden wordt na de bestelling (dus de factuur via e-mail &#8211; mits [receipt] in deze template staat)</li><li><strong>product.php</strong> &#8211; de template die gebruikt wordt als je een product aan het bekijken bent</li><li><strong>receipt.php</strong> &#8211; de inhoud van de factuur ([receipt] in de beide html-templates)</li><li><strong>shopp.css</strong> &#8211; het CSS bestand van de Shopp templates</li><li><strong>sidecart.php</strong> &#8211; de winkelwagen widget</li><li><strong>sideproduct.php</strong> &#8211; product widget</li><li><strong>summary.php</strong> &#8211; een overzicht van de bestelling (wordt ook boven checkout.php weergegeven)</li></ul><div
id="seo_alrp_related"><br
class=\"clear\" /><h2>Gerelateerde posts</h2><ul><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/freebies/nederlandse-custom-templates-shopp/" rel="bookmark"><img
src="http://hiranthi.nl/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Nederlandse custom templates (Shopp)" title="Nederlandse custom templates (Shopp)" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/freebies/nederlandse-custom-templates-shopp/" rel="bookmark">Nederlandse custom templates (Shopp)</a></h3><p>Als je Shopp installeert en het Nederlandse taalbestand in de juiste map zet wordt aan de achterkant alles vertaald. Op de voorkant heb je nog ...</p><br
class=</div></li><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/freebies/custom-templates-v1014/" rel="bookmark"><img
src="http://hiranthi.nl/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Custom templates v1.0.14" title="Custom templates v1.0.14" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/freebies/custom-templates-v1014/" rel="bookmark">Custom templates v1.0.14</a></h3><p>Naast de die in (en lager) ook al aanwezig waren is er sinds v1.0.14 een nieuwe custom template bij: thanks.php Deze template wordt weergegeven als ...</p><br
class=</div></li><li><div
class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a
href="http://hiranthi.nl/tutorials/bankoverschrijving-met-shopp/" rel="bookmark"><img
src="http://hiranthi.nl/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Bankoverschrijving met Shopp" title="Bankoverschrijving met Shopp" width="90" height="90" class="seo_alrp_thumb" /></a></div><div
class="seo_alrp_rl_content"><h3><a
href="http://hiranthi.nl/tutorials/bankoverschrijving-met-shopp/" rel="bookmark">Bankoverschrijving met Shopp</a></h3><p>Op de Shopp forums is meerdere malen aangegeven dat mensen toch echt wel graag een handmatige betaling (manual payment - standaard bankoverschrijving) willen hebben. Dit ...</p><br
class=</div></li></ul></div><div
class="wp-socializer 16px"><ul
class="wp-socializer-jump columns-no"><li><a
href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhiranthi.nl%2Fwordpress%2Fshoppcustom-templates-activeren-en-gebruiken%2F&amp;t=Shopp%3A+Custom+templates+activeren+en+gebruiken" title="Share this on Facebook" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Facebook" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -391px; border:0;"/></a></li><li><a
href="http://twitter.com/home?status=Shopp%3A+Custom+templates+activeren+en+gebruiken%20-%20http%3A%2F%2Fhiranthi.nl%3Fp%3D492%20" title="Tweet this !" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Twitter" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1615px; border:0;"/></a></li><li><a
href="http://delicious.com/post?url=http%3A%2F%2Fhiranthi.nl%2Fwordpress%2Fshoppcustom-templates-activeren-en-gebruiken%2F&amp;title=Shopp%3A+Custom+templates+activeren+en+gebruiken&amp;notes=Als+je+Shopp+activeert+krijg+je+de+%27out-of-the-box%27+templates+te+zien.+Je+kunt+er+niks+aan+veranderen%3F+Fout%2C+je+kan+juist+alles+aanpassen%21+Het+enige+dat+je+ervoor+hoeft+te+doen+is+de+custom+templates+activeren+en+de+templates+bewerken+tot+ze+precies+" title="Post this on Delicious" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Delicious" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -221px; border:0;"/></a></li><li><a
href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhiranthi.nl%2Fwordpress%2Fshoppcustom-templates-activeren-en-gebruiken%2F&amp;title=Shopp%3A+Custom+templates+activeren+en+gebruiken&amp;bodytext=Als+je+Shopp+activeert+krijg+je+de+%27out-of-the-box%27+templates+te+zien.+Je+kunt+er+niks+aan+veranderen%3F+Fout%2C+je+kan+juist+alles+aanpassen%21+Het+enige+dat+je+ervoor+hoeft+te+doen+is+de+custom+templates+activeren+en+de+templates+bewerken+tot+ze+precies+" title="Submit this to Digg" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Digg" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -272px; border:0;"/></a></li><li><a
href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhiranthi.nl%2Fwordpress%2Fshoppcustom-templates-activeren-en-gebruiken%2F&amp;title=Shopp%3A+Custom+templates+activeren+en+gebruiken" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="StumbleUpon" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1530px; border:0;"/></a></li><li><a
href="http://hiranthi.nl/wordpress/shoppcustom-templates-activeren-en-gebruiken/" onclick="addBookmark(event);" title="Shopp: Custom templates activeren en gebruiken" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Add to favorites" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li><li><a
href="mailto:subject=Shopp: Custom templates activeren en gebruiken&amp;body=Als je Shopp activeert krijg je de 'out-of-the-box' templates te zien. Je kunt er niks aan veranderen? Fout, je kan juist alles aanpassen! Het enige dat je ervoor hoeft te doen is de custom templates activeren en de templates bewerken tot ze precies  - http://hiranthi.nl/wordpress/shoppcustom-templates-activeren-en-gebruiken/" title="Email this" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="Email" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -374px; border:0;"/></a></li><li><a
href="http://hiranthi.nl/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img
src="http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-16px.gif" alt="RSS" style="width:16px; height:16px; background: transparent url(http://hiranthi.famire.nl/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-16px.png) no-repeat; background-position:0px -1377px; border:0;"/></a></li></ul><div
class="wp-socializer-clearer"></div></div>]]></content:encoded> <wfw:commentRss>http://hiranthi.nl/wordpress/shoppcustom-templates-activeren-en-gebruiken/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Content Delivery Network via Amazon Web Services: S3: cdn.hiranthi.nl.s3.amazonaws.com (user agent is rejected)

Served from: hiranthi.nl @ 2012-05-19 07:25:46 -->
