go41

the info you need to know


von Joern
Keine Kommentare

did you also change in the last line: posts_per_page=$num ?try to echo $num and look for a number on top of your frontlistCode:<?php$num = intval(get_option('posts_per_page')) - intval(count(get_option('sticky_posts')));$page = (get_query_var('paged')) ? get_query_var('paged') : 1;query_posts("cat=-27,-28&paged=$page&posts_per_page=$num"); ?><?php echo $num; ?>it might work without intval in that line$num = get_option('posts_per_page') - count(get_option('sticky_posts'));or try this:Code:<?php$num…


von blogdot admin
2 Kommentare

Ich bin irgendwie über Joomla! gestolpert, hab's mal auf dem localserver installiert wie hier beschrieben :http://forum.joomla.org/index.php/topic,25954.0.html, ging problemlos. Das war natürlich noch mit der englischen Version. Beim surfen habe ich dann das 'eingedeutschte' Frontend hier (joomla! deutsch) gefunden. das hab' ich auch gleich mal local probiert und da das so…