(I have crossposted this to the Private groups plugin support board. I hope there are no issues with that.)
no problem, you get me either way !
This could be coded, but it is quite complex to do.
In essence you would need to change the can_view function in private groups to have a view or change capability.
The issue is that I am fully tied up at the moment in other paid work, so you would need to put this to someone who would need to learn how bbpress/private groups works.
I suggest you try
http://jobs.wordpress.net/
I hope you find someone.
Hi everyone,
Looking for some assistance here,Instead of using WordPress facing registration page/ login page i have made a page that has login, registration an d lost password shortcodes. However during the registration process, i cannot get the user to specify the password therefore there is a need for approving admins to go create a password then email the user. Any ideas?
I have looked at many forums, plugins but haven’t got very far. Many thanks
Please see
http://contracostabee.com/forums/
created per startup instruction.
The forums page with only the shortcode in it produces text instead of form showing forums. Then when if you click on the image it takes you to the most recently created Forum page.
I’ve posted this problem several times but it disappears.
nsParticipant
—
Wordpresss: Latest version
bbPress: Latest version
design theme: Original building
—
I have one question.
In the page “Forum Replies Created”, can I show my replies data only?
If I can, which php file is, and how do I change code?
Or if I need to apply certain WordPress plugin, what is it?
The page “Forum Replies Created” shows all replies data which contains my relied data.
I’d like not to show other user’s replies data.
that’s just the file where the code to show that error is.
Are you developing on a local server?
Hello Robin, in bbpress replies folder, i have a php file functions.php. When i edit this file, in bbp_new_topic_handler i have this function
// Nonce check
if ( ! bbp_verify_nonce_request( 'bbp-new-topic' ) ) {
bbp_add_error( 'bbp_new_topic_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
return;
}
I think that it’s the problem.
But shouldn’t registered members be able to create forums too?
Not for many/most sites.
However if you want to add that capability
Custom Capabilities
For the life of me I cannot see a place where a new registered user can create a topic? I can’t find anything about this is the code.
Hello,
I uses CodeStyling Localization to translate 13 language. and CodeStyling Localization report the issue as below:
PHP runtime error reporting detected !
Reason: some executed PHP code is not written proper | Originator: unknown (probably by Theme or Plugin)
Below listed error reports has been traced and removed during page creation:
STRICT Error: [2048] Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) /home/xxx/cookkoo.com/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28
Please help
Thank you
ok, i made a mistake with the namee bbpress .php , changed to bbpress.php and now it is using the bbpress.php template, again ive removed the <?php get_sidebar(‘page’); ?> but it is still not full width
the code is like this
<?php
/*
Template Name: bbpress
*/
get_header(); ?>
<div class=”stump”>
<div class=”container topborder”></div>
<div class=”container contentarea”>
<div class=”row animated fadeInUp”>
<div id=”content” class=”col-md-8 col-sm-8″>
<?php get_template_part(‘loop’, ‘page’); ?>
<?php wp_reset_query(); ?>
</div>
</div>
</div>
<div class=”container bottomborder”></div>
</div>
<?php get_footer(); ?>
I did that, using the plugin my theme was using the page.php , so I copied it to my themes directory, and renamed it to bbpress.php
i have removed the <?php get_sidebar(‘page’); ?> from the code in the template but it is still not full width, and when I use the plugin again , it says that it still uses the page.php
even when Ive selected the bbpress template in the page that contains the forums shortcode
This might be what you are looking for.
Support Forum
in the page, ive chosen this template.
Sorry you need to put this template into a bbpress directory – see
Step by step guide to setting up a bbPress forum – Part 1
The @ is simply text, it does nothing of itself.
It could be coded to do all you ask, but nothing exists that I know of
here is the code to display the topic excerpt, which i recommend so you would not have to display the whole description in a topic.
<?php bbp_topic_excerpt(); ?>
You can use this for custom subscribe text
//custom text for subscribe links
function rkk_subscribe_link() {
$args['subscribe'] = esc_html__( 'Subscribe to this', 'rkk' );
$args['unsubscribe'] = esc_html__( 'Unsubscribe to this', 'rkk' );
return $args;
}
add_filter('bbp_before_get_forum_subscribe_link_parse_args', 'rkk_subscribe_link' );
add_filter('bbp_before_get_topic_subscribe_link_parse_args', 'rkk_subscribe_link' );
try adding
//This function changes the text wherever it is quoted
function change_translate_text( $translated_text ) {
if ( $translated_text == 'old text' ) {
$translated_text = 'new text';
}
if ( $translated_text == 'old text2' ) {
$translated_text = 'new text2';
}
return $translated_text;
}
add_filter( 'gettext', 'change_translate_text', 20 );
to your functions file. The wording needs to be exact including caps and punctuation
Functions files and child themes – explained !
hi!
can I set the default behavior of the Notify me of follow-up replies via email button when posting to the forum or whatsoever?
I would like it to be checked by default.
Im pretty sure i could write some JS to do this on page load but was wondering if you guys have some built in solution for this?
Hi guys!
looking at these forums, I can see the @name name is printed beneath the profile picture.
How can I turn this on in my website?
I’ve uploaded a beta of my website here
Is there an auto suggestion option for the mentions?
example, if somebody starts typing @bor he/she will be suggested @boris-kamp?
Thanks!
which theme are you using?
Have you tried the two methods in 3
Step by step guide to setting up a bbPress forum – Part 1
and looked at no. 8 in the same bit
Raw SQL, yep.
Here it goes:
EDIT: SQL code is now here https://gist.github.com/anonymous/8d1cb71e69d52ac69f5d
That’s not all, – i still have to implement a karma system to bbpress and also import it, and still have to import private messages. If you will be so kind to point me, what i’ve missed (and that cause error i’ve been experiencing), i appreciate it so much )
I just figured out what I needed. It turns out bbp_get_forum_title() returns a string that I can actually compare and it seems to work perfect. So my issues in my last message can be ignored.
Just for clarity, this is what the final piece looks like:
<?php if (bbp_get_forum_title() !== "News") : ?>
Then I just add the endif you suggested at the end and it works great.
Thanks again!
You nailed, thank you!!! I was missing a } closing the previous CSS code.
@jbeagley
Make sure to wrap code with the code button on bbpress.org
I checked your custom CSS on your site.
Sometimes CSS after a CSS statement is not complete will not work.
For example make sure all of your statements have the
#selector .selector { <-- make sure you have this on all of your CSS statements
property: value;
} <-- make sure you have this on all of your CSS statements.