Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 3,526 through 3,550 (of 26,748 total)
  • Author
    Search Results
  • #193649

    In reply to: Subscibe link location

    Robin W
    Moderator
    Robin W
    Moderator

    If you are talking about the plugin ‘bbp private groups’, then is the user has permission to see a topic (ie is a member of that group) then I would expect then to see it.

    If you still have an issue, please re-log in https://wordpress.org/support/plugin/bbp-private-groups and I’ll pick it up there

    webmasterfreya
    Participant

    ello,

    Members of private groups are missing in their overviews the started topics and created replies from private forum(s) .

    e.g Group member erwintest (member of 1 group) added some topics and replies in the private forum that should (at least i expect that) pop up via this link
    /members/erwintest/forums/ and /members/erwintest/forums/replies/ but they don’t.

    However if i logon as administrator and use the same links, the started topics and created replies placed in the private forum of user erwintest do popup.

    Is this expected behaviour or not?

    With Non private forums there is no problem.

    site: freya.nl
    Latest WordPress, bbPresss and Buddypress

    #193618
    DianaN
    Participant

    Hi Experts,

    BBPress 2.5.14 and also using BB style pack 3.9.2
    Wordpress version 4.9.6
    Site url: StandUpGirl.com

    Issue:
    I am getting many errors in the google search console for titles that have words like haven’t, won’t, I’m which are contraction words. These words show up as this sample /forums/topic/i-haven-t-posted-in-a-while-but/ where you can see the word haven’t is haven-t. The search bots don’t understand the ‘t’ and I get errors. Also if a user puts an comma in the title I get errors.

    How do I fix this?

    Thank you so much for giving me help!
    Diana

    #193605
    Stephen Edgar
    Keymaster

    Checkout the phpBB converter, it’s one of the best example implementations.

    Use _bbp_old_topic_id to grab your old topic id:
    https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php#L183

    p.s. The above phpBB converter uses bbPress 2.6 alpha which has many new refinements for the importer over bbPress 2.5, I’d suggest you use bbPress 2.6 alpha for any imports due to those improvements, it can be found here https://bbpress.org/download (bbPress.org and wordpress.org both use bbPress 2.6)

    #193603
    evildrome
    Participant

    Wordpress 4.9.6
    bbPress 2.5.14

    http://www.personalgroupware.com/wilsonlogan/

    Hi All,

    I have a forum in SQLITE format and I want to import it into bbPress.

    I decided that if I was going to have to convert to a MYSQL database, I might as well use the schema indicated in Example.php

    As I didn’t *actually* have the schema, I had to *guess* based on the fields in Example.php

    For example:

    CREATE TABLE IF NOT EXISTS forums_table (

    _bbp_old_forum_id int(10) NOT NULL default 0,

    the_parent_id int(10) NOT NULL default 0,

    the_topic_count int(10) NOT NULL default 0,

    the_reply_count int(10) NOT NULL default 0,

    the_total_topic_count int(10) NOT NULL default 0,

    the_total_reply_count int(10) NOT NULL default 0,

    the_forum_title varchar(150) NOT NULL default ‘ ‘,

    the_forum_slug varchar(255) NOT NULL default ‘ ‘,

    the_forum_description text NOT NULL,

    the_forum_order int(10) NOT NULL default 0,

    the_forum_type int(10) NOT NULL default 0,

    the_forum_status int(10) NOT NULL default 0

    );

    Having created the database as it is in Example.php, all I needed to do was load the MYSQL database from my SQLITE database.

    Job done!

    Yeah? Not so fast…

    The import fails here:

    SELECT convert(topics_table.the_topic_id USING “utf8mb4”)
    AS the_topic_id,convert(topics_table.the_topic_reply_count USING “utf8mb4”)
    AS the_topic_reply_count,convert(topics_table.the_total_topic_reply_count USING “utf8mb4”)
    AS the_total_topic_reply_count,convert(topics_table.the_topic_parent_forum_id USING “utf8mb4”)
    AS the_topic_parent_forum_id,convert(topics_table.the_topic_author_id USING “utf8mb4”)
    AS the_topic_author_id,convert(topics_table.the_topic_author_ip_address USING “utf8mb4”)
    AS the_topic_author_ip_address,convert(topics_table.the_topic_content USING “utf8mb4”)
    AS the_topic_content,convert(topics_table.the_topic_title USING “utf8mb4”)
    AS the_topic_title,convert(topics_table.the_topic_slug USING “utf8mb4”)
    AS the_topic_slug,convert(topics_table.the_topic_sticky_status USING “utf8mb4”)
    AS the_topic_sticky_status,convert(topics_table.the_topic_creation_date USING “utf8mb4”)
    AS the_topic_creation_date,convert(topics_table.the_topic_modified_date USING “utf8mb4”)
    AS the_topic_modified_date,convert(replies_table.the_topic_id USING “utf8mb4”)
    AS the_topic_id FROM topics_table AS topics_table INNER JOIN replies_table
    AS replies_table USING replies_table.the_topic_id = topics_table.the_topic_id WHERE forums_table.the_topic_id = 0 LIMIT 0, 100

    Lookee thar… a mystery field!

    forums_table.the_topic_id

    Are there any other mandatory fields in the import schema that are not referenced in Example.php?

    And… what field from my database should I load to forums_table.the_topic_id ?

    Thanks!

    #193599
    vibhuu
    Participant

    bbPress includes a tool to delete all the bbPress data

    Install and activate the bbPress plugin again
    Go to Tools -> Forums -> “Reset Forums” tab
    Check the “Are you sure you want to do this?” checkbox
    Click “Reset bbPress”
    Deactivate and delete the bbPress plugin
    This will remove all bbPress data from your WordPress database, including custom post types, topic tag taxonomy and user meta.
    AFCAT 2019

    #193592
    kerryww
    Participant
    #193584
    Clivesmith
    Participant

    I am trying to stick a reply at the top of the replies page, can anyone help please.
    to explain..
    I have a forum called countries containing
    forums for each country, inside each country (forum) are topics called airport names,
    inside each topic (airport names) are replies, I would like to stick one of the replies to the top of the list of replies for that airport, the one I want to stick is unlikely to be the first entry for that airport.
    I hope that makes sense.

    WordPress 4.9.6 running twentytwelve child theme theme, bbpress Version 2.5.14

    the website is https://wateratairports.com

    #193583
    u_Oi
    Participant

    Code goes into the file functions.php that you can find on Appearance – Editor – Function.php. Open the file and paste it at the end. Just be careful because depending the theme code it can work fine or break your wordpress (if it breaks the wp just remove the code using cpanel or ftp).

    The code allow you to upload featured image for bbpress forums. Then you can give it css style for a better looking.

    To do this you need administrator access.

    #193577
    cclemens
    Participant

    WordPress Version: 4.9.6
    bbPress Version: 2.5.14
    National Braille Association

    When we post a link to our forums on Facebook, the link preview isn’t very attractive. In an attempt to make that appear differently on Facebook, I’ve created a ‘Featured Image’. I went in to our website to upload that image, but since there is no Page where bbPress lives on our site, I can’t find a way to apply an image to the forum as a “featured image”.

    How can I make that happen?

    #193557
    webmasterfreya
    Participant

    Hi,

    I have the following code in my themes functions.php
    function bbp_reverse_reply_order( $query = array() ) { // bbp_has_replies_query is depricated ?
    $query['order']='DESC';
    return $query;
    }
    add_filter('bbp_has_replies_query','bbp_reverse_reply_order');

    This works fine except when a new reply is added, you get redirected to the page with the oldest replies instead of the page that contains the just added reply. This seems to be an old problem, have tried various plugins, but they all lead to the same outcome.

    So the question is how to force, after adding a new reply, to be directed to the right page.

    site freya.nl, latest versions WordPress and bbPress.

    #193540
    Robin W
    Moderator

    bbp style pack

    will let you style bbpress

    #193534
    alexanderbiscajin
    Participant

    @booknerds

    im not sure antispam bee is compatible with bbPress though, there is a plugin for bbPress that is inspired by antispam bee though.

    https://wordpress.org/plugins/bbpress-antispam/

    maybe you should manually approve users using this plugin too

    New User Approve

    I think it would be more better to go through the list of Best security plugins to keep website secure and protected.

    #193516
    eduguerrero
    Participant

    My website is in Spanish, but bbpress appears in English.

    Buddypress is translated without problem. In change, the bbpress translation does not work even if you have uploaded the bbpress-es_ES.po and bbpress-es_ES.mo files to / www / wp-content / languages / bbpress after creating the folder.

    In the following link you can check how it is in English:

    Agenda Holística Ser Consciente. Dudas sobre la web

    bbPress 2.5.14-6684.
    WordPress. Versión 4.9.6

    #193496
    matty19901
    Participant

    FYI I’m using version 4.9.6 of wordpress and version 2.5.14 of bbPress.

    I added custom code to my theme functions.php page to add customized roles for bbPress. The roles show up when I edit users and want to change their roles, but when I go to save it, they just default back to a participant role. How can I fix this? Here is the code I used below:

    /* bbPress Custom Roles */
    function add_custom_role( $bbp_roles ) {
     
    
    $bbp_roles['my_custom_role2'] = array(
    'name' => 'Producer',
    'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants
    );
    $bbp_roles['my_custom_role3'] = array(
    'name' => 'Engineer',
    'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants
    );
    $bbp_roles['my_custom_role4'] = array(
    'name' => 'Songwriter',
    'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants
    );
    $bbp_roles['my_custom_role5'] = array(
    'name' => 'Staff',
    'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) // the same capabilities as keymaster
    );
    $moderator = bbp_get_moderator_role() ;
    $bbp_roles[$moderator] = array(
    'name' => 'Moderator',
    'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) // the same capabilities as keymaster
    );
    $keymaster = bbp_get_keymaster_role() ;
    $bbp_roles[$keymaster] = array(
    'name' => 'Chief Executive Officer',
    'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() ) // the same capabilities as keymaster
    );
    $apprentice = bbp_get_participant_role() ;
    $bbp_roles[$apprentice] = array(
    'name' => 'Member',
    'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants
    );
    return $bbp_roles;
    }
    add_filter( 'bbp_get_dynamic_roles', 'add_custom_role', 1 );
    #193489

    Good Day everyone,

    For a few years now I have bbPress and WordPress installed in French language.
    Currently using bbpress 2.5.14 and WordPress 4.9.6.
    The two language files bbpress-fr_FR.mo and bbpress-fr_FR.po are located in the wp-content/plugins/languages folder.

    Everything looks to work fine except that since the beginning notifications mails are sent in English language. I never figured out the reason and hope someone could help me.
    Everytime it’s the default template like “Mr Foo wrote:”, “New Topic”, etc…

    The original WordPress install was in English language but I installed the French pack during the updates, I define (‘WPLANG’, ‘fr_FR’); in wp-config.php as well and the admin interface is in french. I don’t understand. I tried to modified the .po / .mo file with a software but no effects. I’m using WP Config SMTP plugin but I don’t think it’s related, right ?

    Any help / advise would be really appreciated.

    #193487
    pigpotato
    Participant

    I fixed it like this.

    1. make css folder in wordpress>wp-content>theme>[mytheme]
    2. cp wordpress>wp-content>plugins>bbpress>templates>default>css>bbpress.css wordpress>wp-content>theme>[mytheme]>css
    3. add these code lines in the css file.
    #bbpress-forums fieldset.bbp-form input[id=bbp_anonymous_email]{ display: none; }
    4. cp wordpress>wp-content>plugins>bbpress>templates>default>bbpress>form-anonymous.php wordpress>wp-content>theme>[mytheme]>bbpress
    5. fix any email address in email textfield. Edit the form-anonymous.php
    <input type=”text” id=”bbp_anonymous_email” value=”guest@guest.com” ….

    #193469
    Robin W
    Moderator

    Start with looking at

    bbp style pack

    and see if that does what you need.

    If not – how technical are you in terms of ftp?

    #193450
    saulmayo
    Participant

    I wanted to know if you can help me.

    I get to import everything except the users.

    I’m trying to import a phpBB3.2.2 to bbPress.
    I’ve tried with bbPress 2.5.14, bbPress 2.6 RC5 and bbPress 2.6 beta2.
    I’ve tried in the 3 modes with the phpBB.php of dintintos topics but none of them work for me;
    https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php
    https://gist.github.com/pixelnated/5c27a64c450578440554ba902560178f

    I’m desperate. could you help me?

    #193402
    edugorilla7
    Participant

    How can be export Sabai discuss forum data to bbPress?
    I have exported csv files from Sabai discuss plugin.
    Please help !
    My wordpress Version is 4.9.4 with latest bbPress verison.

    #193353
    Robin W
    Moderator

    how ca n i add a new topic button in forum page

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>buttons

    90daykorean
    Participant

    Currently in our forums, the bbpress username below the avatar seems to be the WordPress username.

    How can I change it to be the username from BuddyPress?

    Thanks!

    #193339
    #193338
    MBV
    Participant

    So this is what I understand from this thread so far, to provide clarity moving forwards:

    1. Dynamic reply box that opens next to post replying to in forum is actually already a feature of bbpress, but not for BuddyPress group forums.
    2. Some themes seem to not engage this functionality and the way to fix that is to copy the reply.js file into a folder called js that is at the root of child theme.
    3. It works with visual editor

    So the only problem is that it does not work for Buddypress Group forums. However, @robkk mentioned, earlier in this thread, a patch he made. But he has not been active on these forums for over a year.

    https://bbpress.trac.wordpress.org/ticket/2974
    It is pretty easy to workaround this issue as well, since all you have to do is enqueue the javascript with a different conditional or enqueue it sitewide, but doing it sitewide might cause another issue somewhere.
    Here I just added a bbpress-functions.php file to a twentysixteen child theme. I edited out the conditional causing the issues with groups. You can test this on my test site as well.
    You would have to remove the file later if the trac tickets patch I linked to is committed and you are using version 2.6 of bbPress, so that you can have the file enqueued on the pages where it is needed.
    https://cloudup.com/czqFBqJE8TE

    The trac ticket he mention seems to be resolved yet it’s not working for BP group forums. The link to the code on cloudup is broken.

    So that’s the summary of where we are at on this thread… the big question is, does anyone have any insight or can help with enabling the dynamic reply box to BP group forums topics?

Viewing 25 results - 3,526 through 3,550 (of 26,748 total)
Skip to toolbar