Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 6,301 through 6,325 (of 64,452 total)
  • Author
    Search Results
  • #198608
    shibaa987
    Participant

    Well, this thread is pretty old and I have a way how you can enable AMP for bbpress pages.

    Before going to enable AMP support you need below things:
    – Code snippets plugin
    – AMP plugin

    Create a new code snippet and add the following code:
    add_action( ‘amp_init’, ‘amp_bbpress_init’ );
    function amp_bbpress_init() {
    add_post_type_support( ‘topic’, AMP_QUERY_VAR );
    }

    Read more @ How to Implement AMP on bbPress

    #198605
    Robin W
    Moderator

    if the forum is set as private, then you will not see topics or replies in the profile for that forum unless logged in.

    what theme and other bbpress related plugins are you running?

    #198603
    oskarlin
    Participant

    If I’m not logged in to my bbpress forum I can’t see any posts or forums at all which is exactly how I want it to be. But what I can do is see each users profile and his/hers answers on the page of each user:

    /forums/users/myname/replies/

    …even though I’m not logged in.

    Is this a bug or is there a setting I’ve missed out?

    #198593
    developer210
    Participant

    Hello,
    I already setup a yoast seo pro plugin on my site. now i install and activate bbpress on my site but i am not able to see forum and topic menu in wp-admibn section can you please help me on this.

    We are getting notification from yoast seo.
    We’ve recently improved the functionality of the Search Appearance settings. Unfortunately, we’ve discovered that for some edge-cases, saving the settings for specific post type archives might have gone wrong.

    Please check the archive templates for the following content types: forum, topic.

    #198587
    Robin W
    Moderator

    That looks like an issue with the bbp-messages plugin, which is not part of bbpress, you’ll need to post on their forum

    https://wordpress.org/support/plugin/bbp-messages/

    #198578
    notrandom
    Participant

    Hi

    Im using bbpress with bbp-messages, but the text window on the “send message” is very small. In chrome i can drag it bigger, but i want it to be bigger from standard. Can anybody tell me how to do that ?

    View post on imgur.com

    #198569
    Oaz
    Participant

    Hello there,

    I have a problem with pasting links in new topics : they do not display. (They do display normall in replies though)

    This is due to trying to inverse order of replies : I used bbpress toolkit for that purpose and the problem happened.
    I also tried inverting replies order with this snippet in functions.php file :

    function custom_bbp_has_replies() {
    $args[‘order’] = ‘DESC’; // ‘ASC’ (Ascending, Default), ‘DESC’ (Descending)

    return $args;
    }

    add_filter(‘bbp_before_has_replies_parse_args’, ‘custom_bbp_has_replies’ );

    function custom_bbp_show_lead_topic( $show_lead ) {
    $show_lead[] = ‘true’;
    return $show_lead;
    }

    add_filter(‘bbp_show_lead_topic’, ‘custom_bbp_show_lead_topic’ );

    the snippet works as far as replies rder is concerned, but then I bump in the same problem, links not displaying in new topics.

    Any clue how to invert replies order without this link issue ?

    thanks

    #198559

    In reply to: Kunena 5 to bbpress

    pgrice
    Participant

    Not sure what “BBimport” is but I figure it’s the built in importer. As one might expect, I had no success with the v3 importer on Kunena v5.

    Any guidance? Not sure how chris72a had success.

    Any plans to write a Kunena v5 importer (I *hate* Kunena and Joomla, and *love* WP and bbPress!)

    #198553
    Robin W
    Moderator

    by default bbpress send one email to the noreply address and bcc’s in the subscibers, so only one email sent.

    code to change

    add_filter ('bbp_get_do_not_reply_address', 'rew_no_reply') ;
    
    function rew_no_reply ($no_reply) {
    	$no_reply = abc@def.com ;
    return $no_reply ;
    }

    You’d think the bbpress coders would have created setting for this by now

    the bbpress coders are busy people who can code what they wish to. Not up to us to criticise free software

    #198552
    rhodesengr
    Participant

    ok. thanks. What are “individual emails”

    Also, is there a reference to how to change the code? I would like to consider that option.

    I searched and found some other threads about this issue. One was from 2016. You’d think the bbpress coders would have created setting for this by now. Seems a lot of plugins have problems if you don’t have an enmail address with the website domain but it is very commone to use the built in system, your own pop, or gmail. Then the noreply@yourdomain.com is invalid. Common and forseeable.

    #198551
    Robin W
    Moderator

    too longer a list for free help from me I’m afraid, but you will probably need my private groups plugin

    Private groups

    briefly – for master think category, then forums as ‘sub forums’ , threads (nested) are in the bbpress plugin, email per forum post – yes the rest is a mixture of easily doable and a some custom work.

    contact me via

    http://www.rewweb.co.uk/contact-me/ if you want further help

    #198550
    Robin W
    Moderator

    bbpress sends an email to the noreply address and bcc’s in the intended recipients.

    2 solutions

    1. my style pack plugin lets you amend the ‘to’ address (see email subscriptions tab), or you can do this with code, and amend it to a real address on your website.

    bbp style pack


    2.switch to individual emails – this plugin does that https://wordpress.org/plugins/asyncronous-bbpress-subscriptions

    #198549
    rhodesengr
    Participant

    When someone creates a post, the site sends an email to the site’s correct gmail address, the poster , and also “noreply@my-site.com” The emails to “noreply” bounce and gmail gives me repeated notifications of delivery problem because there is no such address.

    I can’t figure out where these email are coming from and how to stop sending the notification to the “noreply” address. I don’t see a setting in the bbpress setting about email notifications.

    #198548
    PDidee
    Participant

    I was wondering if it’s possible to set up master forums with bbPress. We have a client that has a courses site and would like to setup forums for each course. So this page for example: http://mbmembers.staging.wpengine.com/community-forum/ would be one of multiple “master” forums.

    Other items they are looking to implement that may or may not be available through this plugin include:

    • different master forums for different courses on site as mentioned above
    • each master forum has sub-forums, then threads
    • on threads, responses to topic or other responses get nested (saw this as an option and have it enabled but I’m not seeing the replies indented at the moment on the test link above)
    • option for people to receive an email per forum post, or a daily digest per that sub-forum
    • ability to turn email for each sub-forum on/off – or switch to daily digest vs. individual posts
    • exception is Announcements sub-forum – everyone should be automatically subscribed to individual messages email, can change to daily digest, but users CANNOT turn off emails for this sub-forum
    • note: it may be wise to have a spot on the My Account page (a tab?) where users can edit their email preferences for all the forums at once
    • only admins can start new threads in Announcements sub-forum; other forums anyone can start a new thread
    • we are creating a participant directory — the front-end needs to have links to for users to view a participant’s forum posts, or the forum threads they’ve started (currently, these are two separate links)

    Any help or info you can provide would be super appreciated.

    #198547
    hamchon
    Participant

    Hello, I have a problem with the forum on my site. We created a forum with bbpress a year ago, we created categories, forums and sub sections without problem. But today, I want to create new sub sections or modify them but I can not choose a “parent” as a forum attribute. I select it, I update it, but it does not apply to me and create a new forum / category.

    Example: I have category “Welcome”, in forum “presentation”, sub section “major” / “minor”. => Welcome / Presentation / Major (or) Minor
    If I want to change “major”, it will put me in a new category that will be called automatically “forum” and I would have: Forum / Major, and below “Welcome / presentation / etc”.

    Why is he adding a new forum?

    I’m French, sorry for this translate.

    Bonjour, j’ai un soucis avec le forum sur mon site. Nous avons créer un forum avec bbpress il y a un an, nous avons créer des catégories, des forum et sous sections sans problème. Mais aujourd’hui, je veux créer de nouvelles sous sections ou modifier celles-ci mais je ne parviens pas a choisir un “parent” en attribut de forum. Je le selectionne, je met à jour, mais il ne me l’applique pas et me créer un nouveau forum/catégorie.

    Exemple : I have catégorie “Bienvenue”, dedans forum “présentation”, sous section “majeur”/”mineur”. => Bienvenue/présentation/majeur(ou)Mineur
    Si je veux modifier “majeur”, il va me le mettre dans une nouvelle catégorie qui va s’appeler automatiquement “forum” et j’aurais donc : Forum/Majeur, et en dessous “Welcome/presentation/etc”.

    Pourquoi est-ce qu’il m’ajoute un nouveau forum?

    manuuu1127
    Participant

    I looked through all the entries and didn’t find the answer. Maybe if someone else goes searching they will see my answer.

    If you remove the sidebar and change your page to full-width it won’t work…buttt if you create a new page and set it as full width and then put the bbpress code into it, it will go full width. My only thing now is I will probably install a plug in to put sidebars where I want them

    #198522
    Robin W
    Moderator

    bbpress uses the wordpress moderation and blacklists

    dashboard>settings>discussion

    #198455
    Eupher
    Participant

    Wordpress 5.0.3
    bbpress 2.5.14

    Home

    Some users are able to create topics and posts, and also reply to posts. One user in particular gets the “ERROR: Your topic (or reply, depending) cannot be created at this time.”

    All plugs except the bbpress plugin and the bbpress tweak plugin were deactivated then I logged in under the user’s name. The problem remained.

    The Comment Blacklist under Dashboard\Settings\Discussion is totally blank. No naughty words in there.

    There are no “groups” as such. All users are veterans and members of this organization. No need for additional “groups”.

    I created a dummy account under my wife’s username, email, and a password and that works fine. She can create topics and replies. Other users don’t have an issue.

    I am not able to replicate this problem anywhere – only with the user DickB. (His user name was originally “Dick_Bartlett” but I got rid of the underscore thinking that might be a problem.)

    I have reviewed as many bbpress articles as I could find on this issue.

    I’ve run out of ideas, and there don’t appear to be any more answers to this problem that I’ve been able to find.

    So I’m turning to you experts to figure out how to get this user on track.

    #198454
    peterbergen84
    Participant

    Hi,

    I am new with setting up a forum for wordpress.
    I want to integrate BBPress with my website but i dont know if the theme supports it.

    Anyone who has time to set this up ?

    Thanks

    Peter

    #198451
    Bendis
    Participant

    WordPress Version 4.9.9 bbPress version 2.5.14 Using theme Twenty-Sixteen https://applebranch.org/seminary I have a lot of forums – one for every class I offer in my online school. However on the main page where students access the current forum for their class – it only shows forums through the first forum beginning with R (listed alphabetically). This is a recent development. I have looked at the set ups and settings and cannot find a reason. Is there a limit to the number of forums? If not, how can I get them all to show? Thank you.

    #198450
    Robin W
    Moderator

    I’d suggest you do this as follows:

    there is a ‘hook’ that you show above called ‘<?php do_action( ‘bbp_template_before_single_topic’ ); ?>’

    This tells bbpress to do any action that is added at that point.

    so adding a hook will mean that the function is called at that point.

    The following code should go in your child theme functions file, or use the code snippets plugin

    Code Snippets

    add_action ( 'bbp_template_before_single_topic' , 'rew_back' ); 
    
    function rew_back () {
    	$text = 'click to go back' ;
    	if (bbp_get_topic_forum_id() == '25') $href = home_url( '/forum/domestics/' ) ;
    	if (bbp_get_topic_forum_id() == '33') $href = home_url( '/forum/commercial/' ) ;
    		//where to go if page not there
    	else $href = home_url( '/login/' ) ;
    	echo '<a class="button" href ="'.$href.'">'.$text.'</a>' ;
    }

    so each forum will need a line.

    #198441
    joeco
    Participant

    I followed the js fix from here: https://bbpress.org/forums/topic/threaded-replies-not-working/

    didn’t work

    #198428
    Robin W
    Moderator

    you must have an additional plugin that is moderating posts, bbpress just publishes

    #198427
    joeco
    Participant

    Uncaught ReferenceError: addReply is not defined
    at HTMLAnchorElement.onclick (VM383:663)
    onclick @ VM383:663

    RE: https://pulmonaryfibrosisnews.com/forums/forums/reply/16590/?bbp_reply_to=16590&_wpnonce=bcec251f8f#new-post

    using BBpress Version 2.5.14
    buddypresss Version 4.1.0
    WP 5.0.3

    on ubuntu DO server, nginx, mariaDB

    #198389
    Michael
    Participant

    Hello,

    I’ve been having issues with breadcrumbs, and gone through various mechanisms to get them working efficiently with no joy.

    My needs are simple, so looking to create a simple button in my single topic template to go back to the forum the topic is a part of.

    Can anyone suggest the best URL and code to use?

    / Background:

    – I have created multiple single forums
    – I have then created multiple WP pages, and used the single forum shortcode to embed the forum in the page
    – I’d like to include one button at the top of the topic, that simply takes the user back to the relevant page that is hosting that particular forum (not the bbP forum page)

    / Location of code:

    I am guessing (non-coder) that the best location for this code would be as follows (within content-single-topic.php). Is this correct? (see code below)


    <?php

    /**
    * Single Topic Content Part
    *
    * @package bbPress
    * @subpackage Theme
    */

    ?>

    /* BUTTON HERE */

    <div id="bbpress-forums">

    <?php bbp_breadcrumb(); ?>

    <?php do_action( 'bbp_template_before_single_topic' ); ?>

    Cheers,

    Michael

Viewing 25 results - 6,301 through 6,325 (of 64,452 total)
Skip to toolbar