Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 976 through 1,000 (of 32,431 total)
  • Author
    Search Results
  • #232017
    erossini
    Participant

    In my WordPress website, I added bbPress. When you are in the forum in the section _Support_ and you open a topic, you see this

    In my point of view, the user experience is not great because the user doesn’t know where he or she is. I like to add a full breadcrumb like

    > Forum > Support > Test video

    How can I add this?

    #231983
    Robin W
    Moderator

    following closure of the ‘bbPress – Moderation Tools’ plugin, I added this code to my style pack plugin

    bbp style pack

    once activated you’ll find the moderation tools in

    dashboard>settings>forums

    #231875
    Robin W
    Moderator

    thanks,

    The best I can do is

    .cnt article ul li:before {
     display: none !important ;
    }

    but this will I think take bullet points out everywhere, including your main site.

    #231873
    Robin W
    Moderator

    is that code still in ?

    #231872
    dillonleo
    Participant

    I had a feeling my theme was causing it. I tried inserting that code into my site’s custom css, but unfortunately the bullets are still showing up.

    #231870
    Robin W
    Moderator

    your trheme is adding this – try

    #bbpress article ul li:before {
     display: none;
    }
    #231867
    dillonleo
    Participant

    The page on my forum is full of list bullets. (https://www.turtleholic.com/forums/forum/turtle-questions/)

    Does anyone know how to fix this? I was able to add the following CSS code to the main Forum page (https://www.turtleholic.com/turtleholic-forum/), which removed the bullets from that page. But on the specific forum pages I don’t know how to add custom CSS.

    ul ul li:before {
    display: none;
    }

    ul li:before {
    display: none;
    }

    #231866
    Devcr3
    Participant

    @robin-w I installed the plugin, then I entered the code (mentioned above) in the code php section of the plugin .. in the end I saved. Now I wait 1 hour and see if it works

    #231859
    Robin W
    Moderator

    that’s basically the code which can be added to a functions file, or using

    Code Snippets

    #231847
    Mike Witt
    Participant

    I tried the code on a test site and it appeared to work.
    I updated the Track ticket.

    #231829
    Mike Witt
    Participant

    Hi@dimitri333

    Take a look at:

    identify user with @

    Regarding the (unofficial) code:

    bbp Mentions Suggest

    However, I think that you would have to add BuddyPress to your site to get this working. So it might not help you. I don’t think there’s anything you can do with bbPress alone.

    #231828
    Devcr3
    Participant

    I only use bbpress and no buddypress, is there a code or plugin for bbpress? TY❤️‍🔥

    #231827
    Devcr3
    Participant

    register_activation_hook(FILE, ‘bbpress_topic_scheduler’);

    add_action(‘bbpress_daily_event’, ‘bbpress_close_old_topics’);

    function bbpress_topic_scheduler() {
    wp_schedule_event(time(), ‘daily’, ‘bbpress_daily_event’);
    }

    function bbpress_close_old_topics() {
    // Auto close old topics
    $topics_query = array(
    ‘author’ => 0,
    ‘show_stickies’ => false,
    ‘parent_forum’ => ‘any’,
    ‘post_status’ => ‘publish’,
    ‘posts_per_page’ => -1
    );
    if ( bbp_has_topics( $topics_query ) )
    while( bbp_topics() ) {
    bbp_the_topic();
    $topic_id = bbp_get_topic_id();
    $topic_date = strtotime( get_post( $topic_id, ‘post_date’, true ) );
    $forum_id = bbp_get_topic_forum_id($topic_id);
    if ($topic_date < strtotime( ‘-5 hours’) && $forum_id == 9547 )
    bbp_close_topic( $topic_id );
    }
    }

    Ps: code add to functions.php

    #231801
    Robin W
    Moderator

    the code above should still be fine, I presume you have changed the

    && $forum_id == 1276

    to the correct forum number?

    #231751
    Mike Witt
    Participant

    In the BuddyPress profile bbPress subscriptions are listed. With each subscription there a little icon that looks something like [x]. It *appears* that this is intended to be used to cancel a subscription, but when you click on it nothing happens.

    I’m a bit confused about where these bbP subscriptions in the BP profile come from. In otherwords I don’t know if they come from BP or bbP. I assumed it was BP but the BuddyPress people don’t seem to know what I’m talking about.

    The [x] icon appears to take you to a path that looks like this:

    https://mikeandtina.org/members/mike/forums/subscriptions/?action=bbp_unsubscribe&object_id=357&object_type=post&redirect_to=https%3A%2F%2Fmikeandtina.org%2Fmembers%2Fmike%2Fforums%2Fsubscriptions%2F&_wpnonce=37ad0686dc

    So now I’m wondering of bbPress puts info about subscription on the BuddyPress profile, or if something else entirely is going on. If anyone can shed any light on this I’d appreciate it.

    Mike

    #231750
    Robin W
    Moderator

    I have not tried it in cron, but a call to the function below should work

    bbp_admin_repair_forum_reply_count()

    and/or

    bbp_admin_repair_topic_reply_count()

    #231742
    Robin W
    Moderator

    Sorry, all of bbpress works on topics belonging to forums.

    you can have just one forum, and then have your ‘forum’ page with a shortcode of topics using

    [bbp-single-forum id=$forum_id] – Display a single forums topics. eg. [bbp-single-forum id=32]

    #231612

    In reply to: How to intergrate

    Robin W
    Moderator

    just install bbpress and follow the installation guide

    Step by step guide to setting up a bbPress forum – Part 1

    #231164
    Sandra Boulou
    Participant

    Hi,
    I would like to show in a page forum, my forums, members, subjects, answers… I can not arrive to see a shortcode
    I have the last version of bbPress and WP members
    Thanks for your help,
    Best regards

    #231067
    mrentropy
    Participant

    Actually, in my case, the issue was that I was overriding the theme files and had removed this span. <span class="bbp-row-actions">. bbPress must try ajax first, and if it fails, just redirect the page — and the JavaScript logic must look for that class name? Adding the span back, made the page behave as desired.

    #231065
    milfuegos
    Participant

    Hi
    wordpress 6..0.2
    bbpress 2.6.9

    i want to let users edit their avatar with the Basic User Avatars plugin
    i want to be edited in the profile edit page
    forums/user/name/edit/
    i tried to write this:
    <?php echo do_shortcode(“[basic-user-avatars]”); ?>
    in TEMPLATES/DEFAULT/EXTRAS/SINGLE-USER-EDIT.PHP
    dont work
    how can i do then
    thanks
    regards

    #231064
    milfuegos
    Participant

    wordpress 6..0.2
    bbpress 2.6.9

    Topic de prueba en CONSULTA DE REGLAS


    Theme Avada
    Hi
    In replies, does not show any bbcodes toolbar as i thought it did.
    Installed gdtools and gd attackment
    How can i offer a toolbar for users?
    for bbcodes or format and embeds
    thanks
    Regards

    #230920
    crugman
    Participant

    Hello,

    I have just installed the latest version of bbPress, but on the forums page, I am seeing the following errors. The ‘Registered Users’ and ‘Forums’ part seems fine but the rest are not.
    Screenshot

    Here is the code from that section of the file:

    <dt><?php esc_html_e( 'Forums', 'bbpress' ); ?></dt>
    	<dd>
    		<strong><?php echo esc_html( $stats['forum_count'] ); ?></strong>
    	</dd>
    
    	<dt><?php esc_html_e( 'Topics', 'bbpress' ); ?></dt>
    	<dd>
    		<strong><?php echo esc_html( $stats['topic_count'] ); ?></strong>
    	</dd>
    
    	<dt><?php esc_html_e( 'Replies', 'bbpress' ); ?></dt>
    	<dd>
    		<strong><?php echo esc_html( $stats['reply_count'] ); ?></strong>
    	</dd>
    
    	<dt><?php esc_html_e( 'Topic Tags', 'bbpress' ); ?></dt>
    	<dd>
    		<strong><?php echo esc_html( $stats['topic_tag_count'] ); ?></strong>
    	</dd>
    
    #230861
    wegweiser98
    Participant

    Hi there,

    i’ve got a Problem with my bbpress forum.
    When I want to view a topic in the Frontend, then i stare at a blank page
    After creating a new WordPress site and using the shortcode “[bbp-single-topic id=$topic_id]” it works.
    So I can only view the Topic after creating a WordPress page for it.

    Is there a Way WordPress creates automatic a Page for a new Topic, with the necessary Shortcode?
    Maybe there is another solution for my problem.

    I look forward to your replies and thank you in advance 🙂

    #230717
    harryz808
    Participant

    Aloha. Somehow my installation of bbpress is mucked up big time. There are two of us who are WP administrators, but neither one is a ‘keymaster’, so we can’t do much. Right now we have no data / forums we wish to preserve, so a complete delete and reinstall would hopefully be the quickest and easiest way to move forward.

    I’ve found this article on how to delete bbpress, but step two is: Go to Tools > Forums > Reset Forums. When I go to ‘Tools’ there is no link to Forums, so I can’t do this step. I’m guessing this is related to the fact that neither one of us is a keymaster and I have no idea how to restore keymaster permissions

    Any help would be greatly appreciated.

    Mahalo,

    Harry Z

Viewing 25 results - 976 through 1,000 (of 32,431 total)
Skip to toolbar