Search Results for 'theme'
-
Search Results
-
Hi
I just updated or WordPress site and plugins and we have an error in uploading avatar, within the “change avatar” page. It gives me an HTTP ERROR. I tried temporarily removing all plugins, different themes still the error remains. This is a critical error since its a very heavily used feature within our community. Not sure what to do, Trying to look at temporary alternative while getting this to work.Also when I look at the web console, when I get an HTTP ERROR, it shows there was an internal error with wp-admin/admin.php. Trying to get it fixed ASAP any help is appreciated.
I have a code / plugin which derivates a list of UserIDs by some logic which I want to display in a separate page in a sort of members loop.
I tried similarly to this code, setting the args and than loading the template, it simply does not display the members:
$members_args = array( 'include' => array(list of user ids here ... 1, 13, 25, 126, ...), 'exclude' => array(bp_loggedin_user_id()), 'per_page' => $max_members, 'max' => $max_members, 'populate_extras' => true, 'search_terms' => false, ); echo '<div id="buddypress" class="buddypress-wrap bp-dir-hori-nav bp-shortcode-wrap">'; echo '<div class="members">'; echo '<div class="subnav-filters filters no-ajax" id="subnav-filters">'; bp_get_template_part( 'common/filters/grid-filters' ); echo '</div>'; echo '<div class="screen-content members-directory-content">'; echo '<div id="members-dir-list" class="members dir-list">'; buddypress()->current_member_type = "my separate loop"; buddypress()->current_component = 'members'; buddypress()->is_directory = true; // Get a BuddyPress members-loop template part for display in a theme. bp_get_template_part( 'members/members-loop' ); echo '</div>'; echo '</div>'; echo '</div>';I also tried instead to modify the query args like so instead of setting $members_args, but this does not work neither:
$include = array(1, 13, 25, 126, ...); # list of user IDs to show add_filter ('bp_ajax_querystring', 'modify_directory', 20, 2); function modify_directory ($query_string, $object) { if ($object != 'members') return $query_string; if (!empty ($query_string)) $query_string .= '&'; $query_string .= 'include='. implode(',', $include).'&exclude='.bp_loggedin_user_id(); return $query_string; }Any idea?
Topic: Registration Page
Hi,
I am using the theme OceanWP and Elementor. My problem is that even when I choose full width for my registration page (individual page setting), BuddyPress seems to be inserting a sidebar on the right. When I set the wide layout for the entire site (which I do not want) in the Customize-General Settings, the sidebar disappears. However, the text boxes become very wide and span almost the entire page and this looks ugly. I cannot access the registration page using elemetor unless I disconnect it from BuddyPress. But, even then I do not see any text boxes on the page. I believe this is so because BuddyPress dynamically puts in the text boxes when a user visits the page. How then can I reduce the width of the text boxes in the registration page (keeping only that page’s setting as full width and not for the whole site) and also format the registration page? I do have the BuddyBuilder plugin but it does not show the registration page.
Thanks
Hello,
Have integrated BuddyPress with WordPress and I want my subscribers to be able to access the Settings sections and be able to change their passwords and email addresses.
When they try changing their passwords..They get logout the error message “You must log in to access the page you requested”
I also tried and deactivated all the plugins and changed the theme but am still getting the same issue.See my link below
Topic: Log in does not appear
Hi,
Can someone please tell me how to get the ‘Log in’ on my main menu on my header? I see ‘Register’, ‘Groups’, Activity’ but not ‘Log in’.
The ‘log in’ does appear on the black top bar along with ‘register’ but I want to remove the top bar. I
have disabled the top bar in my theme but it continues to appear, so I think it is the BuddyPress top bar. How can I remove it?Thanks
I have created a study website where user can access online courses. I am using the buddyboss theme with WordPress 5.7.2 version. I want to add a feature called “Study-Buddy” which shows a random user from only the student user type. If the user hits the ‘Find Study-Buddy’ button it shows a random student. If the student doesn’t like the random choice then he/she can find another one. Can anyone please suggest how can I implement this feature.
Hi,
Using
function profile_tab_event() { global $bp; bp_core_new_nav_item( array( 'name' => 'Events', 'slug' => 'event', 'screen_function' => 'event_screen', 'show_for_displayed_user' => false, 'position' => 70, 'parent_url' => bp_loggedin_user_domain() . '/event/', 'parent_slug' => $bp->profile->slug, 'default_subnav_slug' => 'event' ) ); } add_action( 'bp_setup_nav', 'profile_tab_event' ); function event_screen() { // Add title and content here - last is to call the members plugin.php template. add_action( 'bp_template_title', 'event_title' ); add_action( 'bp_template_content', 'event_content' ); bp_core_load_template( 'buddypress/members/single/plugins' ); } function event_title() { echo 'Events'; } function event_content() { echo 'Content'; }I created a new tab for users. But how can this be limited to specific user types? Different user types see different tab and/or different content in the tab?
I suppose it could use this code:
$member_type = bp_get_member_type( bp_displayed_user_id() ); if ( $member_type == 'userA' ) {Though not sure how to apply it.
Any suggestions would help.
using buddyboss theme
Hi,
I hope you’re doing fine.
I’m trying to install a child theme with a plugin called Child Theme Configurator and this plugin scanned the following error within my php. Can you please help me fix this/know what I should do?
Notice: Undefined index: show_counts in /srv/htdocs/wp-content/plugins/super-socializer/inc/widget.php on line 217
Notice: Undefined index: total_shares in /srv/htdocs/wp-content/plugins/super-socializer/inc/widget.php on line 218
Notice: Undefined index: hide_for_logged_in in /srv/htdocs/wp-content/plugins/super-socializer/inc/widget.php on line 223
Warning: extract() expects parameter 1 to be array, null given in /srv/htdocs/wp-content/plugins/super-socializer/inc/widget.php on line 121
Notice: Undefined variable: before_widget in /srv/htdocs/wp-content/plugins/super-socializer/inc/widget.php on line 174
Notice: Undefined variable: after_widget in /srv/htdocs/wp-content/plugins/super-socializer/inc/widget.php on line 210
Thanks,
IrvingHello, I just installed and configured BP and registration page is blank.
These things are checked:
- Site is configured to allow anyone to register
- BP is coonfigured (under pages tab) with correct register and activate page
- WordPress permalink structure has been reset and has been tried with both, page_name and date/pagename
- Pages register and activate do exist and show header and title, but content is blank
- I tried both BP themes, legacy and noveau. register.php file exists under both themes folder
- Worpress version 5.8, BP version 9.0.0
I dindn’t configure any additional fields for registration under profile fields but according to the docs, the form should be available with this configurations I did.
Thank you.
Topic: image upload preview issue
buddypress: 9
theme: Gwangi
main domain: imin.co.il
Core: no core changeswhen upload profile photo the preview is displayed wrong
thanks
oriI need help fixing our registration page. See error encountered below:
Fatal error: Uncaught Error: Call to a member function profile_groups() on null in /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-template.php:101 Stack trace: #0 /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-content/themes/woffice/buddypress/members/register.php(53): bp_profile_groups() #1 /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-includes/template.php(732): require(‘/home/customer/…’) #2 /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(165): load_template(‘/home/customer/…’, false, Array) #3 /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(67): bp_locate_template(Array, true, false, Array) #4 /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(350): bp_get_template_ in /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-template.php on line 101
Hi,
Please help me, i installed buddypress and everything works fine, except whenever i log in and click on profile, i get redirected to a page which has not header or structure whatsoever (https://www.merrygokids.com/members/oyeakd/profile/)…..that is the link for me. but my problem is i want to edit or customize or at least add an header to it but it simply does not exist in backend.
Please help me
my site = merrygokids.com
theme = teriz onepage multipurpose
wordpress = 5.7.2
buddypress = 8.0.0
Topic: admin-ajax 403 on comments
Hello,
Site: https://community.komando.com/
WordPress: v5.7.2
BuddyPress: v7.3.0
Using Boss theme. Issue confirmed with Twenty Nineteen theme.Issue: Replying to an item in a user’s newsfeed doesn’t work – the reply never posts. The console reports
POST https://community.komando.com/wp-admin/admin-ajax.php 403
This started when we upgraded from BuddyPress 6.0.0 to 7.3.0 and persists if we upgrade to 8.0.0.
I have tried, on our dev site, deactivating all other plugins and switching active theme, but the issue persists.
Reverting to 6.0.0 on our dev site has fixed the issue and we’re planning to roll back production as well.
Any ideas?
Thanks!