Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 1,726 through 1,750 (of 26,879 total)
  • Author
    Search Results
  • #221008
    Back to Front
    Participant

    Hi again šŸ™‚

    I’m using the Twenty Twenty theme with bbpress.

    On any single topic, the ā€˜next’ link of the pagination jumps to the latest topic. The ā€˜previous’ link is missing. On the latest topic, the ā€˜next’ link links to itself.

    On any forum, it does the same.

    On posts, it works as expected.

    This is a child theme, but I get the same results with the parent theme active, and with all plugins other than bbpress deactivated.

    I’ve also asked this question over at twenty twenty theme but no replies. https://wordpress.org/support/topic/pagination-not-working-with-bbpress-topics-replies/#post-14510051
    I guess this question may have more to do with the theme than with bbpress, but perhaps I’m wrong? Do other themes pagination work as expected with bbpress forums and topics? Perhaps I could swap out twenty twenty’s pagination for that of another theme?

    Do you have any clues what’s gone wrong? I think pagination is really important for the site, and the twenty twenty themes style of pagination is very visually appealing, so I’d prefer to get it working rather than delete it!~

    #220999
    Back to Front
    Participant

    Hi sorry its been a while! Been busy with other projects.


    @robin-w
    @webmasterfreya this is what I’ve done to reverse the reply order on certain topics. And now I’ve come back to it after a month, I can’t reproduce the issue of it breaking the pagination. It seems to work as expected, without adding another function to mess with the pagination.

    Install

    bbPress – Sort topic replies

    Remove the parts that sort the forum’s topic order, as they are causing errors, and they aren’t desired for this purpose (sorting the reply order)

    // Adds meta box to the side bar of the Forums edit pages
    add_action( 'add_meta_boxes', 'bbPress_meta_box_add' );
    function bbPress_meta_box_add(){
    	add_meta_box( 'bbPress_meta_box_sort_desc', 'Sort Replies', 'bbPress_forum_meta_box', 'forum', 'side', 'high' );
    }
    

    and

    	// Save sort settings for forum
    		if( $_POST['str-bbpress-sort-replies'] == "desc" ){
    			update_post_meta($post_id, '_bbp_sort_desc', 'desc');
    		}elseif( $_POST['str-bbpress-sort-replies'] == "asc" ){
    			update_post_meta($post_id, '_bbp_sort_desc', 'asc');
    		}else{
    			update_post_meta($post_id, '_bbp_sort_desc', 'dft');
    		}
    

    and

    	// Save show lead settings for the forum
    		if( $_POST['str-bbpress-sort-replies-show-lead-topic-forum'] == "yes" ){
    			update_post_meta($post_id, '_bbp_topic_sort_show_lead_topic_forum', 'yes');
    		}elseif( $_POST['str-bbpress-sort-replies-show-lead-topic-forum'] == "no" ){
    			update_post_meta($post_id, '_bbp_topic_sort_show_lead_topic_forum', 'no');
    		}else{
    			update_post_meta($post_id, '_bbp_topic_sort_show_lead_topic_forum', 'dft');
    		}
    

    I can send the whole file if thats more useful.

    Sorry I hope i’m not missing something that we noticed before? Actually my site is using threaded replies. So unfortunately it’s not using pagination, its unfortunate it can’t have both. But I turned it off to test this and it it worked.

    Regarding the buddypress activity stream…
    Here is an example of a member page with buddypress activity stream.
    https://houseonfire.backtofrontdesign.co/members/forum_2tbmmm/
    I think it also works as expected showing forum replies in the reverse chronological order.

    #220998
    jason4locations
    Participant

    There was a critical error on my website, and now I can’t get to the log in screen. My site is at dancing4locations.org. I’m using version 5.5.5 of WordPress, and version 2.6.6 of bbPress.

    #220975
    jason4locations
    Participant

    I’m new at this, so this might not be a good question. Can I use

    Dashboard: Appearance > Customize > Additional CSS

    to make ā€œNo Topicsā€ go away? If not, is there an ā€œeasyā€ way to do it, that just involves pasting code somewhere?

    I was able to make my site look nice using < li >, except for the fact that ā€œNo Topicsā€ showed up scattered all over the page. I used < li > in one category or forum, and it effected all the others, which was good. So, now I’m trying to make ā€œNo Topicsā€ go away.

    My site is at dancing4locations.org. If you go to my site now, it doesn’t look as good as it did before, when I was using parents (with < li >). I’m using version 5.5.5 of WordPress, and version 2.6.6 of bbPress.

    I’m sorry that my last post was marked as spam. It think it had to do with the fact that I didn’t put spaces between <, li, and >, and I kept on trying to edit it.

    Thank you.

    #220955
    jason4locations
    Participant

    I made a bunch of forums using parents. But, when I go to view it, I see nothing like the rows of categories and boards that I am used to seeing with forums. Instead, I just see the name of a forum in the middle of the page. My site is at dancing4locations.org. I’m using version 5.5.5 of WordPress, and version 2.6.6 of bbPress. Thank you.

    #220950
    Robin W
    Moderator

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

    item 6 describes what you want to know, but in essence just set the forums to ‘private’

    If you need a more complicated setup, then use

    Private groups

    For users, if you are setting up manually, then you just need to create them in wordpress (bbpress just uses wordpress users and login), just make sure you’ve turned off auto registration in

    dashboard>settings>general>membership is unticked

    and that in

    dashboard>settings>forums>Roles is ticked and users assigned the participant role

    #220947
    Robin W
    Moderator

    ok, my initial suggestion would be to deactivate bbpress and see if that fixes.

    After that I do the usual troubleshooting :

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #220943
    axelbirkner
    Participant

    Hi Guys,

    I invested some time and found the solution:

    I entered at the wordpress menu design.additional css the following lines:

    #bbpress-forums div.bbp-breadcrumb p, #bbpress-forums div.bbp-topic-tags p {
    margin: 80px 0 10px 0;
    }

    That made ist. Problem solved.

    All the best
    Axel

    #220934
    jason4locations
    Participant

    In the tutorial that Robin W gave me a link to, in step 1 (ā€œStep 1: Choose Your New WordPress Hostā€), does the new host have to be a paid host? Or, can it be a free host, that has part of the free host’s name in my address?

    #220931
    Robin W
    Moderator

    if you want to migrate from one host to another, ad may want to do this more than once, then it would pay to learn how to migrate the site eg

    https://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-to-a-new-host-or-server-with-no-downtime/

    #220921
    jason4locations
    Participant

    I want to get a forum up as soon as possible and for free, and then compare free hosts and paid hosts, to see if I can find a better host for me to use later. (I’ve found some free hosts for WordPress, and I hope one will work.) In other words, I might want to change hosts, if it is possible to change from one free host to another free host (or to a paid host), without losing my forum (and the threads of, posts of, and information about those who registered). My problem is that, while I’ve found migration tools that make a bbPress forum from different forum software (if it is called software), I haven’t found any that make a forum from the same forum software (that is used with a different host). Can bbPress, or any software, do that? If I can change the host, will bbPress automatically do that? Is it possible to change from using one free host to using another free host, while using bbPress? Thank you.

    phillykish
    Participant

    Hello all.

    I’m trying to figure out how to remove the “create group” option when in the groups page. I don’t want my subscribers to have this functionality. How can I remove it?
    I thought it was another capability option in the user roles, but haven’t found it. Could someone point me in the right direction?
    I’m using using WordPress 5.7. 2 running BuddyPro_Child theme. Thanks!

    -Kish

    #220904
    Robin W
    Moderator

    start with

    bbp style pack

    #220902
    phillykish
    Participant

    Hello.
    I just started using WordPress 5.7. 2 running BuddyPro_Child theme. I have members as subscribers. They can post updates to other members, however, they cannot post a comment or reply. I’m thinking this has something to do with the user roles. When i changed the user role for a member to Administrator, then they could post comments or replies. But I don’t want to have members as administrators.
    What is the specific WordPress capability I would have to grant for the subscriber user role to allow them to comment or reply to posts?
    Thanks in advance!

    -Kish

    #220894
    drdarakh
    Blocked

    Dear all eminent wordpress gurus ,

    This is pertaining to the site http://www.dentistrytoday.info which is a dentistry related discussion forum

    I have two queries :
    1) Is there any plugin which inserts a box of Creating new topic on the home page .
    What we are looking out for is something similar to major social media sites.

    2) Pls also comment on the UI, layout and colour scheme of the forum ? ( home page as well as forum proper ). What improvements are required so that the home page becomes more elegant and inviting ?
    Thanks in advance for all inputs and many thanks in advance for the same

    Regards,
    Dr. Veerendra Darakh

    #220888
    axelbirkner
    Participant

    Hi dear Forum,

    Environment:
    Wordpress 5.7.2
    Theme: Teletype
    bbpress: 2.6.6
    link to site: http://lohntdas.de/Forum/Forum/rechner/finanzen/zinsrechner/

    I have a link to my bbpress forum under my website. When the page with the forum opens it is lying under the header. I would like to move the fourm a couple of lines down and let it not destroy the header.
    I did a record here https://youtu.be/gtTcRjM2MOM

    I would be very grateful if anybody can help me!

    Thanks a lot!

    All the best
    Axel

    #220879
    Spencer Hill
    Participant

    @highrollerusa Robins sarcasm is unhelpful and should be #moderated but I don’t disagree with some of the facts. I left WordPress entirely for Laravel a few years ago. My experience with the WordPress community is responses like Robins, and fundamentally broken and opinionated leadership who fail to get anything done, especially as it relates to easily developing new features and deploying WordPress sites not to mention in a secure.

    I built this forum site with Laravel + Laravel as an alternative to this feature: https://StoneFabricatorsAlliance.com it’s so much easier to update with new features, we make rollouts weekly. It’s so easy. Doing this with WordPress was immeasurably more complicated for less secure, less stable and slower product.

    I would encourage you to consider Laravel instead of waiting 7 more years as I did.

    #220866
    Robin W
    Moderator

    This should do it

    add_filter( 'bbp_current_author_ip', '__return_false' ) ;

    if it doesn’t then

    add_filter( 'bbp_current_author_ip', 'rew_remove_ip' );
    
    function rew_remove_ip () {
    $retval = 0 ;
    return $retval ;
    }

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

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

    or use

    Code Snippets

    #220862
    gasjp9ugawesg8awe
    Participant

    I am managing the BBPress website.

    I do not want to record the Posters IP address.

    But,for now,it record the Posters IP address like this.

    https://snipboard.io/KiHAGt.jpg

    Is it possible to not to record IP address on WordPress?

    #220860
    Robin W
    Moderator

    looks like an issue with this function

    wp_insert_term()

    where that error message is created.

    #220859
    Robin W
    Moderator

    ok, so I don’t think that is coming directly from bbpress.

    It may well be a theme or plugin issue.

    eg googling I found this :

    https://wordpress.stackexchange.com/questions/277874/creating-menu-always-gives-error-a-name-is-required-for-this-term

    so

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #220856

    In reply to: email notifications

    Robin W
    Moderator

    This still works fine

    bbPress Notifications

    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>login

    #220787
    dlpalumbo
    Participant

    Hi. Newbie here. Working with a bunch of retirees. We have a website (larcAlumni.org) that uses WordPress (5.7.2). I thought using a forum would simply our communication and keep records as well.

    We had bbPress plugin, but it was deactivated. When I activated it, I did not get intro screen nor did I get Forum menu item. I do get Topics and Replies menu items. I deactivated all other plugins, reactivated and reinstalled, no change. I ran Troubleshoot and got a critical error.

    DIVI is installed with a basic, blank theme.

    Any suggestions what I might try next?

    Thanks for help, Dan

    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

Viewing 25 results - 1,726 through 1,750 (of 26,879 total)
Skip to toolbar