Search Results for 'wordpress'
-
AuthorSearch Results
-
June 4, 2016 at 2:36 pm #254129
In reply to: [Resolved] Need to change profile fields colour
alibong0
Participanti just wanted to know the term ‘alternate row colour for…*****’to google help about it, hence the lack of detail.. i figured you wanted me to figure it out myself. http://www.templatemonster.com/demo/52997.html <— this is my theme. on the newest wordpress and buddypress.
June 4, 2016 at 6:46 am #254120In reply to: Replicate data to another database
sharmavishal
Participantyou need to have a wordpress multisite done….and install buddypress on a folder/domain…check codex’s of both..you will get an idea how you can run wp on main domain and bp on sub domain or sub folder
trust me..you are not able to manage in the current scenario which you have…
this is a free support forum..you dont need to talk to me on a one2one basis…custom help is not an option here…you might have a look at the job board if you are looking at custom help
best of luck
June 4, 2016 at 6:25 am #254117In reply to: Replicate data to another database
mujalumni
ParticipantI have two site one for static info about MUJ Alumni (http://mujalumni.in/muj2). It is also a wordpress site. The second one is a portal for our members (http://mujalumni.in/portal). It is also a wordpress site with buddypress support.
No, I am not thinking of having subdomain /subfolder. I am already managing that.
If you can provide your contact details, we can have a talk about this.
June 4, 2016 at 6:11 am #254115In reply to: Replicate data to another database
sharmavishal
Participantno plugin for that…as @danbp suggested better to have one db of users..else its going to get quite complicated…
before you installed buddypress was your site a wordpress site?
also i see you installed bp in a sub folder..not in the root…http://mujalumni.in/portal/ is that correct?
is the root site a wordpress enabled site?
are you looking at having a main site and the community (powered by buddypress) on a seperate folder/subdomain?
June 3, 2016 at 4:27 pm #254104In reply to: Replicate data to another database
danbp
ParticipantIt woud be better if you merge your 2 db to the one controlled by WP.
That said, you can also try to get something (even if not easy), after reading from here.June 3, 2016 at 3:47 pm #254097In reply to: Users cannot register since update 2.53
shanebp
ModeratorYou can get older versions here:
https://wordpress.org/plugins/buddypress/developers/June 3, 2016 at 2:18 am #254079In reply to: Wierd Buddypress Issue
mugluck
ParticipantIs there a way to set the default page template for profiles in Buddpress? I’ve isolated the problem to the fact that it’s generating from the default profile in our wordpress theme. But I don’t know which file in the buddypress system I should add the php code to.
June 2, 2016 at 10:27 pm #254065danbp
ParticipantThat is an old bbPress issue. When you edit a topic, i some case, the topic comes up twice(or more, depending how many edit you made) on the site activity.
This bug will be corrected in bbP 2.6 (actual version is 2.5.9). See ticket & patch here.
What you can do immediatly is to modify following file:wp-content/plugins/bbpress/includes/extend/buddypress/activity.phpReplace code between line 277/279
$existing = bp_activity_get_specific( array( 'activity_ids' => $activity_id, 'show_hidden' => true, 'spam' => 'all', ) ); if ( empty( $existing['total'] ) || ( 1 !== (int) $existing['total'] ) ) return null;by
$existing = new BP_Activity_Activity( $activity_id ); if ( empty( $existing->component ) ) { return null; }June 2, 2016 at 10:03 pm #254061In reply to: Registration and Edit Profile Issue
r-a-y
Keymaster@angelaq – I think your problem is related to this:
https://buddypress.org/support/topic/bad-link-to-profile-edit/#post-174602I’m quoting the workaround solution below:
Since I’ve seen so many threads regarding it and I was having same issue.
this is regarding 404 error page if you are on page profile/edit/group/1/
Problem is group 1 is missing in your profile section.
All you need to do is go into you DB and look for table: wp_bp_xprofile_groups
Then look for id=2, Base
then just change id=2 to 1 and that’s it.
This does sound like a legitimate bug.
I’ve opened an issue about this here:
https://buddypress.trac.wordpress.org/ticket/7109June 2, 2016 at 12:57 pm #254046In reply to: Premium Content or Payment System
sharmavishal
Participants2Member | A powerful (free) membership plugin for WordPress
June 2, 2016 at 12:05 pm #254043In reply to: Page display problems Activity of Buddy Press
amaya_terry
ParticipantBuddy press’ve installed directly from the free version of wordpress, the theme we are using is a validly licensed own theme. All steps that tell me I activated as previously I worked correctly … I have other sisitos with the same plugin and does not happen to me
June 1, 2016 at 11:20 pm #254026In reply to: Mentions – Embedded videos not working as expected
r-a-y
KeymasterThe link has to be added on a new line.
This is the same as how WordPress does embeds:
https://codex.wordpress.org/EmbedsJune 1, 2016 at 10:18 pm #254021In reply to: How would I do this in BuddyPress?
danbp
Participanti suppose you already read the codex, thousand of topics and of course, that you have some php knowledge. 🙂
Groups
Add following conditionnal to the what’s new form of the group activity page.bp_current_user_can( 'bp_moderate' )To do this, you need a child-theme and to overload the template file. The original file is here:
wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/post-form.php
Copy it to child to get:
wp-content/themes/child-theme-name/buddypress/activity/post-form.phpMembers
See if these plugins can be usefull.
Geo myWP or one or the other of @shanebp ‘s Geo plugins.June 1, 2016 at 1:42 pm #253992In reply to: Membership Codes
danbp
Participantit’s possible. I suppose you need a unique code for some later user specific actions. But that code exist nowhere when a user register. What can we do ?
1) generate a 6 digit code and show it on the register page
2) asign that code to the user
3) show the code on his profile1 – we use php mt_rand to generate the code and one of the available action hook on the register page for his output. Add this snippet to bp-custom.php
function bpfr_digit_generator() { $num = mt_rand ( 0, 0xffffff ); $output = sprintf ( "%06x" , $num ); echo '<strong>Your personnal code: '. $output .'</strong>'; } add_action( 'bp_after_account_details_fields', 'bpfr_digit_generator' );2) create a new xprofile field, call it Personnal Code or whatever. Make it mandatory and asign it the visibility level you want. In field description, ask the user to copy/paste in the code.
3) as the user entered the code in a xprofile field, you get automagically this field on his profile.
I’m a bit unsure how to insert this field value in the activation email, or if it’s even possible. Perhaps somebody else can help you. See email on codex.
A bit raw, but at least you have a start point how to do that.
Here also another method, you may use if you don’t want the user to copy/paste the code.
June 1, 2016 at 1:35 pm #253991In reply to: Membership Codes
Henry Wright
ModeratorYes. Every member in your install will have a user ID. So both BuddyPress and WordPress users will get a number. In fact, at the back end WordPress users and BuddyPress members are the same thing.
June 1, 2016 at 1:26 pm #253990In reply to: Membership Codes
maganiza
Participantthank you for the speedy response. If I am not mistaken the article is more related to signed in/loggen in user IDs.
I am looking at a solution whereby I will even view the member ID numbers on the list with the backend buddypress/wordpress system. Also I would like for these numbers to be static. For example if I run a search I want the numbers to be populated. Is this possible?
June 1, 2016 at 12:07 pm #253980In reply to: Maintenance Mode message appears in login page
danbp
ParticipantMaintenance mode is related to WP. BuddyPress was updated 24th may and WordPress 6th may.
Have you tried to debug by deactivating theme and all plugins (except BP) ? Use one of Twenty’s theme for that test and see if the notice remains.
Read also here to have a global overview of how this notice is coming up.
May 31, 2016 at 3:38 pm #253939In reply to: Users cannot register since update 2.53
Earl_D
ParticipantI am running the lest version of Buddypress and WordPress on a VPS server NOT running multisite. Tiny framework is the theme I am using. However the first thing I did to trouble shoot was try to replicate problem without any plugin and using 2012 theme (which tiny frame is based on) and 2016 theme. The issues remained the same with but those thems and th social me theme.
I will try to check the MYSQL question as I am familiar with that having done MYSQL database programming. However I have narrowed done the problem to something related to the extended profile fields component. Through trial and error and some research I surfaced the correlation which one other person seems to have referred as well. If extended profile fields are turned OFF the registration is completed and the activation email sent. If it is on the registration process is not completed. I tested this extensively turning on and off and it followed that pattern. I currently have the component turned off and users are able to register. When I turned on again I was unable to complete a registration.
It may be unrelated but no registration spam protection plugins will work now either I have tried several with recaptcha and without and in every case the registration process short circuits.
Thanks for any help in advance. I would like to get the extended field working again.
EarlDMay 31, 2016 at 2:19 pm #253938In reply to: BuddyPress Multisite
Christian Wach
ParticipantYou need BP Multi Network: https://wordpress.org/support/plugin/bp-multi-network
May 30, 2016 at 5:31 pm #253903John James Jacoby
KeymasterThanks for the post, and thank you everyone that chimed in to alert the OP about the protocol for security concerns. Understanding it’s possible there’s a communication gap here, this topic does also read (to my eyes) as condescending & inflammatory, which is honestly not going to yield a very positive conversation. I think y’all did a great job staying positive, and I for one greatly appreciate that.
To be clear to anyone else that runs into this topic, what the OP sees is not a BuddyPress or bbPress bug; this is WordPress doing it’s best to show published content from public post types.
About BuddyPress:
* Neither BuddyPress nor bbPress modify this core behavior
* BuddyPress does not use this interface; bbPress does
* The .org sites have not disabled this, they just do not have any unusual content to leakThe gist:
* If plugins allow for private content, it’s up to those plugins to protect it
* If you create roles with content limitations, it’s up to you to confirm they’re workingFor anyone looking to modify or restrict content that appears in this list, use the
wp_link_query_argsandwp_link_queryfilters to do so.Here is how WordPress calculates the results in this list. Note that it only uses published posts from public post-types:
$pts = get_post_types( array( 'public' => true ), 'objects' ); $pt_names = array_keys( $pts ); $query = array( 'post_type' => $pt_names, 'suppress_filters' => true, 'update_post_term_cache' => false, 'update_post_meta_cache' => false, 'post_status' => 'publish', 'posts_per_page' => 20, );
WordPress has a built-in way to calculate privacy scope using
'perm' => 'readable'and even that is not used here (though bbPress does use this in its own loops.) WordPress instead takes a strict position of published public content by default.If anything unexpected is appearing here, it is not because of BuddyPress or bbPress, and we are still happy to help anyone discover the source of this in a new & more friendly topic.
May 30, 2016 at 5:12 pm #253901danbp
Participant@sbrajesh (BuddyDev) published a pretty cool tip about page titles:
Using WordPress Page Titles for BuddyPress Directory Page heading & Titles
May 30, 2016 at 4:16 pm #253897In reply to: 404 on Manage groups page
Henry Wright
ModeratorIn that case you could embed some CSS into the
<head>section using thewp_headhook.Ref: https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head
May 30, 2016 at 4:13 pm #253895In reply to: Email Notifications on Group Activity
Henry Wright
ModeratorIs there a formal process for requesting this feature?
Yes. The formal place to request features is Trac.
May 30, 2016 at 1:46 pm #253884In reply to: Users cannot register since update 2.53
Mathieu Viet
ModeratorAs the registration process can be different according to WordPress configs, can you please provide some details about yours :
– Multisite ? If so is BuddyPress network activated or activated on a specific blog of the network
– Plugins ? Especially the ones that might play into the registration process.FYI, i’ve just rechecked on 2 freshes WordPress configs (regular & multisite) having only the BuddyPress plugin activated. Registration is working great.
May 30, 2016 at 12:31 pm #253881In reply to: Users cannot register since update 2.53
Paul Wong-Gibbs
KeymasterDid anything else update at the same time? Anything?
2.5.3 contained changes to email implementation, and a security fix regarding user activation. The latter is most likely cause.
What theme are you using? Do you have a custom registration template (did you make one)? What other plugins do you have running? Are you on multisite or regular WordPress?
Can you think of any other useful information regarding any customisations around user or site registration?
-
AuthorSearch Results