Forum Replies Created
-
In reply to: How to style forum title or topic title
Following is my loop-forums.php – I still don’t understand where the title is coming from…
<?php /** * Forums Loop * * @package bbPress * @subpackage Theme */ ?> <?php do_action( 'bbp_template_before_forums_loop' ); ?> <ul id="forums-list-<?php bbp_forum_id(); ?>" class="bbp-forums"> <li class="bbp-header"> <ul class="forum-titles"> <li class="bbp-forum-info"><?php _e( 'Forum', 'bbpress' ); ?> </li> <li class="bbp-forum-topic-count"><?php _e( 'Topics', 'bbpress' ); ?></li> <li class="bbp-forum-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li> <li class="bbp-forum-freshness"><?php _e( 'Freshness', 'bbpress' ); ?></li> </ul> </li><!-- .bbp-header --> <li class="bbp-body"> <?php while ( bbp_forums() ) : bbp_the_forum(); ?> <?php bbp_get_template_part( 'loop', 'single-forum' ); ?> <?php endwhile; ?> </li><!-- .bbp-body --> <li class="bbp-footer"> <div class="tr"> <p class="td colspan4"> </p> </div><!-- .tr --> </li><!-- .bbp-footer --> </ul><!-- .forums-directory --> <?php do_action( 'bbp_template_after_forums_loop' ); ?>
In reply to: Vbulletin database tables for importI am on vBulletin 4.1.2 Patch Level 7
In reply to: Vbulletin database tables for importMay anybody tell me which tables need to be imported?
In reply to: How Do I Make A Custom bbPress Theme?I would like to know the same…
In reply to: Vbulletin database tables for importReally nobody? I can’t import my VBulletin… 🙁
In reply to: Issue with Vbuliten ConverionI am hosted on 1&1. If you are too the hostname must probably include the socket.
Besides that, are you sure you have no table prefix? My Vbulletin tables all start with vb_
Fabian
In reply to: Vbulletin database tables for importOk, I got the idea to look at the conversion php file for VBulletin.
I found out that I need these tables:
- vb_forum
- vb_thread
- vb_post
- vb_tagcontent
- vb_tag
- vb_user
After importing and repairing everything I get just 1 reply and 1 voice in each thread. In the backend I get several replies per thread. Something is going wrong.
Any ideas on this?
Fabian
In reply to: Vbulletin database tables for importDoes really nobody know this?