Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 3,076 through 3,100 (of 26,830 total)
  • Author
    Search Results
  • #201649
    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>forum templates

    #201619

    In reply to: Edit Pagination Range

    Robin W
    Moderator

    I can’t remember it ever being asked 🙂

    However after a bit of digging, this will change it

    add_filter( 'bbp_topic_pagination', 'rew_change_shown' ) ;
    
    function rew_change_shown ($args) {
    	$args['mid_size'] = 8 ;
    return $args ;
    }

    8 shows ‘8 +previous and next’ – so 10 – amend the number to whatever you want

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

    Code Snippets

    mattbru
    Participant

    What is the secret to modifying/changing the query on the topic archive page? I want to list all topics on that page rather than have 16, and i do not want pagination. On normal wordpress post types this is easily done with pre_get_posts filter. But how is it done with bbpress?

    I have tried this:

    
    function bbp_change_topic_archive_query_args( $query = array() ) {
    	$query['order'] = 'asc';
    	$query['orderby'] = 'title';
    	$query['post_count'] = -1;
    	$query['posts_per_page'] = -1;
    	return $query;
    }
    add_filter('bbp_has_topics_query','bbp_change_topic_archive_query_args');

    and this: (but this requires a shortcode to work properly)

    function bbp_my_register_custom_views() {
    	bbp_register_view( 
    		'asc', __( 'A-Z' ), 
    		array(
    			'orderby' => 'title',
    			'order' => 'ASC',
    			'post_count' => '-1',
    			'posts_per_page' => '-1',
    			'hide_empty' => false,
    		), false );
    }
    add_action( 'bbp_register_views', 'bbp_my_register_custom_views' );

    What else can be done?
    This has to be possible.

    wp v5.2.2, bbp 2.5.14
    site is a pw protected site. I can give access privately if necessary.

    Thanks!

    #201539
    Robin W
    Moderator

    wordpress themes can do funny things with bbpress.

    It’s all to do with load order.

    If it is working in the custom css, I’d leave it there

    #201538
    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>login

    #201530
    #201512
    mjthehunter
    Participant

    Hi,

    Over the past few weeks I’ve been customizing bbress to my liking using the live css editor in wordpress.
    I tried moving it all to a stylesheet within my child theme in a folder called css.
    I’ve named the file bbpress.css.

    Everything was working fine in the wordpress editor, but after moving it to bbpress.css a lot of things no longer work.
    Even when I try !important, a lot of things still don’t to work.

    I should note that some of the code does work which is why this confuses me.
    Any suggestions?

    WordPress 5.2.2
    BBPress 2.5.14
    https://flippednormals.com/forums

    Danishsard
    Participant

    Easy, I translate plugins for various scripts also for free, and nobody tells me anything. Satarm is also best done as I can.

    For me it is strange that the forum of wordpress is dead in the project. It could, after all, bring considerable income to people who would develop it as if they thought about a premium suport and such solutions.

    Robin W
    Moderator

    I think this plugin has that

    bbPress Toolkit

    It works with current versions of wordpress and bbpress

    privatec2
    Participant

    Hi,
    I have setup a WordPress site with bbPress and trying to find if I can manually Subscribe/Unsubscribe users to particular Forums or Topics,
    Or is it even possible to at least see what the Forum Participants/Users have subscribed to?
    Thanks,

    #201451
    Robin W
    Moderator

    use

    Code Snippets

    and paste it in there

    Robin W
    Moderator

    Error – when wordpress can be used for the wordpress discussion. Someone will send a new topic with these words – it is automatically redirected to a non-existent page – this is a forum bug.

    can you describe an exact series of stepsto get this error – I do not understand

    The entire wordpress discussion settings should also work bbpress – and not just selected elements – that would increase the functionality of the forum at zero cost.

    zero cost ?? – just a massive recode of bbpress taking many many hours!!! What bit is missing ?

    Danishsard
    Participant

    Hello, the bbpress plugin is not updated anymore

    Error – when wordpress can be used for the wordpress discussion. Someone will send a new topic with these words – it is automatically redirected to a non-existent page – this is a forum bug.

    The entire wordpress discussion settings should also work bbpress – and not just selected elements – that would increase the functionality of the forum at zero cost.

    When someone writes a new post or subject with moderation after the settings in the wordpress discussion – it should be displayed to him the same as comments but invisible lda others because it is in the browser cache.

    ………

    If you do not do anything with bbpress then you can do a premium help department to make money on it, probably it is the reason that there are no pforits for years abandoning it yourself. You can also enter the ads on bbpres.org, something that would be there too, it is sad that this project is practically forgotten by the creators and not revised.

    Igor
    Participant

    Hi @robin-w!

    First, thanks for the reply.

    I’ve tried that plugin before. And I’ve already tried this: https://wordpress.org/plugins/bbpressmoderation/

    But both do not have the configuration I need.

    Regards!

    Robin W
    Moderator

    best I can suggest is

    bbPress – Moderation Tools

    Igor
    Participant

    Hi guys,

    First of all, thank you for the great work with bbPress.

    So… Somebody can help me, please?

    I want to know if there’s a way to apply the WordPress Comments Administration rules ( https://wordpress.org/support/article/comments-in-wordpress/#comment-administration) to the Guest Posting (not anonymous) rules of the bbPress (with name and e-mail fields).

    In the WordPress Comments System there’s this option that i want:

    “Comment author must have a previously approved comment: This option will allow you to cut down on the number of comments you have to approve. Once you approve one comment by an author, their future comments will be automatically approved.”

    Link: https://wordpress.org/support/article/comments-in-wordpress/#comment-administration

    Thanks in advance.

    Danishsard
    Participant

    Hello,
    When we set up words in the wordpress discussion panel, which when poast / topic will go to moderation, there are problems.

    1. Post how someone will write what will go to moderation – it is not displayed for this guest – it should be otherwise will be sent to him to get it – can it be somehow fixed? Just a message about something like that.

    2. when someone types a topic – it displays an empty page 404 with a dynamic address that does not have such a page – it’s a total logical error of the forum – it should move it to the list of topics in this forum section or also zoabaczyć (the same as comments that is the topic for moderation)

    Can you fix it somehow, but without plugins?

    #201376
    Danishsard
    Participant

    Hello Robin, thank you for your time on this and other topics. Maybe we can set something together in these problems together.

    Anonymous person writing on the forum – he has the option to provide a website. But this address is nowhere to be seen – for example, when writing a post on wordpress, the page address is a link under the name of the comment’s author.

    In the case of forum, this address does not appear physically on the forum anywhere? It is not a username or visible to other forum members. Is this a forum bug or some difficult to define purpose of this field?

    ojmorales0002
    Participant

    Hello all,

    The social links menu displays icons only on a WordPress (version 5.2.2) site using the Twenty Seventeen theme (version 2.2), except on pages of bbPress (version 2.5.14) where it displays icons and text.

    The url of the site is Prepare.Survive.Live

    Any ideas of how to address this?

    Thanks!

    #201290
    Robin W
    Moderator
    bbtrouble
    Participant

    Hello, we’re using bbPress Version 2.5.14 on WordPress 5.2.2, on our site https://lightstalking.us/.

    Recently, we decided to move the part of our website to a new server (only forums actually) to increase the speed and we need to copy SQL tables with forum database from one server to another.

    Can I get the list of all the tables I need to copy in order to successfully get all the forum posts from one server to another?

    Thank you,
    Light Stalking Team

    #201201
    Robin W
    Moderator
    #201194
    babacio
    Participant

    Hi to everybody, I’d like some hints over a very hard job.

    I’m making a RPG forum:

    before replying to a topic, the user must choose “Dialog” or “Description”
    If chosen “Dialog” ,replying into the topic will be with the avatar, and if chosen “Description”, it will be shown without avatar.

    Other than that, I’d like to personalize the reply with a custom class.

    How can I do this? Must I add some condition into loop-single-reply.php?
    Thank you for your attention.

    Wordpress version:
    Version 5.2.2

    Website:
    https://www.eeldasleague.it/ (site’s in italian, my mothertongue!)

    Bbpress:
    Version 2.5.14

    #201175
    Robin W
    Moderator

    bbp style pack

    once activated go to
    dashboard>settings>bbp style pack>Breadcrumbs

    and you can turn off any/all or change each element

    #201100
    tech2morrowss
    Participant

    Log into the WordPress Dashboard.On the left in the sidebar, hover over “Settings” and click General.
    The “Site title” and the “Tagline” can be changed here. Enter a new title and tagline. Click Save Changes.
    Now Visit your WordPress site and you will see the title and tagline changed.

Viewing 25 results - 3,076 through 3,100 (of 26,830 total)
Skip to toolbar