Search Results for '+.+default+.+'
-
Search Results
-
Hi 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_role
and 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.php
we check with:<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags' ) ) : ?>
current_user_can
callsWP_User->has_cap
and 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-forum
This 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?
Topic: Translation of bbpress
Hello,
Can somebody please tell me how translation of bbpress works?
What I did:
I installed WordPress and set my default language
I installed bbpress plugin
I installed Loco translate
I create the map languages/bbpress on ftp
I downloaded the .po and .mo and put in the mapBut nothing is working! Can somebody help me please?
Hello Team bbpress
I am using the plugin bbpress. I want to customise that view of forum similar to http://www.veggieboards.com/forum/index.php this link.
I have created the child theme and add the css folder and archive-forums.php file in the child theme. I am not able to customise plugin using css only because I want to change the structure. If I change plugin core file then future update overwrite my code and when I am place the complete plugin in child then its stop working and page become blank.
Please give me the solution I am waiting your solutions.
My bbpress plugin Version: 2.5.14
Wordpress Version: 4.8.2
Thanks
We have encountered a bug whereby when multiple forums are placed on a page, using the [bbp-single-forum id=##] shortcode, the HTML buttons do not appear for all but the 1st forum. The class=”quicktags-toolbar” div still appears in the source code, but it is empty (the HTML input buttons do not appear within the source HTML).
This issue has been confirmed on multiple installs, with all plugins disabled and using the default WP theme.
Here is a screenshot example: https://imgur.com/rqPiXa6
Hi,
I want to remove “e-mail” field from the replay form of anonymous users.
wp-content/plugins/bbpress/templates/default/bbpress/form-anonymous.phpI removed the website field and it works, I’m trying now to remove the e-mail field too but because it’s require filed it doesn’t work!
If i press “submit” nothing happen at all.Okay from what I know i should remove this code
<p> <label for="bbp_anonymous_email"><?php esc_html_e( 'Mail (will not be published) (required):', 'bbpress' ); ?></label><br /> <input type="text" id="bbp_anonymous_email" value="<?php bbp_author_email(); ?>" size="40" name="bbp_anonymous_email" /> </p>
after that what should I do?! 🙂