Forum Replies Created
-
In reply to: Change Background Colour of Forum Page
🙂
In reply to: Change Background Colour of Forum Pageyour theme/elementor is doing this, not bbpress
suggest you look in your theme colors to see if you can change
background-color:#020413;In reply to: How can I allow users to post annoymously@kikismedia – bit confused
If the code is on stackoverflow – can you post a link to it so that you help others who might find this thread
if you have the code already – why are you asking~?would involve string a list in the database and then adding a dropdown to the topic/reply form templates – quite doable but beyond free help
In reply to: How can I allow users to post annoymouslyhas been asked before an JJJ who wrote most of bbpress says it would be really hard to code.
In reply to: Graphic issues with repliesThese are all issues with your theme, not bbpress.
However in the spirit of helpfulness, I’ll do this last one, but after that you need to refer to your theme’s support channels.
So the best I can do without spending considerable time is :
@media only screen and (max-width: 480px) { #bbpress-forums div.bbp-reply-author img.avatar { position: relative !important ; } #bbpress-forums .bbp-body div.bbp-reply-author { padding-left: 0px !important; }Which puts it on then left, but is not perfect
In reply to: Graphic issues with repliesNot sure what your theme is trying to do here, so sorry not one I can fix
In reply to: Graphic issues with repliesgreat – glad you are fixed
In reply to: Graphic issues with repliesoops sorry the value should be transparent
so
background-color: transparent !important;and padding in the original code is causing the name issue
so
padding: 5px 20px;makes it wrap
add
padding : none !important ;so you end up with
.reply a { font-size: 12px !important; background-color: transparent !important; padding : none !important ; }In reply to: Auto Moderatorthe area that sets the default role is
dashboard>settings>forums>roles and there you will see the default role
In reply to: Graphic issues with repliesyour themes style sheet
http://www.rockin-wildcat.com/rwc/wp-content/themes/blog-diary-pro/style.css
has line 2201 with
.reply a { display: inline-block; border-radius: 0; color: #fff; position: relative; font-size: 16px; background-color: #46c4f3; padding: 5px 20px; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }the background-color: #46c4f3; element is causing the box issue, and the font-size: 16px; the text issue
I’d suggest you add these to the custom css area of your theme
.reply a { font-size: 12px !important; background-color: none !important; }you can adjust the font-size to whatever value you wish
In reply to: BBPress Create Forum Shortcode not workingyes this seems to be a bug.
in
\bbpress\includes\forums\functions.php
line 197 has
// No forum parent was passed (should never happen) if ( empty( $forum_parent_id ) ) { bbp_add_error( 'bbp_new_forum_missing_parent', __( '<strong>ERROR</strong>: Your forum must have a parent.', 'bbpress' ) );but a top level forum will have zero so empty !
(I’m not a bbpress author, I just help moderate here, so not under my direct powers to change)
To correct this for another user, I did the following :
created a hidden forum – then noted the ID (in this case 4537)
then in
\bbpress\templates\default\bbpress\form-forum.php
changed line 138 etc. from
<p> <label for="bbp_forum_parent_id"><?php esc_html_e( 'Parent Forum:', 'bbpress' ); ?></label><br /> <?php bbp_dropdown( array( 'select_id' => 'bbp_forum_parent_id', 'show_none' => esc_html__( '— No parent —', 'bbpress' ), 'selected' => bbp_get_form_forum_parent(), 'exclude' => bbp_get_forum_id() ) ); ?> </p>to
<?php //the code in incudes/forums/functions won't let post parent be blank. //to get this to work, we have created a hidden forum in the site. This forums ID is 4537 //if the hidden forum exists, then use this forums id //otherwise show the post parent section $forum_parent_id = bbp_get_forum_id( 4537 ); if (!empty( $forum_parent_id )) { ?> <input type="hidden" id="bbp_forum_parent_id" name="bbp_forum_parent_id" value="4537"> <?php } else { ?> <p> <label for="bbp_forum_parent_id"><?php esc_html_e( 'Parent Forum:', 'bbpress' ); ?></label><br /> <?php bbp_dropdown( array( 'select_id' => 'bbp_forum_parent_id', 'show_none' => esc_html__( '— No parent —', 'bbpress' ), 'selected' => bbp_get_form_forum_parent(), 'exclude' => bbp_get_forum_id() ) ); ?> </p> <?php } ?>This template then gets saved to your child themes directory as
wp-content/themes/%your-theme-name%/bbpress/form-forum.php
bbPress will now use this template instead of the original
Finally, add an action to re-write the parent forum from 4537 to zero post forum creation
add_action( 'bbp_new_forum_post_extras', 'ltc_limit_forum', 10 ,1 ); function ltc_limit_forum ($forum_id) { //this function is fired when a forum is created //set post parent to zero wp_update_post( array( 'ID' => $forum_id, 'post_parent' => 0 ) ); }Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
You could amend that function to have an if statement so if forum parent is 4537 then create forum parent as 0, but in this case there were no times when a sub forum was being created, so it was not needed.
I know this is quite convoluted, but it worked !!
There is a trac ticket for this issue somewhere, so the authors are aware
In reply to: Delete Pluginok, bbpress does not create it’s own tables.
anyway glad you are sorted
In reply to: Change default templateIn reply to: Graphic issues with replieslink to an example on your site please
In reply to: Delete Pluginwhat tables can you see ?
In reply to: Forum notification emails sent to “from” addressit may be that your hoster is cutting the number of emails or number per hour – may be worth checking with them. Also other email services can limit the number of emails being allowed at one time.
so for instance you hoster might send 200 emails, but if say 100 are to gmail addresses, then gmail may see them as spam and cut. (Just using gmail as an example and I have no idea if gmail do this)
email spam is the blight of the internet, but sometimes attempts by algorithms to prevent this stop proper email getting through.
In reply to: Topics are Responses Disconnectingok, how many are disconnected, how often is this happening?
In reply to: Delete Pluginfirst – dashboard>tools>forums>reset forums
then dashboard>plugins>bbpress>decativate and deleteIn reply to: Forum notification emails sent to “from” addressbboress notifications are sent from and to the same address, with the actual recipients being BCC’d on the email.
This is a popular way that many people send a single email without letting the recipients see each other.
You probably receive emails this way from some companies.
If you don’t want this, then use
but some hosters may limit the number of emails sent at one time – again seeing these as spam.
There is no right answer – just choose the solution that suits you.
In reply to: Registration Accountno problem 🙂
In reply to: Re-type email on bbpress registration formno problem, do come back if you need further help 🙂
In reply to: Re-type email on bbpress registration formbbpress simply uses WordPress registration and login, so any plugin that does wordpress registration will work for bbpress.
Therefore rather than trying to amend the bbpress registration, I’d probably just use a wordpress registration plugin, there are lots – just google ‘worpdress registration plugin’
this is a list of popular ones
10 Best WordPress User Registration Plugins to Power Up Your Site
dashboard>settings>forums>forum features>topic Tags and turn off
In reply to: reverted informationthat’s interesting..let us know how you progress