Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 10,551 through 10,575 (of 64,454 total)
  • Author
    Search Results
  • #177527
    Stephen Edgar
    Keymaster

    This is fantastic @idlamalif, I’ve added it to https://bbpress.org/about/examples/

    #177525
    Arturo
    Participant

    When using a translated bbpress, some titles in the WordPress Admin Dashboard for “Right Now in Forums” are missing. Where can I check this in the code?

    Here is a screeshot http://prnt.sc/ccs85f

    Using bbPress 2.5.10-6063

    #177524
    mglasser
    Participant

    I am sorry, but I cannot recall the fix for this. Our web site security is sort of messed up and cobbled together, but it is working now. I think “bbpress Advanced Capabilities” plugin is the one that lets me alter the view_private_topics and view_private_replies for an individual use. And I do have to use this for manually created users.

    I am not sure that I did anything to edit a role, but again it has been so long I could be wrong. Part of me feels like it fixed itself with plugin and/or WP version updates.

    FYI, a few months later I had these same symptoms with version 4.4 of WP, which was solved by switching the forums from Private to Public, saving it, and then switching it back. And doing that for every forum.

    Good luck.

    #177523
    evanevans333
    Participant

    Any progress on this? I am having this problem, and I am using the latest version of bbPress. Also at this point, bbPress Advanced Capabilities, nor Capability manager Enhanced, nor Members, nor any other Role Editor, will allow me to edit the Participant role.

    #177522
    Bingo Bongo
    Participant

    Hi –

    (For our forums here – http://www.zetaunit.com/forums/ – W.P. V 4.5.3, using Avada 4.02)

    I see in the documentation that it is possible to replace the default bbpress wordpress template for

    the Forum Root Slug ‘Forums’

    by adding a page in WordPress called /forums/

    and then inserting the bbpress shortcode for forum archives.

    I tried this also with ‘forum’ for individual forums, and I see other Slugs available in Settings > Forum

    Single Forum Slugs

    Custom slugs for single forums, topics, replies, tags, views, and search.

    Forum
    Topic
    Topic Tag
    Topic View
    Reply
    Search

    Am I missing something, or is there a simple way to replace each of the pages used by bbpress by default, just by creating pages named e.g. ‘topic’, ‘topic-view’ etc? And then insert the relevant shortcode for that content?

    It seems like ‘it should be there’ but can’t find documentation apart from customising my child theme etc.

    Thanks in advance ๐Ÿ™‚

    #177520
    vizcano
    Participant

    i have a personalized translation of forum, i was told to put it in a folder on my theme so everytime bbpress updates languages mine wouldnt be afected, it was working fine until last update. it made changes on the translation, and it wont change the translation for mine

    can anyone help me?

    thanks

    #177519
    kgroneman
    Participant

    I’m looking into installing bbPress. I would like to know how many levels of sub-categories are supported? For example if I were to set up forums for various products I’m thinking of something like this, with some even having more sub levels:

    [Category X]
    [Product A]
    [Installation]
    [Administration]
    [Product B]
    [Installation]
    [Administration]
    [Category Y]
    [Product C]
    [Installation]
    [Administration]
    [Product D]
    [Installation]
    [Administration]

    Thanks in advance

    #177512
    senatorman
    Participant

    i’ve update phpbb to 3.1.9 and use BBpress 2.6 alpha

    I’ve downloaded te latest version of the phpbb.php importfilefrom:
    https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php?rev=5795

    When i run the converting i get this error:

    Repair any missing information: Continue
    WordPress databasefout: [Unknown column ‘forums.forum_topics_real’ in ‘field list’]
    SELECT convert(forums.forum_id USING “utf8mb4”) AS forum_id,convert(forums.parent_id USING “utf8mb4”) AS parent_id,convert(forums.forum_topics_approved USING “utf8mb4”) AS forum_topics_approved,convert(forums.forum_posts_approved USING “utf8mb4”) AS forum_posts_approved,convert(forums.forum_topics_real USING “utf8mb4”) AS forum_topics_real,convert(forums.forum_posts USING “utf8mb4”) AS forum_posts,convert(forums.forum_name USING “utf8mb4”) AS forum_name,convert(forums.forum_desc USING “utf8mb4”) AS forum_desc,convert(forums.left_id USING “utf8mb4”) AS left_id,convert(forums.forum_type USING “utf8mb4”) AS forum_type,convert(forums.forum_status USING “utf8mb4”) AS forum_status FROM phpbb_forums AS forums LIMIT 0, 100
    Geen forums te converteren
    Verwijder standaard wachtwoorden van WordPress gebruikers (500 – 599)
    Verwijder standaard wachtwoorden van WordPress gebruikers (400 – 499)
    Verwijder standaard wachtwoorden van WordPress gebruikers (300 – 399)
    Verwijder standaard wachtwoorden van WordPress gebruikers (200 – 299)
    Verwijder standaard wachtwoorden van WordPress gebruikers (100 – 199)
    Verwijder standaard wachtwoorden van WordPress gebruikers (0 – 99)
    Gebruikers aan het converteren (500 – 599)
    Gebruikers aan het converteren (400 – 499)
    Gebruikers aan het converteren (300 – 399)
    Gebruikers aan het converteren (200 – 299)
    Gebruikers aan het converteren (100 – 199)
    Gebruikers aan het converteren (0 – 99)
    Geen gegevens om op te schonen
    Conversie starten

    #177508
    stall20080
    Participant

    my problem is I using a page called “forums” for index [bbp-forum-index] with sidebar left.
    it works great until I click the breadcrumbs home/forums/……. to goback to forums.
    then Im getting the url version with no sidebars.

    my page details:
    forums
    siteurl/forums/

    bbpress setting no changed still

    Forum Root = forums
    Forum Prefix =ticked
    Forum root should show =forum link

    #177505
    MalMac
    Participant

    Continuing on….

    In my themes function.php file I have the following which creates my thumbnail:

    	// /bbpress/templates/default/content-single-forum
    	add_action('bbp_template_before_single_forum', 'pym_print_featured_image_single_forum', 11);
    	add_action('bbp_template_before_single_forum', 'pym_print_forum_description', 12);
    	
    	function pym_print_featured_image_single_forum() {
    		if (has_post_thumbnail()) {
    			echo '<div class="pym-bbp-topic-thumbnail">';
    			echo get_the_post_thumbnail(null, 'thumbnail' );
    			echo '</div>';
    		}
    	}

    I have been calling this elsewhere in my template using ”

    
     <?php do_action( 'bbp_template_before_single_forum' ); ?>

    I am now trying to edit content-single-forum.php to call this thumbnail using the following:

    <?php bbp_get_template_part( 'loop', 'topics' ); ?>

    How do I go about getting the thumbnail to be called in the loop?

    Thanks, Malcolm

    #177504
    Thakksy
    Participant

    Thanks @robkk I added that css and it ended up removing the entire bbpress topic widget. I’ll have to keep thinking of way ๐Ÿ™

    #177498
    Stephen Edgar
    Keymaster

    Maybe try deleting any bbpress-es_ES.po files, and then get new translations by going to http://example.com/wp-admin/update-core.php and click “Update Translations”

    #177496

    In reply to: News web site

    Robkk
    Moderator

    I think your looking for an unread posts plugin. There are quite a few you can use for bbPress.

    bbPress Pencil Unread

    bbPress Mark as Read

    bbPress New Topics

    bbPress unread Posts v2

    bbPress go to first unread post

    I personally like bbPress Pencil Unread, because with a few lines of custom css I can either have the new label or a custom image before the forum/topic title like in the other plugins. And because it has a template tag to include a mark all as read button somewhere. Other users like mark as read as it is close to vBull functionality and the go to first unread post plugin as its close to phpbb functionality. You probably would just need to use Unread Posts v2.

    #177494
    rateyourway
    Participant

    Ok i see but I still don’t know how to be able to change it.

    in the forum index it appears:

    FORO TEMAS ENTRADAS REFRESCAR

    but when you click on a forum topic then it works fine:

    DEBATE USUARIOS PUBLICACIONES รšLTIMO MENSAJE

    รšltimo mensaje is the correct! but not refrescar…maybe i will wait for bbpress 2.6 ๐Ÿ™‚

    Anonymous User 15109858
    Inactive

    Hey there.
    I’m trying to figure out if it possible to make a forum application with tables to fill information in, and then later on proceeded into the forums within a post created.
    As in a post created by a user in which he fells the tables with the needed information.

    I would be greatly appreciated with any help!

    #177487
    Pascal Casier
    Moderator

    Hi Eric,
    This issue is already reported in https://bbpress.trac.wordpress.org/ticket/2677. A first patch is available so people are working on it to get it fixed in one of the next versions.
    Pascal.

    #177485
    ntfrance
    Participant

    I import an SMF forum BBPress but imports still hangs, I have read that the matter must go line by line to identify the line that has an error but what is the line?

    — 255 -256 topics

    This is the topic that crashes import 256 or 256 is the line of the table topics SQL

    Thank you in advance and sorry for the English

    #177484

    Topic: News web site

    in forum Installation
    ntfrance
    Participant

    Hello everybody, I am looking for information to redesign my website.

    I look for an option that is found on many message but I do not find this one in bbpress.

    This option allows to display a small icon in front of the topics when new mail response is a kind of visual notification on the forum.

    This option is available on bbpress it?

    Thank you in advance and sorry for the English

    #177483
    Pascal Casier
    Moderator

    Hi Eric,
    Best pratice is never to edit existing files ๐Ÿ™‚ It gets overwritten with the next release.
    Have a look if you find something in my response here: https://bbpress.org/forums/topic/setup-login-for-private-forum/
    Pascal.

    #177478

    In reply to: Translation German

    Robkk
    Moderator

    I don’t think you have to download the files anymore. I think all you have to do is change your language in Settings > General now.

    Here is the list of translations. German seems to be at 100%.

    I guess try what I said above, because a WordPress update possibly changed the language directory for each plugin.

    https://translate.wordpress.org/projects/wp-plugins/bbpress

    #177475
    Robkk
    Moderator

    The “by” is printed in php, as displayed in this code here.

    https://github.com/ntwb/bbPress/blob/master/src/includes/common/widgets.php#L822

    There is a way to use CSS to hide the “by” though. It will look like the topic title has a little margin away from the topic authors name.

    Here is a custom CSS example.

    .widget_display_topics li {
      visibility: hidden;
    }
    
    .widget_display_topics li > * {
      visibility: visible;
    }

    There might be a way to use a plugin like Loco translate to just translate “by” to nothing also, but I have never tried that plugin before, and I am not 100% if that would even work. But it could be another possibly easy solution.

    #177474
    Robkk
    Moderator

    Robin might be on to something with the url thing. Robins suggestion works fine, but I usually suggest looking into using the Reveal IDs plugin, as it really makes it easier by just adding a column in posts like Forums > All Forums list and users list in the WordPress backend.

    https://codex.bbpress.org/getting-started/faq/#findpostid

    #177473

    In reply to: meta-single-topic

    Robkk
    Moderator

    @rateyourway

    Its a custom bbPress template file in your theme. I suggest you contact your theme developer. Maybe they can make the custom bbPress layout translatable by a few code tweaks.

    #177472
    Robkk
    Moderator

    @aviazz

    You already should have a way to view topics with no replies. By default bbPress has a feature called Views. It allows you to display topics with various different arguments. Topics with no replies should be one of the 2 default views which are Most popular topics and Topics with no replies

    You can link to the existing page using the Topic Views widget in your sidebar, or you can use a shortcode already provided by bbPress to display a view shortcode in a page and add it to a menu. You can also also instead add a custom link to a menu in the menus section in Appearance > Menus if you do not need to use a shortcode in a page.

    The widget is called the Topic Views widget that you will be able to see in Appearance > Widgets or you can manage your sidebars using the Customizer API in Appearance > Customize in the WordPress backend.

    https://codex.bbpress.org/features/widgets/

    The shortcode you would want to use is [bbp-single-view id='no-replies']

    https://codex.bbpress.org/features/shortcodes/#views

    If for some reason you may not already have the default view. See if its related to a theme/plugin function removing the default view by troubleshooting.

    Plugin Troubleshooting

    https://codex.bbpress.org/getting-started/troubleshooting/#plugins

    Theme Troubleshooting

    https://codex.bbpress.org/getting-started/troubleshooting/#themes

    If its not a theme/plugin issue we can check to see if its a possible bug causing an issue.

    #177471
    Stephen Edgar
    Keymaster

    @rateyourway The “freshness” term has been removed from bbPress 2.6 (/dev) so you will not see it in the translation files, it is still there for the current bbPress 2.5.x see:
    https://translate.wordpress.org/projects/wp-plugins/bbpress/stable/es/default?filters%5Bterm%5D=freshness&filters%5Buser_login%5D=&filters%5Bstatus%5D=current_or_waiting_or_fuzzy_or_untranslated&filter=Filter&sort%5Bby%5D=priority&sort%5Bhow%5D=desc#

    Edit: The string may also be coming from your theme, switch themes to one of the included “Twenty” themes to double check.

Viewing 25 results - 10,551 through 10,575 (of 64,454 total)
Skip to toolbar