Search Results for 'wordpress'
-
AuthorSearch Results
-
March 23, 2014 at 7:26 am #180187
In reply to: Share/Retweet Feature
March 23, 2014 at 7:11 am #180172In reply to: BuddyPress Roles and Capabilities
Paul Wong-Gibbs
KeymasterBuddyPress doesn’t currently user WordPress’ roles/capabilities systems. I haven’t looked at the code in while, but I’m pretty sure it’s going to be challenging to either add a new “role” or change the behaviours that are currently assigned to Group Mods/Admins/Members.
It’s probably something relatively niche so I’d be pleasantly surprised if someone comes along with a readymade solution. I think you/someone is going to have to dive into the code and see what’s possible.
March 23, 2014 at 2:53 am #180164In reply to: Buddypress for subdomain?
Satyendra9717
ParticipantYes, I want to have buddypress as a forum on a separate subdomain like forums.mysite.com. Lets say i created a subdomain from wordpress mu and installed wordpress on it. what should i do next?
Any link?
Thanks
March 22, 2014 at 8:46 pm #180158Henry Wright
ModeratorYou’ll need to grant the
edit_userscapability to your custom role.See here
https://codex.wordpress.org/Function_Reference/add_cap
And here
March 22, 2014 at 7:27 pm #180142In reply to: How I hide my un-wanted profile tabs
Henry Wright
Moderator@shanebp just wondering, is there an advantage of filtering gettext over a introducing a language file and using Poedit? I was told recently using a language file isn’t a good idea. See here
March 22, 2014 at 2:04 pm #180132In reply to: Buddypress for subdomain?
Renato Alves
ModeratorThe procedure explained in the article doesn’t apply. What would work for you is to install another WordPress installation in the subdomain with the only purpose of hosting BuddyPress. I’m not sure if that’s what you’re trying to do bu I’d recommend using WordPress Multisite for that.
March 21, 2014 at 9:07 am #180097In reply to: how to deny login from wordpress login page
Henry Wright
Moderatorbp_core_redirectis for redirecting anytime you like. It uses the WordPress functionwp_safe_redirect. See here for more info on it:https://codex.wordpress.org/Function_Reference/wp_safe_redirect
March 19, 2014 at 1:52 am #179994In reply to: Cleaning User List (Spam Registrations)
aces
ParticipantMarch 18, 2014 at 4:44 pm #179974In reply to: Recommended Posts
Henry Wright
ModeratorDoes this sound like the same problem?
https://buddypress.trac.wordpress.org/ticket/5375
If so then perhaps add what you’re experiencing to that ticket.
March 18, 2014 at 9:48 am #179961Henry Wright
ModeratorThe plugin authors are possibly busy, I’m sure they’ll get back to you if they can.
In the mean time you could try using a filter to do what you need.
https://codex.wordpress.org/Function_Reference/add_filter
Regarding when posts are published, I think
publish_postis the one you need to use.https://codex.wordpress.org/Plugin_API/Action_Reference/publish_post
So as an example, you’d add something like this to your theme’s functions.php file
function my_custom_filter_function( $post_id ) { // the post has been published so let us update the value of ass_digest_items // your value can be a string, an array, an integer etc... bp_update_user_meta( get_current_user_id(), 'ass_digest_items', 'Your value goes here' ); } add_action( 'publish_post', 'my_custom_filter_function' );March 17, 2014 at 10:16 pm #179924In reply to: Disable Buddypress registration
Projekt-42
ParticipantProblem solved.
Anleitung:
Im Ordner /wp-content/plugins/ die Datei bp-custom.php anlegen.
Die bp-custom.php Datei öffnen und folgendes einfügen:
<?php /** * Disables BuddyPress' registration process and fallsback to WordPress' one. */ function my_disable_bp_registration() { remove_action( 'bp_init', 'bp_core_wpsignup_redirect' ); remove_action( 'bp_screens', 'bp_core_screen_signup' ); } add_action( 'bp_loaded', 'my_disable_bp_registration' ); add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page"); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . '/wp-signup.php'; } ?>Datei speichern. Fertig!
March 17, 2014 at 8:48 pm #179921In reply to: Social open macro & micro-blogging with BuddyPress
gouessej
ParticipantHi
Actually, WordPress isn’t designed to become a decentralized social network even though BuddyPress is quite good. Anyway, this article written by Jeff Sayre is a great source of inspiration:
http://jeffsayre.com/2010/02/24/a-flock-of-twitters-decentralized-semantic-microblogging/March 17, 2014 at 3:12 pm #179906In reply to: Multisite Removal (BuddyPress on Network)
mairaj
ParticipantHello @mercime @hnla I started this thread more than a year ago and I have never been able to remove MultiSite from my website.
By the guidance provided by @eisenwasser I have created a clone of my website on another hosting account elsewhere. This clone installation is 100% functioning like my original website and now I am ready to do all the experiments safely.
I have followed again all the steps here – http://wpmututorials.com/how-to/how-to-disable-multisite/ and now see the following error message –
Notice: wpdb::escape is deprecated since version 3.6! Use wpdb::prepare() or esc_sql() instead. in /public_html/wp-includes/functions.php on line 2913 No site defined on this host. If you are the owner of this site, please check Debugging a WordPress Network for help.I request you to kindly help me with the current situation so that I can successfully remove MultiSite from my website.
Many thanks!
March 16, 2014 at 10:43 pm #179889Pierre Clark
ParticipantWarning: Missing argument 2 for wpdb::prepare(), called in /home/ofjvzrzz/public_html/enetnetwork/wp-content/plugins/buddypress/bp-core/bp-core-functions.php on line 143 and defined in /home/ofjvzrzz/public_html/enetnetwork/wp-includes/wp-db.php on line 992
Here is another screen I get on another of the sites on my Vodahost hosting service where I upgraded to WordPress 3.8 from the Fantastico application. When I try to log in, I get this message:
Warning: Missing argument 2 for wpdb::prepare(), called in /home/ofjvzrzz/public_html/enetnetwork/wp-content/plugins/buddypress/bp-core/bp-core-functions.php on line 1003 and defined in /home/ofjvzrzz/public_html/enetnetwork/wp-includes/wp-db.php on line 992
Warning: Cannot modify header information – headers already sent by (output started at /home/ofjvzrzz/public_html/enetnetwork/wp-includes/wp-db.php:992) in /home/ofjvzrzz/public_html/enetnetwork/wp-login.php on line 415
Warning: Cannot modify header information – headers already sent by (output started at /home/ofjvzrzz/public_html/enetnetwork/wp-includes/wp-db.php:992) in /home/ofjvzrzz/public_html/enetnetwork/wp-login.php on line 427
Entrepreneur World NetworkUsername
Password
Remember Me
Lost your password?
← Back to Entrepreneur World NetworkAll of these sites are responding in the same way to the upgrade. I need help to fix the error that is causing this error message.
March 16, 2014 at 9:07 pm #179886Pierre Clark
ParticipantI get the same error on two other WordPress/Buddypress sites. How can I fix them?
March 16, 2014 at 7:46 pm #179880In reply to: BP Messages
aces
ParticipantI’m not clear about what you have done.
Buddypress is a single plugin and should be in /wp-content/plugins/buddypress/
Underneath that should be all the other files and folders ie: /wp-content/plugins/buddypress/bp-messages/ etc. that were in the zip.
It should be installed and activated as a normal plugin.
Once activated you should have a buddypress section under the wordpress settings section in admin.
From there you activate different components such as bp messaging
March 16, 2014 at 10:39 am #179862In reply to: Using get_post_meta() in activity stream
Henry Wright
ModeratorThere is actually a Trac ticket open for this. Just came across it:
March 15, 2014 at 11:36 am #179833In reply to: WordPress/BuddyPress Integration
DennisBarkerCV
ParticipantIt sounds to me like this is a two site WordPress Multisite setup.Your best starting point is set up one site then read the WordPress Codex on setting up multisite and add the project management site as a subdirectory or sub domain.
March 15, 2014 at 7:44 am #179830In reply to: Should I wait for the v2.0 beta?
Henry Wright
ModeratorYou might find this helpful
March 15, 2014 at 4:12 am #179825In reply to: WordPress/BuddyPress Integration
Ben Hansen
Participantyou can only have one theme active at a time. also i think personally, buddypress would make a bad alternative for google drive since its really not the same thing at all.
as for putting a menu item to take users to the main forum page that will not be a problem.
it sounds like you may want try using wordpress first and then add buddypress once you are a little more familiar with it before adding buddypress to the mix.
March 15, 2014 at 2:30 am #179822In reply to: Notification still not being displayed
colabsadmin
ParticipantHey Michael,
That usually happens when someone deletes the item you’re being notified about. There’s a ticket open to have the notification deleted when the item is deleted but it hasn’t been implemented yet.
March 15, 2014 at 1:26 am #179819In reply to: BuddyPress: Two missing features
modemlooper
ModeratorMarch 15, 2014 at 12:05 am #179816In reply to: Help! button "post update" is not present
maverhick80
ParticipantI am using buddypress 1.9.2 with wordpress 3.8.1
March 14, 2014 at 11:59 pm #179815In reply to: WordPress in it's Own Directory for BP2.0?
bigtreesjoe
ParticipantI understand that the URL rewrite issue has been moved to BP 2.1. However the question still has not been answered as to whether this will solve the BP incompatibility with standard WordPress installation “In Its Own Directory”.
Will fixing the URL rewrite issues resolve this incompatibility issue as described here: https://codex.buddypress.org/getting-started/before-installing/before-installing/March 14, 2014 at 7:36 pm #179806In reply to: plug in for uploaded item listing
danbp
ParticipantMaybe BuddyDrive ?
-
AuthorSearch Results