Нow to restrict create new tags for topic & answers by users?
preferably without new plugins and role settings.
Now I can close the tag field with the css method – but may be through the code better?
Нow to forbid create new tags for topic & answers by users?
Published on August 24th, 2020 by neon67bbPress Profile Link Shortcode Plugin
Published on August 23rd, 2020 by uksentinelThere used to be a plugin called ‘bbPress Profile Link Shortcode’ created by ‘Tyler Tervooren’
Alas this plugin is out of date, is there any equivalents ?
Another user’s edit page jumps to the profile page
Published on August 23rd, 2020 by robertheroldHello,
If I’m not an admin and I want to edit another user, I jump to the user’s profile.
Such as:
/user/USERNAME/edit/ -> /user/USERNAME/
I want the same on the following pages:
/user/USERNAME/topics/ -> /user/USERNAME/
/user/USERNAME/replies/ -> /user/USERNAME/
/user/USERNAME/engagements/ -> /user/USERNAME/
/user/USERNAME/subscriptions/ -> /user/USERNAME/
In other words, can I hide these pages as well as the edit page?
Thank you!
User Switching plugin, specific accounts
Published on August 23rd, 2020 by serendipiseaI want to be able to link two accounts together, such that the user can post as either of the accounts easily and switch between them, but I DO NOT want them to be able to access *all* of the accounts that match their role.
Is there a way to do this?
If so, is there a way to create a dropdown, so people can switch to their linked accounts from the front end?
Allow Users to Edit There Profile Icon on menu Bar
Published on August 22nd, 2020 by uksentinelI am trying to create (and have been for a few days) a way to do exactly what happens when you log into this wonderful bbpress.org forum, after logging in you can then select your user icon with the users name and enable them to edit there own bbpress profile details.
How do I do this simply ?
reverted information
Published on August 22nd, 2020 by jl63Ce forum contient 5 sujets (+ 1 masqué) et 11 réponses, et a été mis à jour pour la dernière fois par 20 août 2020 à 18:37 le admin4789.
I use bbpress with bbp-style-pack and this the message that I have in the list of topics
Code behaving abnormally
Published on August 22nd, 2020 by nayanboostI have written the below script to restrict users to access forums or topics. Here are the conditions:
1. If user in not logged in will be redirected to “Join” page.
2. If user is logged in but doesn’t have “pmpro_role_1” role, he will be redirected to “Product Page”.
3. If a user is the administrator, he can view the page.
The problem here is for topics in forum it is working except the latest created topic. And it is taking user to “Join” page even if the user is logged in and have the “pmpro_role_1”. What is happening here?
Please help.
add_action ('template_redirect', 'forum_security');
function forum_security(){
$roles = wp_get_current_user()-> roles;
if(is_singular( array( 'forum', 'topic' ) )){
if(!is_user_logged_in()){
wp_redirect('/join');
exit;
}else{
if(current_user_can('administrator')){
return;
}elseif(!in_array('pmpro_role_1', $roles)){
wp_redirect('/product/channel-mcgilchrist');
}
}
}
}
Strip all html tags forms
Published on August 21st, 2020 by marcotroostHi!
How does one completely strip all html tags from forms (new topic, reply)? I do not want users to be able to style their postings, and i certainly do not want them to be able to insert links.
regards, Marco
Registration Account
Published on August 20th, 2020 by ChristineZHeeelllloooo bbPress! 🙂
This is my first time writing you and I have first say, I LOVE your plugin. GREAT job!
I have a couple of question about the Registration page.
Website: http://zolofly.com/register/
WordPress Version: 5.5
bbPress Version: 6.2.0
1) How can extend the Profile Details … under the Account Details so that the page lays out nicely?
Screenshot for your reference: http://prntscr.com/u36rrl … make since?
2) How can I make some columns for the Hobbies? Rather than it just being one long row.
3) Where can I add the Terms and Conditions next to the Privacy Policy?
Screenshot for questions 2 and 3 for your reference: http://prntscr.com/u36tex
That’s it and thank you so much for your support,
Christine 🙂
Display Topic Tags Count
Published on August 20th, 2020 by chandra08Hello,
I want to ask about topic tags, is there any shortcode to display topic tags count? because when I put 404
admin
akismet
alpha
Anonymous
avatar
bbpress
breadcrumbs
buddypress
bug
cookies
css
custom
database
email
error
Forum
forums
freshness
getting started
help
htaccess
i18n
import
install
installation
integration
keymaster
language
localization
login
menu
Moderation
mod_rewrite
notifications
Page
pagination
password
permalink
Permalinks
permissions
PHP
phpBB
plugin
plugins
post
posts
private
problem
profile
redirect
register
registration
replies
reply
roles
RSS
search
shortcode
Shortcodes
sidebar
spam
Sticky
tags
template
templates
theme
themes
TinyMCE
topic
topics
translation
upgrade
URL
user
username
users
widget
WordPress
wpmu shortcodes, the shortcodes only displaying name of topic tags and if topic tags popular, the topic tags name more larger.
I want to be like this:
topic tag1 (5)
topic tag2 (1)
topic tag3 (4)
and so on.
Is there any ideas?
Thank You.