Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Reimer

Pages: [1]
1
...gibt es irgendwo in den Optionen die Möglichkeit, dass Gäste nur eine bestimmte Zahl an Bildern sich anschauen dürfen?

2
I would like to allow the guests of my website to view only 5 images and after the limit they have to register. Is there any help for me?

Greetings

3
Anyone knows a mod which allows that guests are only able to view a number of pictures and after viewing them, they have to register ?

Only registered members are allowed to view all images as many times as they want.

Greetings
Reimer

4
Was ist das?
Mit diesem Mod werden die Links zu den einzelnen Kategorien auf jeder Seite dargestellt.

Wie geht es
Man muss alle dem User zugänglichen PHP Dateien editieren.

Finde
Code: [Select]
//-----------------------------------------------------
//--- Clickstream -------------------------------------
//-----------------------------------------------------


Davor einfügen
Code: [Select]
//-----------------------------------------------------
//--- Show Site Categories ----------------------------
//-----------------------------------------------------
$categories = get_categories(0);
if (!$categories)  {
  $categories = $lang['no_categories'];
}
$site_template->register_vars("site-categories", $categories);
unset($categories);


Im nächsten Schritt muss dem Templatedateien die entsprechende
Variable hinzgefügt werden: {site-categories}

Gruß

PS: An der Demo wird gearbeitet, muss nur noch das Layout fertigstellen...

Pages: [1]