Forum Replies Created
-
In reply to: Create New Topic not shown in my forum
it was there before you set up full width forums and also not having anonymous user posting
now i would need an account to see if its setup right
i do see this label though which is part of the topic/reply form template.
You must be logged in to…
so im going to assume its still alright
In reply to: No spacing in posts.try this.
if it doesnt work reply back
#bbpress-forums .bbp-topic-content p, #bbpress-forums .bbp-reply-content p { margin-bottom:10px; }
In reply to: Truncated usernamesadd to the existing code you are using.
font-weight: bold;
@coreyvf alright sent an email , tell me if you didnt get it or not.
In reply to: Adding bbcode like image, you tube etc…did you have Add toolbar & buttons to textareas to help with HTML formatting checked
in the forum settings which are in settings>forums in the back-end of WordPressIn reply to: Create New Topic not shown in my forumits showing up in the sidebar in the left.
and also normally like below all the topics and replies.
In reply to: Truncated usernamesi took this css right from bbpress.org
add this anywhere you can add custom css
if it doesnt work add !important to the end like this 12px!important;#bbpress-forums div.bbp-reply-author a.bbp-author-name, #bbpress-forums div.bbp-topic-author a.bbp-author-name { clear: left; display: block; font-size: 12px; }
the default size i think is usually 12px
so either use that or go lowerhello
create me a subscriber account so i could see the topic/reply form ,unless you have anonymous posting on
link me to your site
and let me try to see exactly whats causing the white font color.
try adding this anywhere you can put custom css
#bbpress-forums #qt_bbp_reply_content_toolbar input { color: black; }
In reply to: Adding bbcode like image, you tube etc…i dont understand what you are saying, please speak a little clearer.
In reply to: bbpress plugin causing problem with other pluginyes
In reply to: Comment Count in forum pagesLOL its not complicated at all at least not so complicated to switch to a different forum
basically it says copy the file page.php and rename it to any of the listed options
plugin-bbpress.php
bbpress.php
forums.php
forum.php
then edit the file and remove the things you dont need in your forum
like the comment count , by post author , post category, and post date that are usally posted on blog posts.
In reply to: bbpress plugin causing problem with other pluginyou would need to contact the plugin author about resolving the issue with the bbPress plugin
also make sure that you dont have any of the following problems listed here
https://wordpress.org/plugins/bolcom-partnerprogramma-wordpress-plugin/faq/
other than that try to find an alternative.
In reply to: Comment Count in forum pagesyou need to create a bbpress.php file, follow this link to read more info about it.
In reply to: Photo in Latest postssince you have custom bbpress templates in your theme
you would have to look at the loop-single-topic.php file in your bbpress folder and compare it to this one which is the plugins version of the file
basically you need this for the started by author avatar
<?php do_action( 'bbp_theme_before_topic_started_by' ); ?> <span class="bbp-topic-started-by"><?php printf( __( 'Started by: %1$s', 'bbpress' ), bbp_get_topic_author_link( array( 'size' => '14' ) ) ); ?></span> <?php do_action( 'bbp_theme_after_topic_started_by' ); ?>
and this for the freshness author avatar
<?php do_action( 'bbp_theme_before_topic_freshness_author' ); ?> <span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 14 ) ); ?></span> <?php do_action( 'bbp_theme_after_topic_freshness_author' ); ?>
In reply to: (bbPress) Login Widget – Display Profile Onlyhide the wp-login.php page
you can do a redirection from that login form to the other.
Is there any way to turn off the login form portion of the (bbPress) Login Widget though so that it only displays the profile portion when a user logs in?
this is kind of funny since you dont want the login widget for what it does , but i guess you can use a plugin like jetpacks widget visibility and show it only if users are logged in.
there are a bunch of plugins that do what jetpack widget visibility module does.
like this plugin for example
In reply to: Photo in Latest postsbbPress looks like this by default in a unmodified fresh install with the show topics by freshness shown on the forums root.
In reply to: Count number of unique people who commentthen i guess maybe its this guys plugin
https://creativemarket.com/applerture/108663-bbPress-Leaderboard-Plugin
In reply to: bbp-forum-index issuesi found this function doing a search , i havent tested though.
plop the code into your child themes functions.php file or your functionality plugin
and change 100 to whatever you likefunction bbp_increase-forum-per-page( $args = array() ) { $args['posts_per_page'] = get_option( ‘_bbp_forums_per_page’, 100 ); return $args; } add_filter( ‘bbp_before_has_forums_parse_args’, ‘bbp_increase-forum-per-page’ );
code is from this topic
In reply to: Help with the final resultthe font is light gray because you closed the topic.
add this css anywhere you can add custom css,
also maybe change #000 to whatever shade of black you use for your fonts on your content.#bbpress-forums .status-closed, #bbpress-forums .status-closed a { color: #000; }
In reply to: is it possible to allow all users create new forum ?well its not really a limit on having a certain number of forums
i think its just a limit of it being on the root page since it doesn’t have pagination.for example if you have over 50 forums displayed in the forum root page any additional forum will not display
i found this function doing a search , i havent tested though.
plop the code into your child themes functions.php file or your functionality plugin
and change 100 to whatever you likefunction bbp_increase-forum-per-page( $args = array() ) { $args['posts_per_page'] = get_option( ‘_bbp_forums_per_page’, 100 ); return $args; } add_filter( ‘bbp_before_has_forums_parse_args’, ‘bbp_increase-forum-per-page’ );
code is from this topic
In reply to: How to login in order to use bbPressI manually add the users as admin.
dont do that, just leave them as subscriber/participant and just manually change the roles of the particpants you want as a moderator .
if you want another admin make sure they are really trust-worthy like a person you knew for a couple months not a few days/weeks.
for people to create topics/replies they have to be a user to your site.
you can go the allow anyone to register which would allow any person to register to your site usually on a fresh wordpress install it would be here
http://www.yoursite.com/wp-login.php?action=register
if you dont want anyone to register try to go to a invite-only type site i guess.
there is some plugins for WordPress that add this type of functionality they usually allow you to customize your login/registration form too.
https://wordpress.org/plugins/search.php?q=invite+only
here are some that might be useful
https://wordpress.org/plugins/wordpress-mu-secure-invites/
https://wordpress.org/plugins/register-plus-redux/
https://wordpress.org/plugins/wp-invites/
https://wordpress.org/plugins/invitereferrals-customer-referral-program/
In reply to: Can't get the bbPress Sidebar to show@evilhare probably , i would just use the custom sidebars plugin by itself though.
unless you really care the login links widget , which if you do you can create simple html links to your login form in the text widget.
example:
<a href="http://example.com/login" title="login">Login</a>
In reply to: register not sent e-mailare you sure bbPress is causing the problem??
deactivate and reactivate your plugins one at a time and check and see if the problem persists when bbPress is activated to make sure.