Search Results for 'wordpress'
-
AuthorSearch Results
-
January 5, 2018 at 7:37 am #269932
In reply to: Buddypress integration separately
Varun Dubey
Participant@ranajoyc BuddyPress expend the WordPress functionality, it uses the same user tables which are created by regular WordPress installations. WordPress users will always be part of your BuddyPress community.
January 3, 2018 at 3:08 pm #269911In reply to: Paid Membership Pro and Buuddypress – Registration
pmhn
ParticipantHi Will,
Sorry for the post-hijack but I’ve been looking for a solution to a problem that you’ve eluded to;
Are you saying that s2Member will allow users to register using BuddyPress, to join a buddypress group (using https://en-gb.wordpress.org/plugins/buddypress-registration-groups-1/) AND a corresponding mailchimp group, all within the same registration process?
If so then I’d like to kiss you – I’ve been looking for a solution to this for months.
Chris.
January 1, 2018 at 11:49 pm #269868In reply to: Update an old BuddyPress Website to the new version!
maltelol123
ParticipantTo clarify: I do not want to overload my current WordPress theme anymore. I just want to use the standard BuddyPress template located in the plugin directory. All natively!
If I delete the folders “/community” or “/members” for example in my WordPress theme directory or delete the functions of BuddyPress in my theme’s functions.php, the website crashes unfortunately.
Thanks!
December 31, 2017 at 12:09 am #269852Michael Gentry
ParticipantI truly do thank-you for all of this! It’s pointing me in the right direction for what I want to accomplish. I feel like I just need a better understanding of the infrastructure of WordPress, and how BuddyPress works together with it. And you are right, there are endless amounts of options!I’m just stuck on how i would customize the X theme to how i would want it. I would rather do all of this in the beginning by myself, and hire a developer if need be down the road.
– If the plugin conflicts with the theme how would one go about fixing that?
– How would I begin to customize the CSS of the activity streams for users? Where would most of this customizing be taking place? In other words, how would I add the custom CSS to the site?These would be huge for me to know
December 28, 2017 at 10:43 pm #269821In reply to: Create link to logged-in member profile page?
peter-hamilton
ParticipantSo you want a link to logged in users profiles, clarify where this link should be…in the header?
You should make a child-theme and add some code to a new header.php.<li><a href="<?php echo bp_loggedin_user_domain(); ?>" class="profilelink" title="My Profile">Profile</a></li>You must place this code just before the </nav> code, or at any spot in the header you wish.
Thisprobably means you need to learn how to make a child-theme in wordpress first, very important.
December 27, 2017 at 5:56 pm #269795In reply to: question on what a member sees
saz25
ParticipantYou mean in the public_html/bellmoore/wp-content/plugins/buddypress directory?
“bellmoore” refers to my top level folder for my wordpress instance.
thanks a million.
SteveDecember 21, 2017 at 7:34 pm #269728In reply to: Remove birthday from Members Directory
December 18, 2017 at 8:06 am #269627In reply to: how to change Change Group ICON svg
chowd001
ParticipantThanks a lot for prompt response.
1. Yes I want to use different icons. could you please elaborate which CSS I need to modify. where to find the css where the CSS is written for icons. I have just started using wordpress/buddypress
2. Where do I find translation file
December 18, 2017 at 6:26 am #269623ripulkr
ParticipantMost likely the database tables are corrupt. Please try optimising your WordPress database, especially the friends tables. this link should help you out :
December 17, 2017 at 2:27 pm #269613Topic: WordPress to BuddyPress profile sync
in forum How-to & Troubleshootingkrioteh
ParticipantIn BuddyPress there is a built-in mechanism for synchronizing profile fields from WordPress.
By default, it synchronizes only the “display_name” field, which is not always sufficient.
Here is an example of the code by which you can synchronize any available fields in the WordPress field with the Buddypress fieldsfunction xprofile_sync_bp_profile2( &$errors, $update, &$user ) { // Bail if profile syncing is disabled. if ( bp_disable_profile_sync() || ! $update || $errors->get_error_codes() ) { return; } // Querying data from a table "usermeta", first we get the value of the custom field "address" and substitute this value for the "Address" field of the xprofile BuddyPress $address = get_user_meta( $user->ID, 'address', 'true' ); xprofile_set_field_data( 'Address', $user->ID, $address ); //Similarly with other fields $firstname = get_user_meta( $user->ID, 'first_name', 'true' ); xprofile_set_field_data( 'Name', $user->ID, $firstname ); $lastname = get_user_meta( $user->ID, 'last_name', 'true' ); xprofile_set_field_data( 'Lastname', $user->ID, $lastname ); $description = get_user_meta( $user->ID, 'description', 'true' ); xprofile_set_field_data( 'Bio', $user->ID, $description ); // Querying data from a table "user" xprofile_set_field_data( 'E-mail', $user->ID, $user->user_email ); xprofile_set_field_data( 'Site', $user->ID, $user->user_url ); } add_action( 'user_profile_update_errors', 'xprofile_sync_bp_profile2', 10, 3 );Unfortunately, the fields are synchronized only when the profile is updated. I do not know how to start mass synchronization 🙁
I hope someone will find this information useful.
December 14, 2017 at 1:55 pm #269565In reply to: Broken links
wildcat0206
Participantnone of the links are working
site is tenngrand.com
wordpress version 4.8.4
buddpress versions 2.9.2
December 12, 2017 at 5:55 pm #269538In reply to: why buddypress have unknow autocomplete code?
David Cavins
KeymasterHello there. BuddyPress doesn’t add jQuery to a site (it relies on WordPress to provide jQuery). It looks to me like you’re using a plugin to fetch jQuery from a CDN rather than use the local version that comes with WordPress. Disable your plugins one at a time until the code changes, then you’ll have found the cuplrit.
December 11, 2017 at 6:09 pm #269519In reply to: Kindly help! Buddypress plugin leads to error 508
Boone Gorges
Keymaster508 usually means that the hosting provider has put a limit on the resources available to your account. See https://stackoverflow.com/questions/20040307/how-to-fix-the-508-resource-limit-is-reached-error-in-wordpress. BuddyPress does generally require more resources (RAM, MySQL I/O) than a standard WP installation. I’d suggest reaching out to your hosting provider to ask about the potential of upgrading your service to support the use of BP.
December 11, 2017 at 6:07 pm #269518In reply to: Delete a notice to all users
Boone Gorges
KeymasterApplying https://buddypress.trac.wordpress.org/changeset/11750 should fix the problem. Note that this change is in bp-messages/bp-messages-template.php, *not* notices-loop.php. There should be no need to reapply these changes after BuddyPress 3.0, where the fix will become part of the BP release.
December 11, 2017 at 6:01 pm #269516Boone Gorges
KeymasterHi @gregthebuzz – You might have better luck moving some of your logic into
BP_Group_Extension, which does most of the template-related work for you. See https://codex.buddypress.org/developer/group-extension-api/. Thedisplay()method is where the content for your public-facing tab will go, while theeditparameter will help you configure what you’d like group admins to see under Manage.I’m unsure how or whether this’ll integrate neatly with https://wordpress.org/plugins/bp-extend-groups-fields/. That’s something you’ll probably want to talk to that plugin author about.
December 11, 2017 at 3:27 pm #269512In reply to: Flatsome theme UX Page Builder not loading
Boone Gorges
KeymasterHi @billybelly – It’s difficult for us on the buddypress.org forums to provide concrete advice on a non-free product, because we don’t have access to test it. If you paid for the UX Builder project, then they ought to be the ones providing you with support.
That being said, it’s possible that BP templates are inherently incompatible with this plugin. BP technically uses WP pages like Activity, Register, etc, but it sorta hijacks the page loading process in a way that can make it incompatible with certain kinds of “builder” plugins. If you’re looking to customize the interior portions of a BP page, it’s best to do it either using CSS (which you can access via the Customizer and a plugin like https://wordpress.org/plugins/simple-custom-css/) or by overriding the templates in a child theme. See https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/#overloading-template-compatibility-theme-files
December 9, 2017 at 1:10 pm #269476In reply to: Display some user data on a single page
Henry Wright
ModeratorIf you have the user’s ID then you can pass it to the
get_userdata()WordPress function like this:$user_id = 1; $user = get_userdata( $user_id );Then you can use the
$userobject like this:echo sanitize_email( $user->user_email );Note, how you get the user’s ID will depend on the context. See:
December 7, 2017 at 6:43 am #269458Clemmo21
ParticipantI have worked out a solution or at least a direction for me to head in. :))
@ripulkr and @boonebgorges gave me the idea of using a MySQL database and the use of tables to store the user’s data and their meta data.
I jumped on the WPdatatables plug-in which allowed me to easily use MySQL queries to the WordPress database (WPDB). I then created a table within the WPDB and created columns for the fields I wanted like height, weight, length. I also have a couple of other columns in the table to associate the record number and the user id.
WPdatatables also has an add-on for Gravity Forms so it was simple for users to fill out a form to submit data direct to the table. I then create a page for the users showing the WPDB table for them to only see their entries. It has a reports and chart feature too. :))
WPdatatables full use of MySQL queries allows me to join tables within the WPDB which makes it nice to be able to match up and show their user data too.
I’m pretty happy with how it works and its potential.
A very high level explanation but would be happy to explain further if needed. :))December 7, 2017 at 6:08 am #269457shanebp
ModeratorThe first and simplest step is to use one of the registration captcha plugins from the repo.
December 6, 2017 at 5:14 pm #269448In reply to: BuddyPress/WP Login question
darren1985
Participantsorry please delete, found the answer by changing the wording in google.
in case others needed the answer is found here:
https://buddypress.org/support/topic/need-to-disable-the-user-access-to-wordpress-admin-panel/December 4, 2017 at 11:12 pm #269412In reply to: Custom BuddyPress email not always sending
bcanr2d2
ParticipantI am using WP Mail SMTP to get the mail to send without issues. But it seems to affect this particular email only, I am getting everything else as far as I am aware.
Here are my current active plugins – There is quite a long list.
I do use Autoptimize, so not sure if it’s affecting anything.
One of note, is Social Login, which when logging directs to their site, and redirects back to my site to log the user in via their social network, this is where it falls over and does not send this one email. It manages to send other emails related to the login, but it now gives me an idea to look into the code that sends this social email sign up notification.(BuddyDev) BP Auto Login on Activation (1.0.3)
Advanced Custom Fields (4.4.11)
Allow Multiple Accounts (3.0.4)
Autoptimize (2.2.2)
BP Profile Message UX Free (1.5)
BP xProfile Location (1.2)
BP XProfile WordPress User Sync (0.6.4)
BuddyDev Username Availability Checker (1.1.1)
BuddyExtender (1.0.1)
BuddyPress (2.7.4)
BuddyPress Member Type Generator (1.0.3)
BuddyPress Security Check (2.1.2)
BuddyPress Simple Terms And Conditions (1.3)
BuddyPress Xprofile Custom Fields Type (2.6.3)
BuddyPress Xprofile Member Type Field (1.0.4)
BuddyPress XProfile Validate with RegEx (0.1.2)
Cherry Parallax Plugin (1.1.0)
Cherry Plugin (1.2.8.1)
Child Theme Configurator (2.1.2)
Conditional Profile Fields for BuddyPress (1.1.9)
Contact Form 7 (4.6)
Contact Form 7 – Dynamic Text Extension (2.0.1)
Contact Form 7 Conditional Fields (1.0)
Contact Form 7 Get and Show Parameter from URL (0.9.7)
Contact Form 7 Honeypot (1.10)
Contact Form 7 Modules: Hidden Fields (2.0)
Contact Form 7 Shortcode Enabler (1.1)
Custom Hooks (1.0)
Custom Post Template By Templatic (1.0)
Custom Post Type UI (1.4.3)
Disable Comments (1.6)
Display Posts Shortcode (2.7.0)
FacetWP (2.7.4)
FacetWP – Map (1.0.5)
Flamingo (1.5)
GeoIP Detection (2.7.0)
GEO my WP (2.7)
Google Analytics Dashboard for WP (4.9.6.2)
List Plugins (1.4.4)
Meta Slider (3.4)
Optimize Database after Deleting Revisions (4.2.1)
Page-list (5.1)
PHP Compatibility Checker (1.4.0)
Popup Maker (1.4.20)
Shortcodes in Menus (3.2)
Social Login (5.2)
Stream (3.2.0)
String Locator (2.2.0)
Sucuri Security – Auditing, Malware Scanner and Hardening (1.8.3)
SuitePlugins – Advanced XProfile Fields for BuddyPress (1.0.3)
Theme Check (20160523.1)
Visual Builder for Contact Form 7 (2.0)
WPFront User Role Editor (2.13)
WP Mail SMTP (0.11.1)
WP Private Content Plus (1.13.1)
WP Smush (2.6.1)
Yoast SEO (4.3)December 3, 2017 at 4:27 pm #269391Boone Gorges
KeymasterSome things to check:
1. Check the timestamps at Dashboard > Activity. Are they off as well?
2. Are in timezone UTC-5 (US Eastern)? Just so we have a better understanding of what’s going on.
3. You say the “server time” is “set correctly”. Can you say more about what this means?
4. Are timestamps for WP content (like posts and comments) correctly displayed?
5. When you look in the database –
wp_bp_activity, thedate_recordedcolumn – what do the timestamps look like? Are they UTC or in your local timezone?It’s generally recommend to keep PHP in UTC and to allow WP/BP to do the timezone offsets; see https://weston.ruter.net/2013/04/02/do-not-change-the-default-timezone-from-utc-in-wordpress/ for one account. My guess is that your server time is set to local time, so that things are getting double-adjusted. How this can best be fixed depends on whether only activity items are affected, or if it’s all items on the installation.
December 3, 2017 at 2:51 pm #269385In reply to: Delete a notice to all users
Gunu
ParticipantAfter a lot of digging here I found this:
bp_message_notice_delete_link uses wrong action for nonce generation
I made this change in the source code: fix nonce for sitewide notice deletion.
Changed in source code from this file /buddypress/bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php
<a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" aria-label="<?php esc_attr_e( "Delete Message", 'buddypress' ); ?>">x</a>
in this
<a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" title="<?php esc_attr_e( "Delete Message", "buddypress" ); ?>">x</a>Now I see the delete button and can delete messages, but this goes wrong again after an update from Buddypress.
I would like to receive an advice.
ThanksDecember 3, 2017 at 6:29 am #269378In reply to: [Fixed] Groups Messages Disappear After Update
grimbot
Participantok.. it works again.. Not sure which step fixed it but here is what I did..
In the database area I clicked the Optimize, repair, and reset permission buttons.
In wordpress I cleared off some of the warning notifications I was getting about “Activity Stream” and “User Links” pages not having pages set for them..
I had those removed on purpose btw.
The code to hide the members directory doesn’t work anymore but someone said something about maybe being able to redirect traffic to that page to a password protected or otherwise restricted page.
So.. That should do it if you have the problem I did.. clear the page missing error for user links and activity and run the one click fixes on the database to reset permissions and such.
December 2, 2017 at 1:08 pm #269356In reply to: Scheduling post – missing activity
Humiges
ParticipantThank you for your kind reply @boonebgorges
I have managed to find the solution that triggered the activity too by using the one of the wordpress plugins.
Thanks a lot :)) -
AuthorSearch Results