Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 2,301 through 2,325 (of 26,886 total)
  • Author
    Search Results
  • 2cats
    Participant

    I’m running bbPress 2.6.5 with WordPress 5.4.2, and using SendGrid to process notifications. When I check the SendGrid activity log, I see that the forum notifications, which are being sent from a “noreply@domainname” email address, are also being delivered TO that same “noreply” email address. I have searched every setting and can’t find any reason why emails would be sent to that address. Does anyone know how this could happen? My hosting company tells me this could be seen as spam, which could affect delivery. The forums are members-only so I can’t post a link. Any advice would be greatly appreciated.

    #214001
    martinrtr
    Participant

    Nice – thanks Robin – I’m just getting my mind round BBPress for the first time. In the intro blurb there was a statement along the lines of ‘BBPress is develkped by wordpress and, as such uses wordpress core for its functionality’. I read this but clearly didn’t register it!
    Thank you for you help
    Martin

    #214000
    Robin W
    Moderator

    bbpress 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

    #213999
    martinrtr
    Participant

    HI there

    I was setting up BBPress and testing ‘register’ and couldn’t figure out why i didn’t get the verification email. Then I realised I had mis-typed my email. I was therefore wondering if there was any way to add a ‘re-type’ email field to the BBpress registration form?

    WP 5.5
    BBPress 2.6.5
    Theme Groppe from Victor Themes (https://themeforest.net/item/groppe-nonprofit-wordpress-theme/20351940?gclid=EAIaIQobChMIsvqPo_Wz6wIVVrTVCh3mVQpjEAAYASAAEgKMKPD_BwE)

    Thanks
    Martin

    #213988
    uksentinel
    Participant

    Hopefully your plugin will be approved and this will ensure WordPress and BBPRESS standards are maintained 😉

    Thanks

    #213972
    uksentinel
    Participant

    There used to be a plugin called ‘bbPress Profile Link Shortcode’ created by ‘Tyler Tervooren’

    Alas this plugin is out of date, is there any equivalents ?

    bbPress Profile Link Shortcode

    #213955
    hellojesse
    Participant

    Dear @slugs,

    I am WordPress evangelist, and we want to cover as much as possible about WP.

    Main features I want to have:

    1. Activity page, like on facebook
    2. Chat
    3. Messenger for users, want push-ups
    4. Project Manager to manage any WP project.

    I will contact you if the site is ready.

    Thank you very much.

    #213953
    slugs
    Participant

    Yes, that sounds like a great site idea. I think the web is about 30% wordpress?

    #213916
    uksentinel
    Participant

    FYI – My WordPress and BBPress installations are up-to-date and I have an Icon in the Toolbar which when clicked, goes to three option (Dashboard – Change Password and Log-Out) but does not give access to users topics and post being created etc.

    If I use the Widget BBPRESS LOGIN LINKS Widgets – and click on the icon, then it gives me access to the profile details I am looking for, but I would like to use this profiles option for the menu (not wideget)

    😉

    #213893
    Robin W
    Moderator

    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

    Code Snippets

    add_filter( 'bbp_new_topic_pre_content', 'rew_strip_tags' );
    add_filter('bbp_edit_topic_pre_content', 'rew_strip_tags' );
    add_filter( 'bbp_new_reply_pre_content', 'rew_strip_tags' );
    add_filter('bbp_edit_reply_pre_content', 'rew_strip_tags' );
    
    function rew_strip_tags ($content) {
    	$content = strip_tags($content);
    return $content ;	
    }
    #213887
    ChristineZ
    Participant

    Heeelllloooo bbPress! 🙂

    This is my first time writing you and I have first say, I LOVE your plugin. GREAT job!

    I have a couple of question about the Registration page.

    Website: http://zolofly.com/register/
    WordPress Version: 5.5
    bbPress Version: 6.2.0

    1) How can extend the Profile Details … under the Account Details so that the page lays out nicely?
    Screenshot for your reference: http://prntscr.com/u36rrl … make since?

    2) How can I make some columns for the Hobbies? Rather than it just being one long row.

    3) Where can I add the Terms and Conditions next to the Privacy Policy?
    Screenshot for questions 2 and 3 for your reference: http://prntscr.com/u36tex

    That’s it and thank you so much for your support,
    Christine 🙂

    #213874
    hellojesse
    Participant

    Discuss with codex of WordPress. add_role function could help.

    #213836
    rosbiffer
    Participant

    I’ve installed bbpress on my wordpress site. On every page I have a footer supplied by the theme which displays fine, except on all my forum pages. Here it just displays as text, starting with “[vc_row full_width=”stretch_row” content_placement=”middle” etc, so all of the WPBakery markup is just showing as text. I can’t try another theme as twenty twenty doesn’t show the footer anyway!

    Any idea what I can look at? According to WhatTheFile it’s just using my theme’s page.php file

    #213730

    In reply to: Archive

    Robin W
    Moderator

    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

    Code Snippets

    add_filter( 'bbp_get_forum_archive_title', 'tcv_forum');
    
    function tcv_forum () {
    	Return 'Forum' ;
    }
    Robin W
    Moderator
    p3t3rr
    Participant

    Hi there,

    I am currently setting up a bbpress forum. This is why I post a view threads atm because I have questions. Hopefully, it’s not perceived as spam.

    I know that this is not a bbpress issue, more of a wordpress thing in general. However, I guess that most bbpress developers/admins have solved this issue – therefore I ask it here.

    I want to disable access to wordpress admin dashboard for all normal forum participants (role: subscriber/participant).

    I have done some searching and found that it could be achieved through the following custom php.

    disable wp-admin:

    // redirect back to homepage and not allow access to wp backend for subscribers
    function rkk_redirect_admin(){
    	if ( ! wp_doing_ajax() && ! current_user_can( 'edit_posts' ) ) {
            wp_redirect( site_url() );
            exit;
        }
    }
    add_action( 'admin_init', 'rkk_redirect_admin' );

    disable wp admin toolbar:

    // disable wp toolbar on the frontend of website for subscribers
    function rkk_disable_admin_bar() {
        if( ! current_user_can('edit_posts') )
            add_filter('show_admin_bar', '__return_false');
    }
    add_action( 'after_setup_theme', 'rkk_disable_admin_bar' );

    I included that code in functions.php of childtheme. However, it does not seem to have an effect. Subscriber can still access wp-admin and can see the wp toolbar in the front end.

    Anybody have a good solution for this? I don’t want to use an extra plugin for that.

    thank you for helping. best regards, peter

    #213716
    p3t3rr
    Participant

    Hi there,

    I am currently setting up a bbpress forum. This is why I post a view threads atm because I have questions. Hopefully, it’s not perceived as spam

    I noticed that new users are automatically assigned to the forum role administrator, eventhough automatic role assignment as forum admin for new users is not checked under settings > forum > user settings for forum.

    Why is this? Am I missing something?

    New users should just get the wordpress default role subscriber and forum role participant.

    Hopefully you can help. best regards, peter

    Chuckie
    Participant

    Hi Guys

    I have just added my first plugin to the WordPress Plugin Directory:

    Add AutoSave | Fullscreen to TinyMCE

    I wonder if it can be added to the list here on the site (or maybe in bbp style pack list)?

    If you have the TinyMCE toolbar activated in your bbPress forum then it should hopefully show the extra two toolbar icons as details in the description for the plugin.

    It works for me – has done so for many months. I just decided to make it available to the community and updated it to use the officially supported TinyMCE as was released with WordPress 5.5.

    I am no plugin guru by any means, if it it helps anyone then it will have served it’s purpose.

    Have a good day.

    Andrew

    #213660
    greywolfron
    Participant

    Whenever I activate bbpress on my site, my theme breaks…

    This started happening with the WordPress 5.5 Upgrade yesterday.

    If I deactivate the bbPress, then make my theme changes. Then reactivate it, all works. But I am not allowed to do ANY searchs in addplugins (Stalls) no deletes or theme page changes.

    #213658
    Robin W
    Moderator

    #bbpress-forums is the ID for forums – suggest you ask here on how to hide breadcrumb

    https://wordpress.org/support/plugin/breadcrumb-navxt/

    #213647

    In reply to: Sort topics in a Forum

    Robin W
    Moderator

    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

    Code Snippets

    add_filter('bbp_has_replies_query', 'rew_modify_replies_query');
    
    function rew_modify_replies_query($bbp_r) {
    $bbp_r['order'] = 'DESC';
    return $bbp_r;
    }
    
    add_filter('bbp_show_lead_topic', 'rew_show_lead_topic');
    
    function rew_show_lead_topic () {
    	return true ;
    }
    #213640

    In reply to: Sort topics in a Forum

    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>topic order

    #213629
    greywolfron
    Participant

    I would like to know how to make bbpress show the username on the posts instead of the Users First and Last name.

    Wordpress 5.5 with bbpress 2.6.5

    Robin W
    Moderator

    if you want anyone to be able to register for the forums, yes you do, and if you do then yes anyone can register, wordpress and bbpress use the same userdatabase.

    Otherwise, you are looking at a manual registration system, which is quite easy to do, just use one of the many form plugins available – contact form 7 (and add the flamingo plugin) is very popular, and add users.

    or if it is bots registering, use one of the many anti bot plugins available eg captcha to prevent bots registering.

    KenTheriot
    Participant

    Does the “anyone Can Register” option in WordPress Settings need to be enabled/checked in order for someone to sign up for the forums on my site? I have been leaving that enabled but now I have like 10,000 subscribers on my site! If people can register for the Forums without my having to enable that, it would help.

    Thanks!

Viewing 25 results - 2,301 through 2,325 (of 26,886 total)
Skip to toolbar