Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 9,776 through 9,800 (of 26,866 total)
  • Author
    Search Results
  • #145430

    Topic: Mark as read

    in forum Troubleshooting
    qlymax
    Participant

    Hello,

    I’m looking for a way to show which topics have some new replies. Also I want a button ‘Mark all as read’. I’ve downloaded some plugins but none of them worksfine.

    The plugins i’ve tried:
    BBpress pencil unread — http://wordpress.org/plugins/bbpress-pencil-unread/ (shows the mark all as read but don’t do anything when pressed)
    BBpress unread posts — http://wordpress.org/plugins/bbpress-unread-posts/ (shows a notice of new replies but all the topics are now ‘NEW’ and there is no ‘Mark all as read’ button)
    BBpress Mark as read — http://wordpress.org/plugins/bbpress-mark-as-read/ (doesn’t work at all)

    Please help me,

    My website is: http://www.friendsofgaming.nl

    Thanks!

    #145423
    palmdoc
    Participant

    I am also curious as there should be some fine tuning here otherwise I agree that updating the activity stream with forum posts and replies will result in too much duplication of updates
    I am trying this old plugin to see if it will help:

    https://wordpress.org/plugins/buddypress-block-activity-stream-types/

    #145421
    Stephen Edgar
    Keymaster

    I am not sure how Register Plus Redux registers the new profile fields though an alternate way would be to use user_contactmethods

    https://codex.wordpress.org/Plugin_API/Filter_Reference/user_contactmethods

    So here is an alternate method using that method as a single standalone plugin:

    I’m not saying there is anything wrong with the method you used, just an alternate method.

    You could add as many or few extra fields as you want πŸ˜‰

    Source: https://gist.github.com/ntwb/11241301

    
    <?php
    /*
    Plugin Name: bbPress - CLB Add user school to reply author details
    Plugin URI: https://gist.github.com/ntwb/11241301
    Description: bbPress - CLB Add user school to reply author details
    Version: 0.1
    Author: Stephen Edgar - Netweb
    Author URI: http://netweb.com.au
    */
    
    function clb_user_contact_methods( $user_contact ){
    
    	/* Add user contact methods */
    	$user_contact['school'] = __('School Name');
    
    	return $user_contact;
    }
    add_filter('user_contactmethods', 'clb_user_contact_methods');
    
    function clb_school_replies_author() {
    
    	echo get_user_meta(bbp_get_reply_author_id(), 'school', true);
    
    }
    add_action( 'bbp_theme_after_reply_author_details', 'clb_school_replies_author' );
    
    

    As it displays in each reply under the author details

    As it displays on a users profile page

    #145420

    Thanks Stephen,

    I have raised the same issue in other post so We will have some updates there

    https://wordpress.org/support/topic/handling-session-load-capacity?replies=3#post-5494586

    #145411
    Stephen Edgar
    Keymaster

    or it is depending on the wordpress site?

    This, basically dependant upon what WordPress can handle.

    #145409
    Stephen Edgar
    Keymaster

    There appears to be quite a few though I have not used any take a look at the WordPress plugins:

    https://wordpress.org/plugins/search.php?q=facebook+login+bbpress

    #145403
    Stephen Edgar
    Keymaster

    Maybe use some other bbPress/BuddyPress conditional tags

    bbPress Conditional Tags

    Template Tag Reference

    Note: The BuddyPress codex page is undergoing some updates. There are a few that are now depreciated, you can find an accurate list here.

    I also wrote a plugin that makes it super easy to see what conditional tags are being used on a page πŸ™‚

    https://wordpress.org/plugins/query-monitor-bbpress-buddypress-conditionals/
    (You first need to install https://wordpress.org/plugins/query-monitor/)

    #145402
    Stephen Edgar
    Keymaster

    You could write some custom code to do it in a child theme though it would probably be quicker to fork an existing plugin that will do it for you with bbPress.


    @imath
    ’s BuddyPress plugin comes close to what you want I think and would be a good starting point to convert it from BuddyPress to bbPress.

    https://wordpress.org/plugins/bp-avatar-suggestions/

    #145374
    Robin W
    Moderator
    #145373

    Hi All,

    I just wanted to know How many sessions can be handled in BBpress. I am just concern about the load it can handle. or it is depending on the wordpress site?

    Iam just confused. Any help would be appreciated.

    Thanks,
    Kailash

    #145369
    Stephen Edgar
    Keymaster

    I don’t know if any of the avatar plugins will do what you need it to do though with ~350 + avatar plugins via https://wordpress.org/plugins/search.php?q=avatar and/or 26 listed also with ‘bbPress’ at https://wordpress.org/plugins/search.php?q=avatar+bbpress maybe take a look at some of these other plugins and see if one of those will do what you want.

    #145366

    It sounds like this theme added bbPress specific templates to both the parent theme, and the child theme, both of which are overriding bbPress’s default template compatibility (because bbPress will yield to those overrides, which is how you can customize bbPress without needing to hack bbPress.)

    Can be a bit confusing at first, especially since there’s no real indication of what is being loaded from where.

    You could try installing the WordPress Debug Bar plugin, and then install the bbPress Debug Bar extension: https://wordpress.org/plugins/debug-bar-bbpress/

    This will give you some information about what bbPress template is loading from where, but it’s still only providing a small window into a somewhat hidden experience.

    #145364
    Matoca
    Participant

    Update. Monday I asked my iPad, iPhone moderator to see if she could get a keyboard to come up, see what she was typing and actually post to the forum. She reported that it was working perfectly! No kidding! So after the WordPress 3.9 upgrade, the tinyMCE 4 upgrade has improved interaction with iPads and iPhones.

    See: http://www.tinymce.com/index.php
    Also: tinyMCE 4 has a presentation that explains what is different.
    http://www.tinymce.com/presentation/index.html#/

    I did a little research about tinyMCE because honestly it sounds like the name of a toy. So once I found the name, Tiny Moxiecode Content Editor, it made more sense to me. Wikipedia describes it as “platform-independent web-based JavaScript/HTML WYSIWYG editor control.” So, in a sense, this is the core element of WordPress (and other CMS platforms), giving the user the ability to get content on the blog without having to necessarily understand anything about HTML.

    After browsing some forums I better understand that this upgrade of WP and tinyMCE has rendered many previous plugins dead in the water. It means that users need to do some serious spring cleaning and get rid of any plugins that have not been specifically updated for use with WP 3.9.

    A lot of plugins have necessarily cropped up over time to add back lost functionality in tinyMCE as functions were removed. So the bbPress plugin I was using in the past that added back the visual tab to the forum message field was just one of many. Luckily I did disable it prior to the release of 3.9 but it clearly was already unstable with 3.8.

    I made a mistake when I posted earlier, enabling the tools in the dashboard does give them to everyone who is not registered or logged in, not just those logged in as moderators. So I have rethought having the text editor tools on the open forum. I don’t like the ability of non-registered posters to add images directly nor do I like them adding links. These people don’t register so I have removed all editing tools from the forum in forum>settings. I have asked moderators to use the tools in the dashboard for adding images and links. Perhaps there will be a plugin in the future that will allow moderators with administrator rights to have these tools directly in the forum, but not have them accessible to the general public?

    So if you do want your moderators to have undo, redo, add link, remove link and insert/edit image in the forum then enable this in forum>settings, it standard with tinyMCE 4, and looks exactly as it does on this forum

    I became interested in more functionality and I installed TinyMCE Advanced plugin this afternoon to play with. I realized the many things I could do just with tables! So it’s a versatile plugin and they claim has been tested with 3.9.
    my best, matoca

    #145362
    jbdizzle
    Participant

    Man, I tried just about anything that I can think of other than installing a new wordpress theme and starting from scratch… I ran across this by the way:

    How to Use
    The plugin creates a new menu item, Appearance β†’ Suffusion bbPress Pack. Once you click on that, you will see the capability to (Re)Build bbPress Files. If you click on this button, all your bbPress-specific templates will be regenerated. You can selectively pick specific folders that you want to overwrite.Note that this action is irreversible.

    So what are my options?

    #145346
    Matt
    Participant

    Hello,

    My sidebar is missing with my newly installed Striking MultiFlex theme. I’ve tried many of the solutions from this board, but none have worked.

    These did not work:
    http://codex.bbpress.org/theme-compatibility/

    http://bpsocialnetwork.wordpress.com/2013/06/02/twenty-eleven-theme-compatibility/
    I think Step 3 is missing a ‘)’, but I don’t know where to put it.

    Any ideas on how to make my sidebars appear on all of my bbpress pages? My site is in maintenance mode, so I can’t post a link.

    Thanks,
    Matt

    #145337
    batmanfan
    Participant

    Has anyone used this plugin and successfully set up? I tried with no success πŸ™ Is it compatible with bbpress forum? Thanks

    #145336
    Stephen Edgar
    Keymaster

    This could be an issue with your rewrite rules. To fix this try resetting your permalinks. In your WordPress Administration Screens navigate to Settings > Permalinks, select a different permalink structure and save. Then select your preferred permalink structure and save again.

    #145335
    janfeng
    Participant

    I want wordpress = post_name
    and bbpress = post_id

    #145331
    Stephen Edgar
    Keymaster

    You can select from various default avatars included with WordPress in the WordPress Dashboard -. Settings -> Discussion (/wp-admin/options-discussion.php)

    Or look at adding one of the many avatar plugins:

    https://wordpress.org/plugins/search.php?q=avatar and/or https://wordpress.org/plugins/search.php?q=avatar+bbpress

    I don’t mind editing core files if that is what needs to be done.

    This should never be done, when WordPress or bbPress has an update you will lose the changes you made.

    #145329
    DietPipsi
    Participant

    Hello. I would like to know if there is a plugin or work-around to have a folder or drop-down list of folders to choose from a listing of pre-uploaded avatars, similar to other forum softwares.

    I do not want users to use gravatar, twitter or upload their own avatars. I just want a listing from the folder on my website. However, I am having trouble finding a plugin or tutorial on how to do this.

    I apologize if what I am asking for is something simple to do, because I am completely new to wordpress and bbpress (I came over from phpbb). I don’t mind editing core files if that is what needs to be done. Any help would be greatly appreciated.

    #145314

    In reply to: Unread Posts

    Stephen Edgar
    Keymaster

    I just moved @conundrum89 reply to it’s own topic:

    Plugin: bbPress Go To First Unread Post

    == Description ==

    bbPress Go To First Unread Post is a literally named plugin that allows registered users to jump to the first Reply in a Topic that they haven’t viewed yet. This gives your bbPress forum the simple and expected functionality of non-WordPress counterparts like phpBB, without a lot of coding.

    First, you activate the plugin on a blog that already has the bbPress plugin enabled. This is all you need to do to activate the basic functionality of the plugin, which includes:

    * Automatic tracking of last reply viewed, per topic per user.
    * Link next to the title of a topic if the user has unread posts (between the title and pagination)

    The plugin also includes two template tags for extra functionality:

    * Mark Topics as Read link
    * Mark Forum as Read link

    #145309
    Matthew Rowland
    Participant

    Here it is!

    bbPress Go To First Unread Post

    I hope this suits your needs, guys. If there’s something that doesn’t work or you’d like added, you can let me know here or send me an email through the Plugin page.

    Please consider donating if you enjoy it! πŸ™‚

    #145308
    Matthew Rowland
    Participant

    Here it is!

    bbPress Go To First Unread Post

    I hope this suits your needs, guys. If there’s something that doesn’t work or you’d like added, you can let me know here or send me an email through the Plugin page.

    Please consider donating if you enjoy it! πŸ™‚

    #145297
    Hardeep Asrani
    Participant

    @tharsheblows That’s not only. I have also submitted a ticket to add this in core & fortunately, it will be the part of the next bbPress release: https://bbpress.trac.wordpress.org/ticket/2519

    #145295
    Robin W
    Moderator

    ‘I am using bbpress forum for Members Only’

    do you mean

    Add bbPress Members Only Forums to Your WordPress Membership Site

    or another plugin?

Viewing 25 results - 9,776 through 9,800 (of 26,866 total)
Skip to toolbar