Search Results for 'buddypress'
-
Search Results
-
Hello,
I have been struggling with this one for a while. It causes my site to crash as soon as buddypress is changed or deactivated. I believe it is functions added in functions.php are not wrapped with some thign like this
‘
if(function_exists(‘buddypress’)):
//use buddypress function
endif;
‘I am just starting to understand a function, but not quite there yet.
I need to know which function, and if this is correct. The site going down as soon as buddypress is deactivated or changed really upsets me and is difficult to actually know what part of my functions.php file is incorrect.Thanks in advance
Hi, I accidently permanently deleted all buddypress pages and i’m trying to fix it could someone please help!
In my buddypress setup, I have the groups component enabled. I also have the bp docs, bbpress, invite anyone plugins installed.
Currently when I create a group regardless who I am logged in as, I get prompt the following steps in the following order:
group-details
group-settings
forum
resources
invite anyoneI would like to preserve all these steps for the admin keymaster users but I would like to disable the forum and resources steps. How can I achieve this?
I have attempted to use the following code at the top of the create.php within the groups directory:
global $bp;
if(!bbp_is_user_keymaster()){
unset( $bp->groups->group_creation_steps[‘forum’] );
unset( $bp->groups->group_creation_steps[‘resources’] );
}Unfortunately this code doesn’t work so well as the page still redirects to the forum step after group-settings. The forum page does appear to be empty with back and next buttons being visible. If click on the next button, I get a page error and if I click on the back button, I get redirected to the invite-anyone step.
Topic: 404 error on topic pages
Hello,
I installed several days ago buddypress on my website. Everything was working fine, and suddenly happened this. The topic pages, once I try to edit them is showing a 404 error message. How I can fix this?
Thank you
Topic: site crashing
after I installed buddypress site whites out, not do to memory, ftp install did same thing, this looks like an on going issue, I would like to build a video gaming network with buddypress. site does not crash pages white out, when I un activate the pluggin site works. this happened with all native themes as well. my site http://www.stickyenotes.com theme ( Codium Now ) any support word be helpful thank you.
Topic: how to translate this plugin
Hello
The Website supporting Persian BuddyPress is not continuing the support for Persian Buddypress and therefore all the communities using BuddyPress lack the Support for this plugin. I have registered a domain name bp-persian.com and want to do this for my people. I would appreciate any help to know how can I translate this plugin.Thanks in advance for who may help me.
I´ve been trying, for more than one week, to create a custom notification and always got the same error, so I really need help:
WordPress database error: [Table 'dbase_wp.n' doesn't exist] SELECT * FROM n WHERE user_id IN (2) AND secondary_item_id IN (393) AND component_name IN ('activity') AND component_action IN ('new_at_mention') AND is_new = 1 WordPress database error: [Incorrect table name ''] INSERT INTO <code></code> (<code>user_id</code>, <code>item_id</code>,<code>secondary_item_id</code>, <code>component_name</code>, <code>component_action</code>,<code>date_notified</code>, <code>is_new</code>) VALUES (2,0,393,'activity','new_at_mention','',1) The code Im using to try this is: function buddypress_celebrities_add_notification ( $activity, $subject, $message, $content, $receiver_user_id ) { global $wpdb; $bp = buddypress(); $subject = 'Celebrity birthday'; $message = '1 Say happy birthday to $famoso_name'; $content = '2 Say happy birthday to $famoso_name'; $args = array( 'user_id' => 2, 'item_id' => $activity->id, 'secondary_item_id' => 393, 'component_name' => buddypress()->activity->id, 'component_action' => 'new_at_mention', 'date_notified' => $current_time, 'is_new' => 1, ); bp_notifications_add_notification( $args ); // $prueba = $args; } add_action( 'bp_activity_sent_mention_email', 'buddypress_celebrities_add_notification', 10, 1 ); // Then I call the function buddypress_celebrities_add_notification ( );//and after it DATABASE ERROR…
If someone can explain me what is going on or just point me in the righ direction to fix and understand this, I’ll be forever grateful.
I need to automatically clear/uncheck a check box field in any Buddypress profile when the “user role” of any user change (in this case from Author to Subscriber).
When the user role is changed, I was able to hide those checkboxes using the PlugIn “BuddyPress Conditional Field Groups”. The problem is that the search engine in my site still sees that the check-box field is still checked.
I’m not a programer, but I assume that the logic could go like this:
If User role = Subscriber (or goes from Author to Subscriber)
Then checkbox(Comunity College & State College).uncheck
End ifI was able to get this from the Inspect Element utility of my web browser:
<input checked=”checked” type=”checkbox” name=”field_23[]” id=”field_297_0″ value=”StateCollege”>
Thank you!
Hey!
I’d like to change the h1 contents of the members (by default, first name and last name are being displayed). Ideally I’d like to replace these first and last names by specific profile fields.In this post, I got on how to do so for any part below the h1 tag (through the copy of the BP templates and the modification of the member-header.php).
Yet it doesn’t work for modifying the h1 content itself.
Please help me 🙂Cheers,
Laurent
Since the new wordpress release on Monday my submenus are not displaying, if I deactivate the buddypress plugin they show, any idea how can I fix this?
Topic: Clear a field or check box
I need to clear/uncheck a check box when the “user role” of a user is change (in this case from Author to Subscriber). When the user role is changed, I was able to hide the field using the PlugIn “BuddyPress Conditional Field Groups”. The problem is that the search engine in my site still sees that check-box field because is still checked.
I’m not a programer, but I assume that the logic could go like this:
If User role = Subscriber
Then checkbox(Comunity College).uncheck
End ifThank you!