Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 3,001 through 3,025 (of 26,834 total)
  • Author
    Search Results
  • #203327
    hashtagtrends
    Participant

    Hi. What is the expected timing for 2.6?

    I recently installed BBPress and was surprised the latest version for installation was 2.5.14. I also get a notice that the plugin “has not been tested with your current version of WordPress.”

    Performance/speed is important to me, and last I looked into it 2.6 was supposed to be a big improvement.

    #203325
    RedPrez16
    Participant

    WordPress version is 5.2.3
    bbPress version is 2.5.14

    Hello,
    I am having a problem with bbPress. When I go to my forum, my welcome page is in that path. Like it is Welcome > Forum > Forum topic. I do not want my welcome page to be there. I have included a screenshot that will show what I am talking about. If someone can help me out here, that would be awesome.

    Thank you in advanced!
    Red Prez

    #203307
    shughey
    Participant

    How do I set my bbPress forums page as my home page in WordPress?

    #203243
    Robin W
    Moderator

    bbpress expects to see a wordpress user, and if you current app doesn’t do that, then bbpress won’t work – it is hooked at every turn to user_id in wordpress.

    best I can offer is

    Login with Salesforce

    #203211
    overdriver
    Participant

    Hello,

    my bbpress version is 2.5.14
    Wordpress version is 5.2.3

    When a topic is created in a single forum, that topic is also displayed in all other forums aswell. So all forums include all the topics. How can I fix it?

    I would add the website link, but under construction mode enabled so not accessible

    #203203
    kbrennemaneab
    Participant

    Thanks Robin, however we don’t use WordPress users for authentication. User management is handled outside WordPress and managed through a session cookie. I’m just wondering if anyone has had any experience with this type of setup, maybe using a hook that checks for preexisting authentication. Thanks.

    #203183
    yaragad
    Participant

    Thanks, i will try but it will take me a bit, as I need to understand/google some things.

    Meanwhile, maybe it is easier if it is possible to use an icon instead. Like this:
    https://wordpress.org/support/plugin/bbpress/

    #203157
    Robin W
    Moderator

    bbpress just uses wordpress user, so if your site authenticates to WP, then bbpress will work fine

    #203149
    Robin W
    Moderator

    Try this :

    Put this in your child theme’s function file – or use

    Code Snippets

    /This function changes the text wherever it is quoted
    function change_translate_text( $translated_text ) {
    	if ( $translated_text == 'Publicaciones' ) {
    	$translated_text = 'Mensajes';
    	}
    	return $translated_text;
    }
    add_filter( 'gettext', 'change_translate_text', 20 );

    If that doesn’t work try

    /This function changes the text wherever it is quoted
    function change_translate_text( $translated_text ) {
    	if ( $translated_text == 'Posts' ) {
    	$translated_text = 'Mensajes';
    	}
    	return $translated_text;
    }
    add_filter( 'gettext', 'change_translate_text', 20 );
    #203118
    Kunu KD
    Participant

    I have tried deactivating memberpress to see if there was interference with that plugin, but that isn’t showing anything either. Does anyone have any suggestions?

    #203110
    Robin W
    Moderator

    if you have a caching plugin, or your hoster uses caching, then this can prevent the pages from updating.

    see this article

    https://antonyagnel.com/what-is-wordpress-caching/

    #203061
    shasartech
    Participant

    Other question, assigning a forum moderator to a forum (subforum not category) doesn’t seem to work. I assigned a user by his WordPress Username.

    #203034
    Robin W
    Moderator

    Put this in your child theme’s function file – or use

    Code Snippets

    /This function changes the text wherever it is quoted
    function change_translate_text( $translated_text ) {
    	if ( $translated_text == 'old text' ) {
    	$translated_text = 'new text';
    	}
    	return $translated_text;
    }

    and change ‘old text’ to what you want to change, and ‘new text’ to what you want it changed to

    #203003
    hbcreations
    Participant

    So 0 settings have been edited, 0 forums created. It’s essentially freshly installed on wordpress. When I click the forums link on the wordpress admin controls page, a 403 forbidden error pops up.

    I have tried deactivating memberpress to see if there was interference with that plugin, but that isn’t showing anything either. Does anyone have any suggestions?

    #203001
    naderi9
    Participant

    Hi, first of all sorry for my poor english!!
    I recently installed bbpress on my wordpress site.. now I have a question
    I have 5 topic in my forum and I want to send each topic notification to one user, for example:
    topic 1 -> send notification email to mail1 @ site.com (or user 1)
    topic 2 -> send notification email to mail2 @ site.com (or user 2)
    and so on ..
    how can I do it?

    #202995

    In reply to: restrict rights

    Robin W
    Moderator
    renzopalacios
    Participant

    It’s been almost 2 years, but I wanted to post my reply anyway because I think it can help someone.

    Following @mikecostanzo insights, I built these SQL queries which repopulates the missing post_parent values successfully. Doing this a forum is reconnected with its topics, and topics are reconnected with its replies.

    Remember that first, you need to import the forum, topics, and replies using WordPress importer. These actions import as well the involved users.

    I applied this solution for a single forum but it can be used as a starting point modifying some parameters if required:

    For topics:
    UPDATE
    wpmd_posts
    INNER JOIN (wpmd_postmeta) ON (wpmd_posts.ID = wpmd_postmeta.post_id AND wpmd_postmeta.meta_key = ‘_bbp_forum_id’)
    SET
    wpmd_posts.post_parent = wpmd_postmeta.meta_value
    WHERE
    wpmd_posts.post_type LIKE ‘topic’

    For Replies:

    UPDATE
    wpmd_posts
    INNER JOIN (wpmd_postmeta) ON (wpmd_posts.ID = wpmd_postmeta.post_id AND wpmd_postmeta.meta_key = ‘_bbp_topic_id’)
    SET
    wpmd_posts.post_parent = wpmd_postmeta.meta_value
    WHERE
    wpmd_posts.post_type LIKE ‘reply’

    #202898
    Robin W
    Moderator
    #202897
    fawp
    Participant

    Hi everybody, first-time poster here.

    I have just installed WP and bbPress on a local host to evaluate the forum functionality.

    I added a couple of forums just to see what they would look like and the default view looks really, really small and unnatural.

    This weird forum view is substantially the same even if I switch to a different default theme.

    I could not find any tools at a glance to increase the font size for instance.

    Is this simply the way a default bbForum install is supposed to look like and do I need to install additional plugins to customize its view, or is it more likely that something went wrong during my install?

    Since I can’t seem able to upload an image here to illustrate, I have uploaded one on ImgBB, here is the link Screenshot

    Edit: screenshot is at https://ibb.co/X8dsH7S

    My versions:
    WordPress 5.2.2
    bbPress 2.5.14

    It’s on a local Ubuntu installation.

    Thank you

    #202894
    OscarGuy
    Participant

    I am attempting to convert my message board to bbPress, but have run into a problem trying to convert the database. I get the following errors:

    Repair any missing information: Continue
    
    WordPress database error: [Unknown column 'users.user_website' in 'field list']
    SELECT convert(users.user_id USING "utf8mb4") AS user_id,convert(users.user_password USING "utf8mb4") AS user_password,convert(users.user_form_salt USING "utf8mb4") AS user_form_salt,convert(users.username USING "utf8mb4") AS username,convert(users.user_email USING "utf8mb4") AS user_email,convert(users.user_website USING "utf8mb4") AS user_website,convert(users.user_regdate USING "utf8mb4") AS user_regdate,convert(users.user_aim USING "utf8mb4") AS user_aim,convert(users.user_yim USING "utf8mb4") AS user_yim,convert(users.user_icq USING "utf8mb4") AS user_icq,convert(users.user_msnm USING "utf8mb4") AS user_msnm,convert(users.user_jabber USING "utf8mb4") AS user_jabber,convert(users.user_occ USING "utf8mb4") AS user_occ,convert(users.user_interests USING "utf8mb4") AS user_interests,convert(users.user_sig USING "utf8mb4") AS user_sig,convert(users.user_from USING "utf8mb4") AS user_from,convert(users.user_avatar USING "utf8mb4") AS user_avatar FROM phpbb_users AS users LIMIT 0, 100
    
    No users to convert
    
    Starting Conversion

    There are two problems I see. One is that it’s having trouble converting part of it. The other is that it says there are no users to convert and there are a ton, so what do I do?

    Robin W
    Moderator

    yes, that is helpful

    so this code will add a user to private group 1 on paying membership, and take them out on cancellation

    add_action( 'digimember_purchase', 'digitest_purchase', 10, 4 );
    function digitest_purchase( $user_id, $product_id, $order_id, $reason )
    {
        switch ($reason)
        {
            case 'order_paid':
            // handle paid orders here
    		update_user_meta ($user_id , 'private_group' , '*group1*') ;
            break;
    
            case 'order_cancelled':
            delete_user_meta ($user_id , 'private_group' ) ;
            break;
    
            case 'payment_missing':
            // handle missing rebilling payment here
            break;
        }
    }

    Put this in your child theme’s function file – or use

    Code Snippets

    Then set up forums so that group 1 users can access the forum, and everyone else just see it

    #202726
    schossie
    Participant

    Yes I will not do often back end deletions 🙂 but the problem is that even if I dont the forum stops working suddenly… That is what happened. In one moment I couldnt access the posts anymore, that I have written or other people, but just minutes before I could.

    So the forum is not usable like that! What do I do in such a case? Do I need to abandon bbpress? Do I need to start from scratch and uninstall bbp and reinstall again?

    Would a manual wordpress update help?

    dudo001
    Participant

    Hi Robin,

    I have a feedback from digimember.
    Is is:
    “We can provide you the Digimember-API, you can make your own Connections and Modifications with.
    https://digimember-hilfe.de/api/
    Please note, that we can’t give any support regarding to this and you’ll need some programming basics for that.”

    Does this help us?

    Furthermore I found a menu called “webhooks” in the Digimember-Menu in WordPress.
    There can some webhooks be added, but there is no more information about which one.

    Another menu item is “Orders”, where one can see the Email-Adress of the registered User and the Product-Name and the Order-Number of the Product the User ordered.

    I hope this Informations can help.
    If I have to get some new informations or do some further steps, please let me know 🙂

    Thxs, best, Roman
    cu, Roman

    janecarole
    Participant

    Wordpress 5.2.2

    bbpress version (don’t know how to find this)

    http://www.lemonstograpes.com

    When a user is not logged in, they can see forums, subforums, and topic lists. When they click on a topic, they cannot see the topic, but they can see replies to the topic!!! I want them to be able to see both the topic and its replies without being logged in! What do I need to do to fix this?

    Please help.

    Robin W
    Moderator

    Private groups would let you set that up, use topic permissions

    Private groups

Viewing 25 results - 3,001 through 3,025 (of 26,834 total)
Skip to toolbar