Search Results for 'wordpress'
-
Search Results
-
Hi,
I’m running BuddyBoss/BuddyPress on WordPress 5.3.2
I’d like to be able to filter my main BuddyPress members page using $_GET, from query variables passed in the URL.
I’ve tried various ideas found on the web and the most up to date/promising way of doing this seems to be using bp_parse_args() via…
add_filter( 'bp_after_has_members_parse_args', 'my_function' );Using this method works well except for the fact that I am unable to access my passed filter variables via $_GET …if I print the site url from within my function it returns wp-admin/ajax.php (or something like it) which I guess is why I can’t access the passed query variables. Any help with this would be greatly appreciated.
Many thanks,
Antony
My code…
function ic_members_filter( $retval ) { global $wpdb; global $ic_filter_members_interest_id; if( $ic_filter_members_interest_id && $ic_filter_members_interest_id>0 ){ $prepared_statement = $wpdb->prepare( "SELECT user_id FROM ic_interests_data WHERE interest_id = %d AND (interest_value = 1 OR interest_value = 3)", $ic_filter_members_interest_id ); $db_custom_ids = $wpdb->get_col( $prepared_statement ); if ( $db_custom_ids ) { //!empty( $db_custom_ids ) // convert the array to a csv string $retval['include'] = implode(",", $db_custom_ids); //$custom_ids_str = 'include=' . implode(",", $custom_ids); } else{ // don't show any records $retval['include'] = array(0); } }else{ // show all records $retval['include'] = ''; } return $retval; } add_filter( 'bp_after_has_members_parse_args', 'ic_members_filter' );WHERE… $ic_filter_members_interest_id is a global that holds the interest_id via $_GET
References…
https://buddypress.trac.wordpress.org/browser/tags/2.2.1/src/bp-members/bp-members-template.php#L461I am using BuddyPress old version and WordPress version 5.3.2.
But, Today, When I to updated BuddyPress Version:5.1.2 it gives me the following an error.Fatal error: Call to undefined function bp_is_user_inactive()
Website Home page: https://wcblogs.com
I am trying to fix these issues but still shows an error.Any suggestion?
Thanks in advance
So following the steps in this post:
I used this code:
add_action( 'bp_email', function( $email_type, $email_obj ) { $email_obj->set_reply_to( "wordpress@mydomain.com", "My Site" ); }, 10, 2 ); add_action( 'bp_email', function( $email_type, $email_obj ) { $email_obj->set_from( "wordpress@mydomain.com", "My Site" ); }, 10, 2 );This partially worked. The signup emails going to the registrant now have the correct From address, but the notifications going to the admin have the WordPress administrator email listed as the From. I believe this is an issue because both the to and from are now a Gmail address, ie. To: myclient@gmail.com and From: myclient@gmail.com, and Gmail is kicking them back as untrusted. How do I get it to change the From email in all cases? Note that I am using the Buddyboss theme, if that makes a difference. Since the above code isn’t checking for the value of $email_type I would have thought it would just work on all of the emails, but the code is also 3 years old so guessing some things may have changed.
Edit: Also, will Buddypress play well with plugins that allow you to send authenticated emails via SMTP or IMAP, such as WP Mail SMTP by WPForms? I feel that might alleviate the issues we are having but it would be good to know if there’s anything special we need to do before going down that road, thanks.
-Michael
Topic: Adding Buddypress rank?
How is Buddypress rank added?
Wordpress:5.3
BuddyPress: 1.0.359Hi,
I’m having a few dozen database error entries in the apache log every day. First i thought the WP Cerber plugin could be the trouble maker. Since this entries are all connected with failed login attempts with wrong user names. Most probably Spambots. But the WP Cerber developer told me that this is a Buddypress issue. See this issue: https://wordpress.org/support/topic/wordpress-database-error-you-have-an-error-in-your-sql-syntax-5/#post-12366843
So i kindly ask for support here.
Such a log looks usually like this. A few attempts from always the same non existing user name before it gets locked by WP Cerber:
WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ‘WHERE active = 0 AND user_login = ‘AveryZem’ ORDER BY signup_id DESC LIMIT 0, 1′ at line 1 for query SELECT * FROM WHERE active = 0 AND user_login = ‘AveryZem’ ORDER BY signup_id DESC LIMIT 0, 1 made by require(‘wp-blog-header.php’), require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), do_action(‘init’), WP_Hook->do_action, WP_Hook->apply_filters, {closure}, cerber_wp_login_page, require(‘wp-login.php’), wp_signon, wp_authenticate, apply_filters(‘authenticate’), WP_Hook->apply_filters, bp_core_signup_disable_inactive, BP_Signup::get, referer: https://bforartists.de/bfa-login/
The page is unfortunately already productive. So i cannot turn off addons wildly anymore.
Could you please help me to get rid of this errors please? ????
Kind regards
Arunderan
Hi there, I’m having trouble with getting BP running. This are my stats:
+ WordPress 5.0.8
+ BuddyPress Version 5.1.2
+ Custom Template made by myself from scratch so I have no idea on what WP tags call the BP functions into display
+ I DONT use “the_content()” WP tag on the index because I load my content with the Ajax Load More plugin
+ I DO use “the_content()” WP tag on both -pages- and -single- post viewI would like to use the “members” BP on my current page template, must I do a hierarchical overload so that buddypress pulls a special template but only for the “members” BP page? because I mean, currently all pages pull the WP hierarchy php “page” files, but members dont seem to appear, maybe I’m lacking a special hierarcy BP “page” file so that BP recognizes it and displays the members table?
I would also like to use the BP profile on a “single post” template, like when someone presses a “view profile” link then user gets redirected to the profile page with the activity posts of that person, sort of like in facebook the profile page yo know? do I need to create a special php on the BP hierarchy logic so that it can display the profile (cover image, profile pic, extended profile data, posts-activity) inside the WP single page hierarcy template?
what WP fuction is it that BP uses to display its content? I guess its not “the_content()” right? because I do use that tag but nothing displays…
I hope I can get some support, I’ll make my best to explain myself if I wasnt being clear enough
Hello guys,
First of all I’m new to wordpress and can’t code yet so I use plugins and themes. I’m having trouble after deleting the Ultimate member plugin because now I can’t register users at all (it used to work before). I now just want to add members with the regular buddypress but BP asks me in which page the users are “registering” and that page does not exist I think… How can I make the users register without using any plugins apart from BP (user registration is enabled in Settings > General). I just want the normal registration with BP to work (so I can add the profile) and can’t seem to make it work. I have to make a “registering” page or something? How can I do that without plugins?
Thank you in advance
WP version is 5.3.2, BP version is 5.1.2 and page is http://www.languageslearningclub.com
Topic: Featured images not working
Hi
I have a clean installation of Buddypress and WordPress (only) with Twenty Twelve theme.
When a user publishes a (standard non-cpt) post and selects an featured image, the image does not appear in the activity feed.
It does however, appear if I go back to the post, make an edit and then save again. If I do this, and refresh the activity the page, the featured image appears.
Is there a fix or something I need to configure so that the feed shows the featured image once the post is published the first time?
Hi, I have discovered that bbPress forum moderators can access another user’s BuddyPress Email & Password page by going to URL/members/USERNAME/settings/ revealing the user’s email address.
How can we block access to this page to protect user’s privacy?
Thank you, Sam
WordPress 5.3.2
bbPress 2.6.3
BuddyPress 5.1.2After logging in the site crashes due to a Fatal error: Uncaught Error: Call to undefined function bp_loggedinuser_link()
However I am able to reach my WP backend.The Buddypress plugin is installed on my wordpress backend.
Can someone explain where this bp_loggedinuser_links() is located and how I can check if the whright path is being accessed when this function is called.The page I need help with: https://inspirathors.proeverijthijs.nl/
Wordpress 5.2.5, Toivo Lite Theme, Buddypres 5.1.2,
my site : https://ecocloud-smart.utc.frI developed this web site and all was Ok with http version. After migration to htpps, the members list cannot be seen (by the members number is Ok (3) and my friends number is Ok (1) if I am logged on my web site), a message “members list is loading” appears and nothing after. This can be seen by clicking on the url https://ecocloud-smart.utc.fr . Same behavior with groups list.
If I connect directly on the host computer and I view my website, it works well.
Have you any idea to help me
Regards,
GuyTopic: Page not found on every tab
On every tab Activity,Profile etc I get page not found on the title tab. I have already set my permalinks as http://www.example.com/example-post-blah. Everything else seems to be working fine.
Here is my wordpress section on my .htaccess file.
# BEGIN WordPress
# The directives (lines) betweenBEGIN WordPressandEND WordPressare
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Am I missing anything ?
Hi guys
I have the Aardvark theme which comes bundled with Paid Memberships Pro and BuddyPress/bbPress.
WP version 5.3.2, BP version 5.1.2
I’ve set the site so any non logged-in user goes to a set page, the site is essentially private.For some reason, the activity feed on the homepage wall only shows activities when logged in as admin. Any other user gets the message “Sorry, there was no activity found. Please try a different filter.” If they post a status, it’s visible when posted and goes into the database, but refreshing the homepage leads to an empty wall again.
I’ve only made one recommended tweak to the child theme – redirecting non-logged in users to a “public page”. I can provide the admin login if that helps.
function my_template_redirect_require_membership_access() { if(!is_admin()){ if ( function_exists( 'pmpro_has_membership_access' ) && ! pmpro_has_membership_access() ) { wp_redirect( pmpro_url( 'levels' ) ); exit; } } } add_action( 'template_redirect', 'my_template_redirect_require_membership_access' );As I don’t know where the problem lies I’m not sure what settings to show you. I’ve tried disabling all of the additional plugins I’ve installed to no avail. Here are the plugins I have installed:
Aardvark Plugin
bbP private groups
This plugin adds private groups to the forums, allocating users to groups, and combinations of forums to those groups, creating multiple closed forums.bbPress
bbPress is forum software with a twist from the creators of WordPress.bbPress Notify (No-Spam)
Sends email notifications upon topic/reply creation, as long as it’s not flagged as spam. If you like this plugin, help share the trust and rate it!BP Profile Search
BuddyPress
BuddyPress Xprofile Custom Field Types
Classic Editor
Coming Soon Page, Under Construction & Maintenance Mode by SeedProd
Contact Form 7
Elementor
Envato Market
Events Manager
GD bbPress Attachments
LayerSlider WP
Paid Memberships Pro
Paid Memberships Pro – bbPress Add On
Paid Memberships Pro – BuddyPress Add On
Paid Memberships Pro – Mailchimp Add On
Passster
Plugin to password-protect portions of a Page or Post.Responsive for WPBakery Page Builder
rtMedia for WordPress, BuddyPress and bbPress
Sensei Certificates
Sensei LMS
Smash Balloon Instagram Feed
Display beautifully clean, customizable, and responsive Instagram feeds.Smush
Reduce image file sizes, improve performance and boost your SEO using the free WPMU DEV WordPress Smush API.Theia Sticky Sidebar
Transcoder
Ultimate Reviewer
UpdraftPlus – Backup/Restore
Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.WooCommerce
Wordfence Security
Wordfence Security – Anti-virus, Firewall and Malware Scan
WordPress Popular Posts
WP Google Review Slider
Allows you to easily display your Google Places business reviews in your Posts, Pages, and Widget areas!WP-Live Chat by 3CX
The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP-Live Chat by 3CX.WPBakery Page Builder
Youzer
I can send a link to a zip file of the settings of the various membership and theme plugins if that helps.
I understand the issue could be complex but I’m a PHP developer, so if you know of some places I can look in the code or starting points for investigation that would be really helpful 🙂
Cheers