Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 2,626 through 2,650 (of 26,830 total)
  • Author
    Search Results
  • #209798
    snsdtiti
    Participant

    Yes sure !

    Forum jeux d’échecs Public

    I don’t know if you can access to it

    Thank you ^^

    #209797

    In reply to: Design bbPress

    Robin W
    Moderator
    #209794
    danielshalar
    Participant

    So I just Installed bbPress for my first time because I want to create my little forum.

    I’ve been using wordpress for a while and I’m in love with it.

    Now bbpress, for what I see comes default or similar to the Theme from what I read.

    this is currently how it looks The picture of my forum site

    So my questions is there any good plugins out there to really design the buttons like the search button or the log out and the bbPress forum itself?
    Or I mustly need to do this manually by editing code and css?

    I’m really noob, I learend a little bit html,css but no more then that, any help will be very respected <3

    #209787
    Robin W
    Moderator

    it can be complicated and can require some digging to find the original phrase, but my style pack plugin has a translation section which works for quite a few

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>translations

    #209777
    Robin W
    Moderator

    is this an actual WordPress page with shortcodes in it?

    #209773
    Robin W
    Moderator

    bbp style pack

    has unread posts – maybe more than you want, but closest I can suggest

    #209769
    Robin W
    Moderator

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

    Code Snippets

    add_filter(  'ngettext',  'rew_bbpress_translate' , 20 , 5 );
    
    function rew_bbpress_translate( $translation, $single, $plural, $number, $domain ) {
    	if ($domain == 'bbpress') {
        if ($translation == 'Viewing %1$s topic') $translation = 'Viewing %1$s messages' ;
    	if ($translation == 'Viewing %1$s topics') $translation = 'Viewing %1$s messages' ;
    	if ($translation == 'Viewing topic %2$s (of %4$s total)') $translation = 'Viewing message %2$s (of %4$s total)' ;
    	if ($translation == 'Viewing %1$s topics - %2$s through %3$s (of %4$s total)') $translation = 'Viewing %1$s messages - %2$s through %3$s (of %4$s total)' ;
    	}
    return apply_filters ('rew_bbpress_translate', $translation, $single, $plural, $number, $domain ) ;
    }
    #209753
    dvlimbasiya
    Participant

    Hello Friends,

    All of the plugins are up to date and still there is conflict in jQuery and rtmedia.min.js files in buddypress-media plugin. Can anyone please help me on this.

    Wordpress version 5.3.2
    bbPress version 2.3.4
    BuddyPress version 5.1.2

    Thank you in advance.

    #209741

    In reply to: Which widget is this

    Robin W
    Moderator

    none in bbpress, but I added the capability in style pack

    bbp style pack

    once activated you’ll see it in the widgets as

    (style pack) Single topic info

    #209712
    Robin W
    Moderator

    or use

    Code Snippets

    #209705
    mrmillercoach
    Participant

    I was wondering whether anyone had come up with a solution. This is not an unusual problem.

    I did find this plugin https://en-gb.wordpress.org/plugins/bbp-toolkit/ which I will try.

    I really do not want to generate custom code.

    robertstaddon
    Participant

    I have the exact same problem as @artmuns on a brand new WordPress install. I’m running just the latest version of bbPress 2.6.4 with the latest version of WordPress and no other plugins on the default WordPress theme. On the Edit Topic screen, I can go to “Topic Attributes” and change the “Type” to “Sticky” or “Super Sticky”. However, once a topic type has been changed to “Sticky” or “Super Sticky”, if I try changing it back to “Normal” and then click “Update”, it will not change. I have to either go to the frontend or to the listing of All Topics and click “Unstick” to change the Topic type to something besides “Sticky”. This is definitely a bug with bbPress!

    #209684

    In reply to: Upload Image

    mdeotti
    Participant
    #209683
    mdeotti
    Participant

    Hi Annie,

    I have the exact same problem and share the same frustration.

    For an official WordPress Plugin that the main job is allow users to type text, the most basic thing would be to add a decent text editor for this purpose.

    Anyway, the plugin above recommended is a mess, and don’t include the image upload option.

    Try this instead:

    Inline Image Upload for BBPress

    #209674
    007elt
    Participant

    I have the same situation mentioned by Annie. I have just set up BBPress for a private forum for my volunteer community to deal with the Corona situation and was wondering about the editor. Our users would not feel comfortable with this editor and would probably complain to me about it;). I spent a lot of time searching the internet for answers and also only found older plugins so I was happy to find Annie’s recent post addressing this subject. It would be great if an editor like TinyMCE (that also allows you to upload media) was part of BBPress or if it could be activated by a click. The editor is available to use in other WordPress plugins so I too was a little confused not to find it in BBPress. In any case, it would be fantastic if it could be integrated. I certainly appreciate the efforts of the volunteers at BBPress who are generously volunteering their time and energy to work on all this stuff. Thank you.

    #209656
    Robin W
    Moderator

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

    Code Snippets

    
    add_filter(  'gettext',  'rew_bbpress_translate', 20 , 3  );
    add_filter(  'ngettext',  'rew_bbpress_translate' , 20 , 3 );
    
    function rew_bbpress_translate( $translated, $text, $domain ) {
    	if ($domain == 'bbpress') {
         $words = array(
                            
                            '%s day' => '%s jour',
    						'%s days' => '%s jours',
    						'Last Post' => 'Dernier message',
                 );
         $translated = str_replace(  array_keys($words),  $words,  $translated );
    	}
         return $translated;
    }
    #209635
    drjohndimi
    Participant

    What we wanted was to get users after they have joined/registered on the site, to go the profile page and fill in some/all of the fields in their profile page, perhaps by making the fields required/mandatory so that without completing the required fields they cannot post on the site. Is this far-fetched?

    This is the website we are working on and this is the theme we are using.

    #209634

    In reply to: few questions

    Robin W
    Moderator

    beyond free help I’m afraid

    some can be achieved using

    Private groups

    wamlibrarian
    Participant

    Since my most recent update of WordPress, I’ve had an issue with new users being able to post replies despite their status being “awaiting email confirmation”. As you can imagine, this had led to an influx of spam messages on the site.

    I’m assuming that as part of the update, some setting was changed to turn this on be default, but i have no idea how to turn it back off. Could anyone advise me?

    Currently using WordPress 5.3.2 running Twenty Seventeen theme using Version 2.6.4 at http://wamlibrary.com/forums/

    #209616
    L46
    Participant

    I deactivate all plugins except for bbpress, test to register but failed still.

    set up email to come from my site eg @mysite.com and
    contact my host provider (SG) to help – problem still.

    I install  https://wordpress.org/plugins/check-email/  
    admin accepted test email.
    but problem still too.now I deactivate plugin check-email.

    SG help me to set plugin”WP Mail SMTP” .problem still too.

    hope can assist me. thanks a lot.

    #209600
    Robin W
    Moderator
    #209580
    Mohamad Zidani
    Participant

    Hi

    I imported a topic with WP All Import (CSV), i can see the topic in wordpress back end (Wp-admin –> Topic) but in front end (Forum) not showing.

    #209574
    Robin W
    Moderator

    yes see no reason not to delete it, bbpress just uses standard WordPress tables (post, postmeta and options) BUT, I would use phpmyadmin and export it first, so you have a backup just in case!

    #209548
    Robin W
    Moderator
    #209494
    Robin W
    Moderator

    now I’ve got that out of my system, try

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topic/Reply Form

Viewing 25 results - 2,626 through 2,650 (of 26,830 total)
Skip to toolbar