Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 2,951 through 2,975 (of 26,880 total)
  • Author
    Search Results
  • #205570
    Robin W
    Moderator

    this will let you change text if you need it – not as good as having an ‘accepted translation’ but better than English

    add_filter(  'gettext',  'rew_bbpress_translate', 20 , 3  );
    add_filter(  'ngettext',  'rew_bbpress_translate' , 20 , 3 );
    
    function brexit_translate( $translated, $text, $domain ) {
    	if ($domain == 'bbpress') {
         $words = array(
                            
                            'Topic' => 'New-word',
                             'topic' => 'new-word',
             );
         $translated = str_replace(  array_keys($words),  $words,  $translated );
    	}
         return $translated;
    }

    just change what you need and add to in the middle section

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

    Code Snippets

    #205569
    kigazw
    Participant

    I can confirm. Have since the update a German-English mix.

    Just noticed: A line break is missing since the update:

    http://datenerror.de/wordpress/zeile.jpg

    pdvwp
    Participant

    Wordpress: 5.3
    bbPress: 2.6.0

    Brand new to WordPress. Building a site using Genesis Framework (NewsPro Theme) @ WPEngine.

    I just installed the two updates to WP 5.3 and bbP 2.6.0, but now I’m getting this error when I try to publish a post:

    “Publishing failed. Error message: Sorry, you are not allowed to edit the _bbp_topic_count custom field.”

    #205542
    Pascal Casier
    Moderator

    Hi,
    I created this plugin that works with v2.5 in a single site environment. I did not test it yet with v2.6! But if it can give ideas, I just leave it here:

    bbPress Move Topics

    #205494

    Confirmed. Broken in https://bbpress.trac.wordpress.org/ticket/3232, which I’ve reopened and will get fixed in 2.6.1. Sorry about that!

    #205458
    safetoto777
    Participant

    If you are using bbpress plugin in your wordpress account bbpress plugin will update you once they have latest bbpress version update

    #205452

    In reply to: User Avatar

    Robin W
    Moderator

    since bbpress just uses the WordPress avatar system, then anything that allows users to upload should work

    https://wordpress.org/plugins/search/avatar/

    simple local avatar looks like it is worth looking at

    #205446
    Milan Petrovic
    Participant

    My plugin GD Mail Queue: https://wordpress.org/plugins/gd-mail-queue/ solves the issue of BCC, and it can capture BCC emails and add them to the queue that is processed in the background as individual emails, so each notification is sent as a separate email, and it won’t get flagged by many email servers. The plugin has many more features, with the goal to replace other SMTP and mailing plugins. It has log, turning emails to HTML, email tests, SMTP configuration and more.

    #205426
    cnewhall
    Participant

    WP 5.2.4 . BBP2.5.14 . I want to have my user’s comments on a post appear in the forum with perhaps the topic being the post title, rather than having a huge long list of post comments after every post. There used to be aplugin that would do this very neatly, bbPress Topics for WordPress plugin, but it has not been updated for several years. it seems like this is a problem that somwone would have solved but i cannot find a solution. Any help is appreciated.

    #205418
    Robin W
    Moderator

    private forums overrides bbpress, and you would simply need to make any ‘hidden’ forums only accessible to a group that say contains admins.

    I think this still works

    Remove Private: label prefix

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

    Code Snippets

    #205415
    Robin W
    Moderator

    ‘topics’ and ‘replies’ are bbpress, ‘posts’ are WordPress.

    What exactly do you mean by ‘posts’?

    #205387
    Robin W
    Moderator

    ok, so this (untested) one should put the class in for the edit, and change the word edit to ‘hello’

    can you test and let me know that it works, and I’ll look at the others.

    add_filter ('bbp_before_get_reply_edit_link_parse_args' , 'rew_get_reply_edit_link' ) ;
    
    function rew_get_reply_edit_link ($args) {
    	$args['link_before'] = '<i class="fa fa-edit">' ;
    	$args['link_after'] = '</i>' ;
    	$args['edit_text'] = 'hello' ;
    	
    return $args ;
    }

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

    Code Snippets

    #205383
    estefa37
    Participant

    Hello everyone.
    I am looking for some help here.
    I am trying to migrate a rather large forum from phpbb to bbpress using the bbpress importer.
    I filled the details with the right database information and started the import.
    However, it keeps showing me an error and does not let me import anything.
    When I click on “start” the import, it inmediately shows this text:

    Repair any missing information: Continue
    WordPress database error: [Unknown column ‘topics.topic_replies’ in ‘field list’]
    SELECT convert(topics.topic_id USING “utf8mb4”) AS topic_id,convert(topics.topic_replies USING “utf8mb4”) AS topic_replies,convert(topics.topic_replies_real USING “utf8mb4”) AS topic_replies_real,convert(topics.forum_id USING “utf8mb4”) AS forum_id,convert(topics.topic_poster USING “utf8mb4”) AS topic_poster,convert(posts.poster_ip USING “utf8mb4”) AS poster_ip,convert(posts.post_text USING “utf8mb4”) AS post_text,convert(topics.topic_title USING “utf8mb4”) AS topic_title,convert(topics.topic_status USING “utf8mb4”) AS topic_status,convert(topics.topic_type USING “utf8mb4”) AS topic_type,convert(topics.topic_time USING “utf8mb4”) AS topic_time,convert(topics.topic_last_post_time USING “utf8mb4”) AS topic_last_post_time FROM phpbbli_topics AS topics INNER JOIN phpbbli_posts AS posts USING (topic_id) WHERE posts.post_id = topics.topic_first_post_id LIMIT 0, 100
    No topics to convertNo forum parents to convert

    It only shows that text and does not import anything. All user accounts are existing inside my phpbb database.

    Does anyone know why this is happening or how can I solve this in order to make the import?

    Thank you.

    #205361
    Babblebey
    Participant

    The Plugin is kind of disturbing my function in the way I have set them up already… And it only works on the Freshness Display, it doesn’t work on the topics and reply post dates.

    I want one that can work similarly like the WordPress the_date('d M, Y') to look like bbp_topic_post_date('d M, Y') to dictate the exact date format I want for that function to return. I do not really want plugins, I’m trying to build with little to no plugins at all.

    #205353
    Robin W
    Moderator
    #205351
    Robin W
    Moderator
    #205333
    Robin W
    Moderator

    try this

    function rew_login_redirect_url ($redirect) {
    	//quit if it's not a redirect
    	if (strpos($_SERVER['REQUEST_URI'], '?redirect_to=') == false ) return $redirect;
    	$redirect = 'url' ;
    	
    	return $redirect ;
    }
    
    add_filter ('bbp_user_login_redirect_to' , 'rew_login_redirect_url', 5 , 1) ;

    change ‘url’ to where you want it to go

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

    Code Snippets

    #205328
    Robin W
    Moderator

    the green bit can be achieved by

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Freshness Display

    #205327
    Robin W
    Moderator

    dashboard>settings>general>date format

    bbpress just follows the WordPress format you set, as it presumes you want dates to look the same all over your site

    otherwise

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Freshness Display lets you play with how it is displayed

    #205310
    Robin W
    Moderator

    on question 1

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Forum Display item 11

    and you can change the forums per page.

    #205282
    Robin W
    Moderator

    it does for bbpress, but I think you are also using bbpress, in which case maybe this

    bbp buddypress profile information

    #205256
    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Breadcrumbs

    #205226
    Robin W
    Moderator

    sounds like this is the answer

    bbp profile information

    #205217
    trevorstokes
    Participant

    Hi,
    I have never edited any of our users’ roles. Some users have the bbp_participant role, but not all.
    When does this (default) role get assigned?
    How can I set all those that have no bbp role?
    The checkbox “Automatically give registered visitors the PARTICIPANT forum role ” is checked.

    Wordpress 5.2.4.
    BBPress 2.5.14

    #205210

    In reply to: Creating a topic

    Chuckie
    Participant

    I have created my own plugin:

    https://www.dropbox.com/s/qf5hgv5ksm3z2fo/trucklesoft-autosave-tinymce.zip?dl=0

    What it does is install the “autosave” plugin as provided on the TinyMCE website. This is version 4.9.4 which at the time of writing was supported by WordPress 5.2.4.

    This plugin by design will warn you if you navigate away from a topic without pressing submit.

    What is also good is that it is compatible with “TinyMCE Advanced” so it will not reset any changes you have made to the toolbar using that plugin.

Viewing 25 results - 2,951 through 2,975 (of 26,880 total)
Skip to toolbar