Forum Replies Created
-
sorry, but very long and quite confusing questions.
you url would be very helpful so that we can see what your issues are.
on # 1 – where are you seeing these? – on shortcodes, widgets or where. Please describe current process, and what you would like to happen.
on #2 – need a url so that we can see
In reply to: Cant create a new forumIt 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, as a test switch to a default theme such as twentytwelve, and see if this fixes.
In reply to: Problems with bbpress 2.5.4. and side barsok, I am trying to help you, but there are thousands of wordpress themes, and I have no idea what sidebar 2 and 3 are supposed to do.
which would you like to achieve
a full width forum or show both sidebar 2 and sidebar 3, and if the latter can you create a testpage with just some text on and post the url, sop that I can see what it should look like.
In reply to: Problems with bbpress 2.5.4. and side barsok, I’ve looked at the link
Can you specify exactly what you would like added/removed !
In reply to: bbpress forums (freshness, new topic) issueok, on no. 1
In reply to: Only Register to forum ?First one :
add this code to your functions file//disable toolbar for non-admins if (!current_user_can('manage_options')) { show_admin_bar(false); }
see
Second one
use my pluginhttps://wordpress.org/plugins/bbp-private-groups/
This will let you set exactly who can see forums
In reply to: bbpress widget shortcodewhich widget do your want?
ok, I’ve cut a version that will help debug
can you
deactivate and then delete my buddypress profile information plugin
download a new version from
and activateThen set just the first field to show, say your city one
Then go into forums, you’ll (hopefully) see a whole load of information.
Basically I need to know exactly what it says
to save you typing copy/paste the following and add answers
table prefix :
xfields :
xdata :
xpid :
xdata2 :This will help me see where it might be going wrong.
I wouldn’t rule out a localhost issue, ie it’ll work fine on the net, but not locally, some forum parts don’t like being local. It works fine on my test site 🙂
In reply to: Text Color and FontPlease let me know where I can insert this code
Into your functions file see
no, the label will always show – I’ll need to do some coding to check that the field exists.
I’ll come back
@robkk – thought you might – that’s what I’d do 🙂
ahh, that makes it a bit more difficult.
ok, the field names have to exactly match, I presume you have tried several?
ok, any chance I can have a url link to your site, so that I can see if it is trying to display, or not even starting !
yes, just change it !
you can then do one of two things
1. just make a note, so that each time I upgrade this plugin, you’ll need to go back and change the code again
2. rename the plugin in line 4 – say to
Plugin Name: bbP shortcodes robkk
and then change the directory the plugin sits in to something else
Worpdress will then tell you that you have a plugin installed but not activated called bbP shortcodes robkk, and that the plugin bbp shortcodes no longer exists, and you can then delete it.
In reply to: Menu link to Profilegreat – glad you’re fixed !
When I migrated the site to my clients server for testing I was disappointed to find that neither topic creation or reply posting was working.
when you say not working, exactly what do you mean, the ability to reply doesn’t appear? or it appears but doesn’t work?
I suggest that you also positively eliminate the theme as a contender and as a test switch to a default theme such as twentytwelve, and see if this fixes.
In reply to: reply list does not showmaybe 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, as a test switch to a default theme such as twentytwelve, and see if this fixes.
In reply to: Menu link to Profile@netweb thanks for posting that, thought there would be but couldn’t find it offhand.
@mathijs-lemmers ok so try<meta http-equiv="refresh" content="0;URL=http://mysite.com/forums/users/<?php global $current_user; get_currentuserinfo(); echo sanitize_file_name($current_user->user_login). ""; ?>/edit/">
the plugin
https://wordpress.org/plugins/bbp-private-groups/
should do that, just set private forum visibility to on, and non registered users will see the forums, but only registered users with that group set will see the topics
In reply to: Menu link to Profileok try this, which should tidy most usernames
<meta http-equiv="refresh" content="0;URL=http://mysite.com/forums/users/ <?php global $current_user; get_currentuserinfo(); $string = $current_user->user_login ; //Lower case everything $string = strtolower($string); //Make alphanumeric (removes all other characters) $string = preg_replace("/[^a-z0-9_\s-]/", "", $string); //Clean up multiple dashes or whitespaces $string = preg_replace("/[\s-]+/", " ", $string); //Convert whitespaces and underscore to dash $string = preg_replace("/[\s_]/", "-", $string); return $string; echo $string . ""; ?>/edit/">
No problem.
One I’ve been playing with
In reply to: User settings missinggreat – glad you’re fixed !
In reply to: Full Width Forum Helpok, I’m close to giving up on this – not that I’m not interested in fixing it, but it is just taking too much of my time.
can you post your full current bbpress.php
Great – glad you’re fixed !