Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 3,076 through 3,100 (of 26,834 total)
  • Author
    Search Results
  • #201827
    austex
    Participant

    Looked further, it’s “99%” complete:

    https://bbpress.trac.wordpress.org/milestone/2.6

    #201797
    austex
    Participant

    Okay, just check the dev tracker. JJJ put some work in last month on 2.6.

    https://bbpress.trac.wordpress.org/report/1?sort=modified&asc=0&page=1

    #201784
    fantomx90
    Participant

    Hello Everyone. I am a novice still at using wordpress, but I am using bbPress forums for my website. I currently have a bunch of Forums, with many topics underneath them.

    I was just wondering if there was a way to have a small icon or picture beside each Forum.

    For example – Rules (With a small picture of a book beside it or below it)

    I tried messing with Add Media or Featured Image, but they dont seem to apply the image anywhere I can see it.

    Any feedback would be greatly appreciated!

    #201774
    theatereleven
    Participant

    I’m chiming in here too – Trying to decide whether to use Discourse or WordPress. BBPress seems to be the only reliable and clean option for WP, but I need to know there’s a future before investing the time. Thanks anyone for an update!

    #201770

    Topic: Root links

    in forum Troubleshooting
    sashabcro
    Participant

    Hi all, I have created my first bbpress forum on page http://irska.ie/forum/ but when you choose one Forum for example Forum http://irska.ie/forums/forum/forum/ or Malig Oglasi http://irska.ie/forums/forum/mali-oglasi/ it goes to different style page :S which add header image and it’s not anymore Full width.

    I have edited page for main page under WordPress Page for http://irska.ie/forum/ but how can I make sure that every other topic and etc on mine forum use same style? Thank you.

    austex
    Participant

    That they now are mainly doing other things is sad for us, but they have a perfect right to do as they wish, and should feel under no obligation to spend time supporting the code.

    Agree that they have the right to do as they wish, but they should at least publicly announce whether they are going to end bbPress development, or if it’s going to continue to languish for years at a time.

    I understand @johnjamesjacoby is a very busy guy, but we are constantly told to be wary of plugins that are old.

    More importantly, a lot of us have moved on to other software, rather than continue to beta-test bbPress 2.6 (which has been in some form of RC for over 3 years, and the latest RC came out in December of last year).

    I have a big project that I’m putting together for somebody (they want WordPress), and some kind of lightweight/small forums are planned for, and it’s frustrating that I’m having to look elsewhere for forum software, or rigging some kind of fancy comment system (trying to avoid Disqus and Facebook for obvious reasons).

    It’s odd, because bbPress could be a selling point for WordPress in their competition with other platforms. It’s also odd, because they have some very competent people working for them, but then they allow bbPress to kind of just drift along.

    #201709
    Robin W
    Moderator

    untested, and probably from a purist view not the most elegant solution, but this should work

    add_filter( 'bbp_current_user_can_access_create_topic_form' , 'rew_only_mods' , 10 , 1) ;
    
    function rew_only_mods ($retval) {
    	// Users need to earn access
    	$retval = false;
    	//check if admin
    	if ( bbp_is_user_keymaster() ) {
    		$retval = true;
    	}
    		//check if moderator
    	$role = bbp_get_user_role( get_current_user_id());
    	if ($role == 'bbp_moderator') {
    		$retval = true;
    	}
    // Allow access to be filtered
    	return (bool) apply_filters( 'rew_current_user_can_access_create_topic_form', (bool) $retval );
    }
    

    Also allows keymasters, but I presume you want that.

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

    Code Snippets

    #201703
    D L
    Participant

    So I just setup a whole new test site, installed buddypress and bbpress

    added the dizkusZK converter to the converters list

    Ran it against a copy of the database that contains a dizkus forum.

    got error:

    WordPress database error: [Specified key was too long; max key length is 1000 bytes]
    CREATE TABLE wp_bbp_converter_translator ( meta_id mediumint(8) unsigned not null auto_increment, value_type varchar(25) null, value_id bigint(20) unsigned not null default '0', meta_key varchar(255) null, meta_value varchar(255) null, PRIMARY KEY (meta_id), KEY value_id (value_id), KEY meta_join (meta_key(191), meta_value(191)) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci;
    
    No data to cleanStarting Conversion
    #201696

    In reply to: Edit Pagination Range

    Robin W
    Moderator

    great – glad you are fixed, I learnt some stuff as well about how wordpress does pagination, so win-win !!

    #201673
    Robin W
    Moderator

    I’m author of that fix.

    It may well be something that coincided with you installing that plugin – maybe a theme or another plugin update, updating wordpress, or even your host updating versions of php.

    The error you quote is a function in your THEME affecting a bbpress function. Your theme author has decided to re-write some bbpress functions by the look of it. So looks like that error (which may or may not be the issue – I suspect not) is one to take up with your theme author

    You could spend days working out what the issue is, if the fix works, then I’d tend to just use it.

    #201670
    asmedej
    Participant

    hello everyone

    I have an issue with bbpress forum where topics and replies are not showing.

    I’ll start from the beginning, in the beginning all was working fine, all topics and replies were visible and all was OK, but because my forum is in russian language the links were in russian, so I’ve decided to try Cyr-To-Lat plugin which would transform my urls to latin, which was good, and still everything work, BUT I wanted to try another plugin, so I’ve installed Cyr-To-Lat reloaded, there I was asked to trasnlate all urls to latin, I accepted and since it stopped working. Ofcourse my first step was to uninstall that plugin, but it did not resolve.

    I’ve searched internet and tried different solutions:
    – Deactivating all plugins – not ok
    – Changing theme – not ok
    – Clicking on permalinks – not ok
    – Regenerating .htaaccess file – not ok
    – Trying a fix which I found (http://www.rewweb.co.uk/bbpress-wp4-fix/) -> OK

    Yes it seems there is a fix which resolves the issue BUT the problem was not with wordpress or something, but a plugin which broke it, now, my question how can I undo it, or how can I resolve without that fix, because it was working fine ….

    I suppose that plugin left something, or was maybe not deleted fully, there is some function maybe somewhere which doesn’t show my topics and replies. If I check the solution basically it has something to do with this function: function fb_search_filter which excludes those topics from my forum.

    I could use that fix, but as I said it was working before so I think that plugin broke it ….

    Any idea how to fix it? Which steps to take?

    #201659
    D L
    Participant

    Believe it or not, I’m still stuck with very old forums using Dizkus/Postnuke/Zikula and still need to move them to WordPress/bbPress.

    Is there anyone willing to take this on as a paid project? I could send a database sample to check out.

    anthonyae
    Participant

    Since updating bbPress to version 2.5.14 on WordPress version 5.2.1, Administrator roles have lost access to be able to edit the Forum post types but can edit global settings on the forums. If navigating to the Forum post edit page, it states “Sorry, you are not allowed to edit posts in this post type.”

    Looking with User Role Editor to check Administrator permissions, the group has access to every function with the Forum post type.

    Any ideas on why this suddenly changed and what me causing the loss of access?

    #201653
    Joe Dolson
    Participant

    I’ll note that a patch for this was committed to version 2.6 of bbPress 5 years ago, but that has never been released: https://bbpress.trac.wordpress.org/ticket/2714

    This is a fix that should really be implemented. I would have noted it sooner if I’d realized that the work I did that many years ago was unused.

    #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

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