Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 1,026 through 1,050 (of 32,561 total)
  • Author
    Search Results
  • rightsizeyourhome
    Participant

    I 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

    #320026

    In reply to: Missing sidebar icons

    mastersegarra
    Participant

    For anyone that needs this:

    Replicating our Demo Homepage

    ftc1
    Participant

    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

    #319975
    bergblume
    Participant

    I found the solution. As in Buddypress also the normal wordpress posts are published you only have to edit this file searchform.php in your themes folder (add there /activity/ behind home_url ) to:

    <form role="search" method="get" id="searchform" action="<?php echo home_url( '/activity/' ); ?>">
    	
    	<div class="input-group">
    		<input name="s" id="s" autocomplete="off" type="text" class="ajax_s form-control input-sm" value="<?php echo get_search_query(); ?>">
    		<span class="input-group-btn">
                <input type="submit" value="<?php _e("Search");?>" id="searchsubmit" class="button">
    		</span>
    	</div>
    
    </form>
    #319952
    humbabba
    Participant

    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!

    #319911
    palztogo
    Participant

    That is Elementor’s answer:

    The Group Directory page of Buddypress does not seem to a normal page, it’s more like an Archive template. I can see the issue does not persist on other static pages.

    As we have no control over coding for third-party plugins nor themes, we highly recommend that you report this issue to the support team for this plugin so they may further troubleshoot and provide any recommendation (or possible fix) to resolve this issue.

    lynnapp
    Participant

    I have done some more research, removing lines and adding them back in. So the problem is that when activity loads it then does a reload which then makes if statement true and goes to my products,

    So where would I find the reloading of activity or how would I add something that would check for this and allow it?

    Might be the theme which is Kleo

    shenkwen
    Participant

    I’ve been using WPLMS theme which includes Buddypress. Right after I install the theme, users won’t get the activation email when they create an account. Although in the user list page, the “email sent” field is “1”.

    Then I install Buddypress on a plain 5.7.2 site with the 2021 theme. This time the users can get the activation email from wordpress@mysite.com(although it’s in the spam folder).

    Now I go back to the previous site and deactivate all of the other plugins and change the theme to 2021, still, users won’t get the activation email. This kind of verifies what the WPLMS’s support says, this is probably not their problem.

    Both sites are on the same Linode VPS server so they have the same host setting.

    Now I am stuck here. Can you show me a way to debug this?

    01hamza97
    Participant

    Hello I have been given a task in which I need to change the mention name which is when someone tries to mention in a post or in a comment so after the mentioning my clients wants the full name to be displayed like facebook instead of user’s nicename
    Theme name: Beehive
    Site Url: https://turningheartstoday.com/

    lynnapp
    Participant

    Hi,
    I have been using the below code, So when someone clicks on the profile of an association it will redirect to the products tab.
    All is well and I can use the other tabs to navigate around except when I click on the activities tab. It takes me to the products tab users cannot see the associations (role) activity stream.

    I removed this code and it worked fine so it is some where here. I have this in the child-theme/buddypress-nouveau/members/single/home.php page

    WP Version 5.7.2 PHP 7.4.12

    	$displayed_user =  new WP_User( bp_displayed_user_id() );
    
    	if  ( ( in_array( 'associations', $displayed_user->roles, true ))   &&  
    		(strpos($_SERVER['REQUEST_URI'], "my-products") == false)  &&
    		(strpos($_SERVER['REQUEST_URI'], "front") == false)  &&
    		(strpos($_SERVER['REQUEST_URI'], "profile") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "activity") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "friends") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "my-donations") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "notifications") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "messages") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "groups") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "location") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "invite-anyone") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "settings") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "w-my-account") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "store-manager") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "articles") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "media") == false) &&
    		(strpos($_SERVER['REQUEST_URI'], "item-header-content") == false) 
    		) 
     
    	{
     //is assoc and is not already redirected to products or other profile links
    	$currenturl =  $_SERVER['REQUEST_URI'];
        	$urlto = $currenturl."my-products";
    ?>
            <script>
    	window.location.replace("<?php echo($urlto); ?>");
    	</script>
    <?php	
    
      	} else {  //  just load
    ?>
    

    Thank you for helping with this

    #319839
    shanebp
    Moderator

    The error is most likely due to your use of the ‘thrive’ theme.
    It loads its own version of BP templates:
    wp-content/themes/thrive-nouveau/...

    They have not updated their templates for the latest version of BP.
    To confirm, switch momentarily to a WP theme like 2020.
    If the issue does not persist, then contact thrive about your issue.

    #319831
    idcglobal
    Participant

    Hello

    BuddyPress header overwrite the theme header and settings, however, we want to remove some of them or replace to the theme header or images.

    How can we do that?

    #319816
    billiesmith289
    Participant

    There’s no buddypress styling in My theme.

    billiesmith289
    Participant

    How do I set the height of user and group cover image for mobile phone. please.

    My theme doesn’t come with any buddypress template.

    Thanks

    #319808
    Varun Dubey
    Participant

    @billiesmith289 that’s theme-specific adjustment, you can check with theme author

    #319806

    In reply to: RSS Icon & login

    Varun Dubey
    Participant

    You can use https://wordpress.org/plugins/loginpress/ to style the default wp-login page or If you are planning to use any custom login page using any page builder you can use create it and map newly created page to login button in header via theme customiser setting for page mapping.
    to disable rss feed
    https://pastebin.com/zaiGH4Dr

    codyrickman
    Participant

    Hello, I recently updated BuddyPress and now I am having issues with my registration page. I get the following error:

    [06-Jul-2021 12:49:48 UTC] PHP Fatal error: Uncaught Error: Call to a member function profile_groups() on null in /home/toptrailhorse/public_html/Website/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-template.php:101
    Stack trace:
    #0 /home/toptrailhorse/public_html/Website/wp-content/themes/thrive-nouveau/buddypress/members/register.php(50): bp_profile_groups()
    #1 /home/toptrailhorse/public_html/Website/wp-includes/template.php(732): require(‘/home/toptrailh…’)
    #2 /home/toptrailhorse/public_html/Website/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(165): load_template(‘/home/toptrailh…’, false, Array)
    #3 /home/toptrailhorse/public_html/Website/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(67): bp_locate_template(Array, true, false, Array)
    #4 /home/toptrailhorse/public_html/Website/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(350): bp_get_template_part(‘members/registe…’, NULL, Array)

    billiesmith289
    Participant

    In my theme, the user avatar is located just below the cover image with white background.

    It takes up tremendous space on mobile phone screen.

    How do I change it into an overlay on the cover image bottom left corner witn transparent background and small size round. Please

    Thanks

    billiesmith289
    Participant

    Hello,

    On mobile phone. Buddypress user menu in my theme is a single column menu. This takes u tremendous screen space.
    What’s the css that can change it to
    Horizontal menu with 3 dots drop down that I see in other theme demos please?

    Thanks,

    #319776
    doctrpnyc
    Participant

    I will contact the theme support people.

    I will try to roll back too.

    Thanks I will try and let you know if my issue is solved

    danielmark
    Participant

    My site is multisite and currently on localhost, I am using wordpress v5.7 and buddypress 8, I am currently trying to remove or replace this gravatar text message because I use plugin to disable access of gravatar, so I dont need this,

    The text is
    “Your profile photo will be used on your profile and throughout the site. If there is a Gravatar associated with your account email we will use that, or you can upload an image from your computer.”

    It located in wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/single/profile/change=avatar.php as I know, direct change is bad for production wordpress and I need to alter it someway, I tried to make overload theme in my child-theme but the page just show blank, help please for up to date way to solve this?

    #319759
    Mathieu Viet
    Moderator

    Hi,

    Have you tried contacting the beehive buddypress theme support team ? It looks like it’s specific to their theme.

    Lars Henriksen
    Participant

    Hi,

    I would like to align the text area in the what’s new form with the profile photo horitzontally.

    Modifying css in the customizer or browser solves the problem, but only in the customizer. When I publish, the width goes back to 100%, it seems.

    .activity-update-form #whats-new-textarea textarea {
    width: 90%;}

    Theme is Buddy X

    doctrpnyc
    Participant

    hello i am getting this error when trying to load the registration page on my website. any suugestions how to rectify it?

    [03-Jul-2021 05:41:00 UTC] PHP Fatal error: Uncaught Error: Call to a member function profile_groups() on null in C:\wamp64\www\kkk\wp-content\plugins\buddypress\bp-xprofile\bp-xprofile-template.php:101

    Stack trace:
    #0 C:\wamp64\www\kkk\wp-content\themes\beehive\buddypress\members\register.php(60): bp_profile_groups()
    #1 C:\wamp64\www\kkk\wp-includes\template.php(732): require(‘C:\\wamp64\\www\\k…’)
    #2 C:\wamp64\www\kkk\wp-content\plugins\buddypress\bp-core\bp-core-template-loader.php(165): load_template(‘C:\\wamp64\\www\\k…’, false, Array)
    #3 C:\wamp64\www\kkk\wp-content\plugins\buddypress\bp-core\bp-core-template-loader.php(67): bp_locate_template(Array, true, false, Array)
    #4 C:\wamp64\www\kkk\wp-content\plugins\buddypress\bp-core\bp-core-template-loader.php(350): bp_get_template_part(‘members/registe…’, NULL, Array)
    #5 C:\wamp64\www\kkk\wp-content\plugins\buddypress\bp-members\classes\class-bp-registration-theme-compat.php(135): bp_buffer_template_part(‘members/registe…’, NULL, false)
    #6 C:\wamp64\www\kkk\wp-includes\class-wp-hook.php(292): in C:\wamp64\www\kkk\wp-content\plugins\buddypress\bp-xprofile\bp-xprofile-template.php on line 101

    #319740
    doctrpnyc
    Participant

    hello i am using beehive buddypress theme. after i updated to buddypress 8.0.0, my registration page does not load, the preloader will be displayed indefinitely. i tried deactivating all the plugins, but the issue persists. But if i disable the theme and activate twenty twelve theme, the registration page load up. How can i resolve this issue. Please help. ITS AN EMERGENCY

Viewing 25 results - 1,026 through 1,050 (of 32,561 total)
Skip to toolbar