Search Results for 'codes'
-
Search Results
-
hello,
i am using a plugin “user pro for social login”
with custom css the profile of bbpress is changed into user pro profile page, you can have a look at cahive.com/profile/siddardha
i want to insert the “topics and replies posted” by the user using shortcodes or any other method possible on the users profile page.
thank you for your help.
Hi, I would like to know how to change the “forum” link in the breadcrumbs to link to another page I built the forums using the shortcodes and the “forum” link in the breadcrumbs takes me to the default forum page.
I would like it to go to the page I created.
Sorry to ask such a silly question, but I cannot seem to find info on them other than the http://codex.bbpress.org/shortcodes/ page. I have an idea of what they are, I’m just not sure how exactly to use them. It explains on that page that I just insert them into my desired page, but does not elaborate on that. I was hoping to find an article somewhere that goes over them in detail, but have yet to find it. So, I’ve decided to make a noob post here the bbpress forums.
I need create a query to bring the list of forums and subforums on the homepage of my website, i woudn’t like to use shortcodes cuz i want create a custom style. I did a wp-query but i can’t use functions to show the topic, replies and posts quantity.
<?php $args = array( 'post_type' => 'forum', 'order' => 'DESC', 'orderby' => 'date' ); $query = new WP_Query($args); ?> Foruns| Posts <?php if( $query -> have_posts() ): ?> <?php while ($query -> have_posts() ) : $query -> the_post(); ?> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php the_title(); ?> </a> <?php $value = bbp_get_forum_post_count(); echo $value; ?> <?php endwhile; ?> <?php wp_reset_postdata(); ?> <?php else: ?> Nothing yet... <?php endif; ?>
Thanks for help.
Topic: Import Hung?
I was importing from my Vbulletin 4 and it went through converting topics, then it started converting tags and hung about 12,900. Is this a known bug? What’s the best way to do this over without losing the imported content and without taking risks of missing content not being imported initially on the hang up? Any ideas why it would hang up like that? It took a pretty long time just to do the topics. It didn’t start the users yet either. You’d think it would import users first?
Side note, I don’t see any area to set up bbcodes? Is bbcode not a default feature?