Search Results for '\"wordpress\"'
-
AuthorSearch Results
-
April 24, 2014 at 1:51 pm #145443
In reply to: change forum sidebar
Robin W
ModeratorJust spotted you post on the wordpress forum :
‘My theme (MH Magazine) has no bbPress template by default, so I copied my full-page-width template and renamed it plugin-bbpress.php. I’ve got the forums page set to this template’
If this is how you have it currently, then it is a sidebar template from your theme that you need, not a full width page one. With a siderbar theme, then wp-tweaks will pick this up and add the forum one to the page.
April 24, 2014 at 1:46 pm #145442In reply to: Per Forum Permissions by Group
Robin W
ModeratorOk, I’ve just finished a new plugin called
bbp Private Groups
This plugin adds private groups to the forums, allocating users to up to 8 groups, and combinations of forums to those groups, creating multiple closed forums.
download from
Let me know what you think.
I’ll add this to the wordpress plugin repository in the next few days
April 24, 2014 at 1:43 pm #145441In reply to: Forum visibility and readability
Robin W
ModeratorOk, I’ve just finished a new plugin called
bbp Private Groups
This plugin adds private groups to the forums, allocating users to up to 8 groups, and combinations of forums to those groups, creating multiple closed forums.
download from
Let me know what you think.
I’ll add this to the wordpress plugin repository in the next few days
April 24, 2014 at 1:42 pm #145440In reply to: Password Protect Each Forum
Robin W
ModeratorOk, I’ve just finished a plugin called ‘bbp Private Groups’
This plugin adds private groups to the forums, allocating users to up to 8 groups, and combinations of forums to those groups, creating multiple closed forums.
download from
Let me know what you think.
I’ll add this to the wordpress plugin repository in the next few days
April 24, 2014 at 11:59 am #145437In reply to: Please help with space after paragraph.
WARTORIOUS
ParticipantTheme: modified portfolio press:
/*
Theme Name: Portfolio Press
Description: Portfolio Press is a responsive theme for showcasing your photography, art, web sites, or other projects. It also works nicely as a regular blog site. An options panel is included for uploading logos and and changing the layout. There’s also support for the image, gallery and quote post formats. Visit the demo site or watch the video screencast for set up instructions.
Author: Devin Price
Author URI: http://wptheming.com/
Theme URI: http://wptheming.com/portfolio-theme/
Version: 1.7
License: GNU General Public License
License URI: license.txt
Tags: white, black, gray, two-columns, left-sidebar, right-sidebar, flexible-width, custom-menu, full-width-template, microformats, post-formats, rtl-language-support, theme-options, translation-readyCredits:
Portfolio was built on the solid foundation of Toolbox:
https://wordpress.org/extend/themes/toolboxReset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/MODERATOR EDIT: I removed the ~1200 lines of code here, use pastebin or a gist on GitHub for big code dumps.
April 24, 2014 at 8:43 am #145432Topic: Unable to create new topic
in forum TroubleshootingJatinder Dhiman
ParticipantI have done a fresh installation of wordpress & bbpress and created new topics under forum but my users are unable to create a new topic. Please let me know if anybody knows.
April 24, 2014 at 7:22 am #145430Topic: Mark as read
in forum Troubleshootingqlymax
ParticipantHello,
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!
April 24, 2014 at 2:17 am #145423In reply to: Stop bbPress from posting to Activity Stream
palmdoc
ParticipantI 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/
April 24, 2014 at 12:19 am #145421In reply to: add custom profile field or group as signature?
Stephen Edgar
KeymasterI am not sure how Register Plus Redux registers the new profile fields though an alternate way would be to use
user_contactmethodshttps://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
April 23, 2014 at 11:43 pm #145420In reply to: User / Session Handling capacity
mailtokailashchander
ParticipantThanks 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
April 23, 2014 at 7:43 pm #145411In reply to: User / Session Handling capacity
Stephen Edgar
Keymasteror it is depending on the wordpress site?
This, basically dependant upon what WordPress can handle.
April 23, 2014 at 7:29 pm #145409In reply to: Log into bbpress forum with Facebook plugin?
Stephen Edgar
KeymasterThere 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
April 23, 2014 at 7:19 pm #145403In reply to: is_bbpress() defined on the BuddyPress profile page
Stephen Edgar
KeymasterMaybe use some other bbPress/BuddyPress conditional tags
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/)April 23, 2014 at 7:08 pm #145402In reply to: Avatar Folders (to choose pre-made avvys?)
Stephen Edgar
KeymasterYou 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.
April 23, 2014 at 4:30 am #145374In reply to: where meeting, scores posts?
April 23, 2014 at 4:18 am #145373Topic: User / Session Handling capacity
in forum Troubleshootingmailtokailashchander
ParticipantHi 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,
KailashApril 23, 2014 at 1:13 am #145369In reply to: Avatar Folders (to choose pre-made avvys?)
Stephen Edgar
KeymasterI 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.
April 22, 2014 at 11:34 pm #145366In reply to: Suffusion bbpress pack issues
John James Jacoby
KeymasterIt 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.
April 22, 2014 at 9:54 pm #145364In reply to: Moderator Unable To Post To Forum: iPhone iPad
Matoca
ParticipantUpdate. 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, matocaApril 22, 2014 at 9:28 pm #145362In reply to: Suffusion bbpress pack issues
jbdizzle
ParticipantMan, 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?
April 22, 2014 at 11:41 am #145346Topic: Sibe Bar Missing with Striking MultiFlex Theme
in forum TroubleshootingMatt
ParticipantHello,
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,
MattApril 22, 2014 at 8:14 am #145337Topic: WordPress Social Login
in forum Pluginsbatmanfan
ParticipantHas anyone used this plugin and successfully set up? I tried with no success π Is it compatible with bbpress forum? Thanks
April 22, 2014 at 6:35 am #145336In reply to: Forum topic path incorrect / not found
Stephen Edgar
KeymasterThis 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.
April 22, 2014 at 6:33 am #145335In reply to: Want post_id only , how ?
janfeng
ParticipantI want wordpress = post_name
and bbpress = post_idApril 22, 2014 at 6:29 am #145331In reply to: Avatar Folders (to choose pre-made avvys?)
Stephen Edgar
KeymasterYou 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.
-
AuthorSearch Results