Search Results for '+.+default+.+'
-
Search Results
-
Hi team. These are my three most pressing questions. Thanks.
Problem on My website is at homepage: https://www.teamakoka.com
1. I really want to change only the default bbpress topic colour in the topic index to black (which was set navy blue by the theme because of it’s default link colour)
2. How can I change background colour of the first post in a topic content as it is on your support forum.
3. How can I add the login fields to the topic content for users that are not logged in (as it is on your support forum)Thank You 🙂
Topic: Visual editor not appearing
Just installed BBPress, and see that the editor is barebones html.
I’ve learned from this codex page that the visual editor is disabled by default – so I added the code snippet to my functions file, but no effect at all. Added TinyMCE Advance plugin, no effect at all.
What could be wrong?
(note: I see all sorts of references to “enable fancy WP editor” in older posts here, but can’t find that setting)
WP 4.8.3
BBpress: 2.5.14Hi folks, after accidently creating a log an struggeling to get it out of the database again, i wondered, how i can make the checkbox for the revision log unchecked by default.
Thanks in advance
DominikHi Guys,
Anyone knows how to modify the content-archive-forum.php located in wp-content\plugins\bbpress\templates\default\bbpress using a custom plugin(not in the theme)? Is it possible?
Hi can someone help me a have custom login in my forum page a want create custom pages for register and lost password a don’t want redirect user to default wordpress register page.
Hi
I have a weird problem with bbpress
most of the words in bbpress is not translated but some is
like: Freshness is in english but the no topics is translated to arabic
i have the latest version of bbpress
i have configured wp_config.php to arabic
and my default wordpress language is arabic
also i double checked all the translation files in this directory
–/wp-content/languages/bbpress
and
—/wp-content/languages/plugins/bbpress
and still a lot of sentences is completely in english even though when i use the loco translation plugin and search for this words they show up translated just fineHi
I have a weird problem with bbpress
most of the words in bbpress is not translated but some is
like: Freshness is in english but the no topics is translated to arabic
i have the latest version of bbpress
i have configured wp_config.php to arabic
and my default wordpress language is arabic
also i double checked all the translation files in this directory
–/wp-content/languages/bbpress
and
—/wp-content/languages/plugins/bbpress
and still a lot of sentences is completely in english even though when i use the loco translation plugin and search for this words they show up translated just fineHello Guys,
I think I have found a bug. But at first some Info from the System:
WP version 4.8.2
PHP version 7.0.22-0ubuntu0.16.04.1
bbPress version 2.5.14-6684I want the hide the Tag-Input for all “normal” Users. So only the Keymaster and the mods can assign tags. I found, that I can hook into the capatiblities with
bbp_get_caps_for_roleand set the settings tofalse:`
add_filter(‘bbp_get_caps_for_role’, function ($caps, $role) {
// only the admin can delete and manage topic tags
if (!in_array($role, [‘bbp_keymaster’])) {
$caps[‘manage_topic_tags’] = false;
$caps[‘delete_topic_tags’] = false;
}// only mods and admin can edit or assign tags
if (!in_array($role, [‘bbp_keymaster’, ‘bbp_moderator’])) {
$caps[‘edit_topic_tags’] = false;
$caps[‘assign_topic_tags’] = false;
}return $caps;
}, 10, 2);
But the problem is, that in
template\defaults\bbpress\form-reply.phpwe check with:<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags' ) ) : ?>current_user_cancallsWP_User->has_capand there is$capabilities['assign_topic_tags'] = true.—–
Workaround:
`
add_filter(‘user_has_cap’, function($caps, $metaCaps, $args) {
$forumCaps = bbp_get_caps_for_role($args[0]);return array_merge($caps, $forumCaps);
}, 10, 4);
`I created a custom page for the forum “home page”. bbPress has clickable breadcrumbs and “Forum” will load the default bbPress forum home, as such I added the following to my .htaccess to redirect the user to my custom page:
RewriteEngine On RewriteRule /forums$ /the-forumThis redirects the user:
from: http://ok.thissiteworks.com/forums/ (bbPress forum home)
to: http://ok.thissiteworks.com/the-forum/ (custom forum home)That works – but only for logged in users. When a user is not logged in the redirect does not work.
- Can someone advise why this would not work for not logged in users?
- Is there perhaps a better way to redirect the users to the custom page?