Forum Replies Created
-
In reply to: Strange forum formatting
I think this is a known issue with a resolution – see the last post in this thread
https://wishlistproducts.zendesk.com/entries/457628-Integration-with-bbpress-
Do come back if that doesn’t fix.
In reply to: I need to enlarge some font-sizesgreat, glad you’re fixed !
In reply to: Layout-Problem (breadcrumbs and subscribe-link)In reply to: Per Forum Permissions by GroupYou can just deactivate then delete the current plugin, and then upload the new one – no settings will be lost
In reply to: No search results in insert link boxthen it’s probably a conflict with one of your 29 other plugins ! 🙂
In reply to: No search results in insert link boxSuspect it is theme or plugin related!
Normally I’d just post the standard text viz
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, switch to a default theme such as twentytwelve, and see if this fixes.
but with 29 plugins that could take you a while ! and it could even be a combination.
Think I’d start with a quick theme change to eliminate that and then I suppose it depends on who needs access as non admin but able to add links as to whether you plough through and work out where it is failing.
In reply to: Per Forum Permissions by Groupnew version 1.5 with unlimited groups just added to website
and will be uploaded to wordpress plugins in the next few days !
In reply to: New Users Auto Subscribe to One Forumkeep us updated, this is not my field of expertise, so can’t directly help you !
In reply to: New Users Auto Subscribe to One Forum@iclimb hopefully Nathan will share his solution with us.
In reply to: Per Forum Permissions by GroupThanks, glad you are finding it useful. The unlimited groups version is on it’s way, I’ve coded it, but just need to tidy up the user interface.
bbPress have said that they intend to have groups in the core product at some stage, but I have no idea on timescales.
In reply to: Per Forum Permissions by Group@vikr0001 – thanks for your comments.
There are many ‘group’ and ‘member’ plugins for wordpress out there, and whilst they share some common features, many work in totally different ways, and to make my plugin work with any/all of these could be very difficult.
Alongside this people use group and member plugins in different ways, so how you would like my plugin to work with groups may be different from how someone else would like to
I can usually however make it so that my plugin doesn’t conflict – ie not cause any issues and can be used alongside.
If my plugin is conflicting with ‘groups’ plugin, please let me know and I’ll take a look.
If you want me to look at any further at compatibility, can you summarise what you would like my plugin to do with the groups plugin that it currently doesn’t, and I may take a look to see how easy that would be to do.
Regards
Robin
In reply to: New Users Auto Subscribe to One ForumThe function is
bbp_add_user_forum_subscription
it is in
bbpress/includes/users/functions.php
you pass it user-id and forum_id
In reply to: Can't Access Replies in Dashboard: 500 Server ErrorI think you’ve had your forum for a while now? Presume you’ve not loaded a new plugin?
Otherwise, can’t really suggest anything else.
Hopefully someone better than me will pop in and suggest something ! 🙂
In reply to: bbpress should offer to login in forumActually
<p> <?php if (!is_user_logged_in()) echo do_shortcode ('[bbp-login]') ; ?>
would be a better line of code, as then someone logged in with a spectator role would not see the login prompt
In reply to: bbpress should offer to login in forumIf you want a quick solution to this
create a directory within your theme called bbpress
ie wp-content/your-theme-name/bbpress
And into this folder copy the following file
bbpress/templates/default/bbpress/form-reply.php
Then alter this file to have a new line 175 as follows
<p> <?php echo do_shortcode ('[bbp-login]') ; ?>
so that
<div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply"> <div class="bbp-template-notice"> <p><?php is_user_logged_in() ? _e( 'You cannot reply to this topic.', 'bbpress' ) : _e( 'You must be logged in to reply to this topic.', 'bbpress' ); ?></p> </div> </div>
becomes
<div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply"> <div class="bbp-template-notice"> <p><?php is_user_logged_in() ? _e( 'You cannot reply to this topic.', 'bbpress' ) : _e( 'You must be logged in to reply to this topic.', 'bbpress' ); ?></p> <p> <?php echo do_shortcode ('[bbp-login]') ; ?> </div> </div>
Save this file, and bbpress will use this and a login panel will be displayed.
In reply to: Wierd CSS – please adviseIf my response in
does not solve it, please respond on that thread
Thanks
ok, it could be coded, but is not available as far as I know.
In reply to: Personalize bbPress Recent Topicssorry it was the weekend, and all the helpers on here are volunteers on have jobs and a social life to lead as well 🙂 please be patient.
The coding for this is quite complicated, but I’d suggest you start by looking at the bbp_has_topics function in
bbpress/includes/topics/template
this will give you a lot of the code for pagination
great – glad you’re fixed !
Not sure if this parameter is there ie set or just blank in buddypress
However you can test if empty – empty meaning not set or set to 0 or set to “”
by changing
echo 'Location: ' . $user_location;
to
if (!empty($user_location)) {echo 'Location: ' . $user_location; }
In reply to: main forum page not workingIt could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, switch to a default theme such as twentytwelve, and see if this fixes.
Do you mean that when registering, the user would put in their email address, and the username would be generated from that?
In reply to: Why is BBPress not following css?May be as simple as the order that the plugins are loading.
see
No. 6
you could also put the word !important after the change to prevent bbpress overriding it eg
/* Remove nav bar and search form */ .page #nav-bar { display: none !important; } .page #s { display: none !important; }
you’re welcome !!