Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 1,601 through 1,625 (of 64,454 total)
  • Author
    Search Results
  • #233528
    Robin W
    Moderator

    ok, that’s not a bbpress function.

    It might well be an additional bbpress related plugin, what related plugins do you have ?

    #233525
    Martin
    Participant

    Hi all,

    I would be happy if someone from the development team would help me out.

    We have been running the forum for five years. This is happening for the first time:

    Suddenly a user’s thread appeared twice. After reading both threads, the dot for ‘new thread/response’ remaained for one.

    Even when I deleted both threads, the point remained for the forum and its parent.

    How to solve this directly in the database please? Which table and how to find this entry?

    Thanks for your help
    Martin

    (bbPress version 2.5.14 wp version 6.1.1)

    #233499
    izzi8181
    Participant

    New user, first post 🙂 I am using the Reign theme by WBCom, and I really like it, except for the layout of the BBPress forum index page, and the topic page. I’d really rather not have to switch to a new theme (already paid for Reign, don’t want to pay for another theme!) so I’d like to see if I can alter it myself to get what I want.

    Some general info: I taught myself html back in the 90s, so I’m OK with html and css, but I never got as far as php. However I can probably grasp the basics.

    I tried out the Youzify plugin and it does a lot of the layout styling that I want, but changes other things that I don’t want. Would it be possible to use the code from this to guide me to make the alterations I want?

    I’m stuck at the start: which file/s would I find the layouts? (css is about styling, I’m looking for table structure, where information is displayed, that sort of thing).

    Thanks!

    #233454
    Robin W
    Moderator

    I’m just a guy sat in his kitchen trying to help others – I’m not a bbpress author – I do plenty for free – just look through the posts 🙂

    but this one would need a bunch of work.

    contact me via :

    Contact me

    #233447

    In reply to: bbPress + Elementor

    DeepBlue
    Participant

    For those who would look for this here is the best solution for Elementor theme builder (after lots of testing) :

    include : Forums > all

    and then you just need to add your categories (not forums, just categories, as forums belong to categories)
    include : Any child of > category 1
    include : Any child of > category 2
    include : Any child of > category 3

    that’s it, your theme builder template will now apply to your bbpress forum

    #233446
    dasword
    Blocked

    Thanks, how about see only author function (specific user reply filter), my blog subscribers very like to create long story(novel) in the forum under a topic, but they will split those stories into many chapters as update, for example, one of them post one chapter once a week, when he posted a chapter, there are many comments. I would like a function that can filter specific user reply under a topic, so reader can see the full story more clearly. Is there anywhere to add these this function to bbpress forum? Either Plugin or filter hook code or other codes, cherish your replies.

    enkoes
    Participant

    Hi, good days!

    I wish to hide the message “You must be logged in to create new topics” in ONE of my forum. But leaving other forums UNTOUCHED.

    Reason is that this particular forum is set as a private forum. Participants are not allowed to create new topics (but only can view its content) even though they log in. So this message looks a bit misleading for them.

    I already created a BBpress child theme. Pls show me how to do this. Thanks!

    #233441
    dasword
    Blocked

    I’m here for looking 2 functionalities for bbpress. First of them is quote, it is quite common function I think, if you click the quote function under the reply, it will copy the whole thing of the reply and paste in your textarea, this make people easy to deal with complicated answer sometimes. Second is see only author function, my blog subscribers very like to create long story(novel) in the forum under a topic, but they will split those stories into many chapters as update, for example, one of them post one chapter once a week, when he posted a chapter, there are many comments. I would like a function that can filter specific user reply under a topic, so reader can see the full story more clearly. Is there anywhere to add these 2 functions to bbpress forum? Either Plugin or filter hook code or other codes, thx for helping.

    #233429
    #233427

    In reply to: Forum load upon login

    Robin W
    Moderator
    #233424

    In reply to: Forum load upon login

    Robin W
    Moderator

    looking at the login link, I’d guess you are using

    bbPress Login Register Links On Forum Topic Pages

    so it would be a setting in there.

    #233423
    Robin W
    Moderator
    /*BBPRESS Favourite Filter*/
    function rkk_subscribe_link($args) {
      $args['favorite'] = esc_html__( 'Favourite',   'rkk' );
     $args['favorited'] = esc_html__( 'Unfavourite',   'rkk' );
      return $args;
    }
    add_filter('bbp_before_get_topic_favorite_link_parse_args', 'rkk_subscribe_link' );	
    #233420
    Robin W
    Moderator

    $args['Favorite'] should be$args['favorite'] no capital F !

    so

    /*BBPRESS Favourite Filter*/
    function rkk_subscribe_link($args) {
      $args['favorite'] = esc_html__( 'Favourite',   'rkk' );
     $args['favorited'] = esc_html__( 'Unfavourite',   'rkk' );
      return $args;
    }
    add_filter('bbp_before_get_topic_favorite_link_parse_args', 'rkk_subscribe_link' );	
    #233417

    Topic: bbPress & ProfileGrid

    in forum Plugins
    duckeroo
    Participant

    Hello there,

    is there a possibility to map bbPress User Roles to ProfileGrid User Groups? I’d like everyone who signs up for ProfileGrid User Group A to have the capabilites of bbPress User Role 1 and everyone who signs up fpr ProfileGrid User Group B to have the capabilites of bbPress User Role 2. How can I achieve this?

    Thank you in advance!

    #233411
    Robin W
    Moderator

    wp-content/themes/%your-theme-name%/bbpress/content-single-topic.php

    #233410
    Eliyahna
    Participant

    @terriswiatekyahoocom What is method of placing the content-single-topic.php file in the child theme folder? I put it directly with no result. I created /childtheme/plugins/bbpress/templates/default/bbpress/ and placed it in there with no results also.

    I finally put it in the parent theme folder and it works but I know this will get overwritten with updates…

    #233408
    giggioman00
    Participant

    Hi
    I have made a like button plugin that allows the ursers to like posts in my website, and then the ID of the liked post is stored in the database.
    Now I would like to edit the profile page of each users in bbpress and add a voice where they can see all the posts they liked on the main site under their bbpress profile.

    Is this possible to do and where can I edit the profile?

    #233407
    areynoldsskm
    Participant

    Hey all, need some help with changing the favorite button text to Favourite (Canadian Spelling)

    So far I’ve tried:
    Switching to Canadian English in WP core, dosent change the button

    Js find and replace, has a visible delay

    functions.php code per this topic: https://bbpress.org/forums/topic/change-text-in-bbpress-subscribe-favorite-reply/

    /*BBPRESS Favourite Filter*/
    function rkk_subscribe_link() {
      $args['Favorite'] = esc_html__( 'Favourite',   'rkk' );
      return $args;
    }
     add_filter('bbp_before_get_topic_favorite_link_parse_args', 'rkk_subscribe_link' );
    

    Anyone able to change this?

    #233400
    Robin W
    Moderator

    example for loop single repy:

    find
    wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.php

    transfer this to your pc and edit

    and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/loop-single-reply.php

    bbPress will now use this template instead of the original

    Robin W
    Moderator

    it is not very clear (I’m not a bbpress author), but the ‘stick (to front)’ is actually 2 links, if you click the ‘stick’ part it makes it sticky, if you click the ‘(to front)’ part it makes it super sticky.

    ewd910
    Participant

    Hi, this is a bit of an odd problem, but a forum admin stickied a post in a private forum (clicking “sticky” in the top right, not from wp-admin) and it moved the topic to an unrelated public forum, which is a problem of course because the topic was meant to be private. Sounds like a bug in bbpress, has anyone else come across this?

    #233344
    Robin W
    Moderator

    wordpress and bbpress registration do not have a password option or Detalles del perfil, so the layout is not from worpdress or bbpress.

    It may be your social login is doing this, so layout would be with that.

    #233343

    In reply to: Youtube Embed

    ibnat
    Participant

    Hi all, I have the astra theme as well and youtube won’t embed at all in bbpress forums. (I have the embed option set in bbpress admin)

    I have tried using various URLs from you tube to no avail…. Examples here: https://iberianatureforum.com/forums/topic/the-wildside-holidays-you-tube-channel/

    regards, 🙂

    #233342
    principiante
    Participant

    Hi Robin,
    Don’t Understand what exactly do you mean with “bbpress or wordpress registration”.
    I’m using miniOrange social login for users that want to login with their google or facebook account.
    I’m login to wordpress as admin, from wp-admin.
    How can I check that?
    If I disable some possible “conflict” plugin, layout will change?!
    Thank you!

    #233341
    Robin W
    Moderator

    you are not using the bbpress registration, or wordpress one, so you have something some custom registration maybe using your theme or a plugin

Viewing 25 results - 1,601 through 1,625 (of 64,454 total)
Skip to toolbar