grmbll
Forum Replies Created
-
Thnx for your quick answer. I’m looking forward to it. Meanwhile i’m looking for another (termporarely) solution.
Forum: Themes and Templates
In reply to: [WP Jurist] Pagination on peoples pageCase resolved.
Adding small piece off code was enough.
Added this to the people-profile-template.php'posts_per_page' =>10,that was enough to show all the needed profiles.
Forum: Themes and Templates
In reply to: [Attorney] How to add more text in the sliderThnx! Helped me a lot!
Forum: Themes and Templates
In reply to: [Attorney] slider on selected categoryFound the solution:
in alt_homepage_blog_slider.php find<?php $args = array( 'posts_per_page' => 10, 'post_status' => 'publish',ad after:
'cat' => '1',Then find:
<?php /* Start the Loop */ ?> <?php while ( $fPosts->have_posts() ) : $fPosts->the_post(); ?>Replace by:
<?php query_posts("cat=1"); while ( $fPosts->have_posts() ) : $fPosts->the_post(); ?>Now is category 1 the featured category for your slider.
Forum: Plugins
In reply to: [Site Offline or Coming Soon] After going onlineThnx.. that’s the solution.
Forum: Plugins
In reply to: [Site Offline or Coming Soon] After going onlineTo give some more info:
we have 4 websites that used this plugin; 3 using the same theme, 1 an other theme. The last one causes no trouble, the other 3 have the problems as above discribed.
Theme related? Cache? (Yess i’ve deleted cookies, and tried different browsers)