Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
In reply to: How to reset loop? 2 loops on 1 page
I added ‘tag’ => ” and it doesn’t help.
In reply to: How to reset loop? 2 loops on 1 pageOn the main content (url: forums/topic-tag/android/) is loaded content-archive-topic.php template with following code:
<?php bbp_get_template_part( 'loop', 'topics' ); ?>
loop-topics.php contains
<?php while ( bbp_topics() ) : bbp_the_topic(); ?> <?php bbp_get_template_part( 'loop', 'single-topic' ); ?> <?php endwhile; wp_reset_query();?>
So it loads topics with android tag.
On the sidebar I have this code
if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => false, 'order' => 'DESC', 'post_parent' => 'any', 'paged' => 1, 'posts_per_page' => $number_of_topics ) ) ) : bbp_get_template_part( 'loop', 'mytopics' ); else : bbp_get_template_part( 'feedback', 'no-topics' ); endif;
It should load all recent topics from all forums but it loads topics with android tag, and it happens when I’m on this page forums/topic-tag/android/
In reply to: How to reset loop? 2 loops on 1 pageIt’s
if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => false, 'order' => 'DESC', 'post_parent' => 'any', 'paged' => 1, 'posts_per_page' => $number_of_topics ) ) ) : bbp_get_template_part( 'loop', 'mytopics' ); else : bbp_get_template_part( 'feedback', 'no-topics' ); endif;
In reply to: quicktags-toolbar div (buttons on editor) is emptyI resolved it, there was conflict with some jquery script.
In reply to: Limit of the latest topicsYeah – http://pastebin.com/zpaQhXvD
In reply to: Shortcodes from other pluginsWhere it’s disabled? How to enable shortcodes again without using any extensions?
Viewing 6 replies - 1 through 6 (of 6 total)