Forum Replies Created
-
In reply to: Add variable to link
I’m making a layout and i will use script to determine if a user is mobile and then use a custom css…
But if people visit the site with their iPhone, and want to see it in desktop version…
That kinda thing i wanna include in my template…
In reply to: Add variable to linkI’m making a layout and i will use script to determine if a user is mobile and then use a custom css…
But if people visit the site with their iPhone, and want to see it in desktop version…
That kinda thing i wanna include in my template…
In reply to: bbpress THIS forum themeIn reply to: bbpress THIS forum themeIn reply to: Basic newbie questionIn header.php will you find this line:
<?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?>
remove the if, then you’ve this:
<?php login_form(); ?>
In reply to: Basic newbie questionIn header.php will you find this line:
<?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?>
remove the if, then you’ve this:
<?php login_form(); ?>
In reply to: Link template directoryAnyone?
In reply to: Link template directoryAnyone?
In reply to: Link template directoryI found this for Style Sheet:
<?php bb_stylesheet_uri(); ?>
But i need something like that for the directory of the style…
In reply to: Link template directoryI found this for Style Sheet:
<?php bb_stylesheet_uri(); ?>
But i need something like that for the directory of the style…
In reply to: What is the best forum software for my needs ?I would give bbPress a try, it’s easy to design your own layout for it
In reply to: What is the best forum software for my needs ?I would give bbPress a try, it’s easy to design your own layout for it
In reply to: Themes without differentiated categoriesPut eg. this in the css file:
tr.bb-category {
font-size:bigger;
}Or whatever markup you wanna give to it…
In reply to: Mini statsIs it possible to put online members in my template without using the plugin?
I’m maybe gonna publish that layout…
In reply to: Mini statsIs it possible to put online members in my template without using the plugin?
I’m maybe gonna publish that layout…
In reply to: Mini statsit’s this plugin: https://bbpress.org/plugins/topic/mini-stats/
In reply to: Mini statsit’s this plugin: https://bbpress.org/plugins/topic/mini-stats/
In reply to: InstallationJust go to the directory where you want to install bbPress…
In reply to: Make a testuserOk thx,
never thought about writing it in the table
In reply to: Make a testuserOk thx,
never thought about writing it in the table
In reply to: WordPress Intergration under BBPressJust read the last paragraph here: https://bbpress.org/documentation/integration-with-wordpress/
In reply to: Pages from WordPressBut it’s a lot more easy, when you add a page in WP will it automatically appear in the header of bbPress…
But on slower hosts will it slow down a lot your site.
<ul class="topicmeta">
- <span id=”topic_posts”><?php topic_posts_link(); ?></span>
- <span id=”topic_voices”><?php printf( _n( ‘%s voice’, ‘%s voices’, bb_get_topic_voices() ), bb_get_topic_voices() ); ?></span>
- <?php printf(__(‘Started %1$s ago by %2$s’), get_topic_start_time(), get_topic_author()) ?>
<?php if ( 1 < get_topic_posts() ) : ?>
- <?php printf(__(‘Latest reply from %2$s’), esc_attr( get_topic_last_post_link() ), get_topic_last_poster()) ?>
<?php endif; ?>
<?php if ( bb_is_user_logged_in() ) : ?>
<li<?php echo $class;?> id=”favorite-toggle”><?php user_favorites_link(); ?>
<?php endif; do_action(‘topicmeta’); ?>
In there just remove one of the li’s which contains the date
In reply to: Pages from WordPressJust enable WordPress functions in bbPress and paste this in your header:
<?php wp_page_menu(); ?>
If you wanna have a homelink:
<?php wp_page_menu('show_home=Home'); ?>
In reply to: Show avatar of current userOK, thx!