Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 1,226 through 1,250 (of 32,561 total)
  • Author
    Search Results
  • varkoff
    Participant

    Project Details :
    – WordPress version : 5.5.3
    – BuddyPress version : 6.3.0
    – Website Link : https://microfarmap.dev-local.com/
    – Other plugins I use : Advanced Custom Fields PRO, Advanced Custom Fields: JSON, bbPress, bbPress – Moderation Tools, BuddyForm Premium, BuddyForm Advanced Custom Fields, BuddyForm Hook Fields, BuddoForm Members Premium, BuddyPress Username Changer, Custom Post Type UI, LoginPress, Paid Memberships Pro, Progress Map, List & Filter, User Role Editor …

    Hello,
    I have been updating a WordPress website that was made by others, I might lack some information.

    BuddyPress works like a charm except for a few features :

    – From the user profile, we can send friendship requests. As a new user, I sent a friendship request to my admin account. I did receive the notification on my admin profile, but the Friends tab says there is no friend requests pending. It just doesn’t display theme on my customized Understrap theme.

    – Switching to WordPress Twenty Twenty One theme does solve the issues. Switching to Understrap parent theme does switch the issue. There seems to be a problem with my custom theme.

    Under this custom there, there is a /buddypress/ directory with template pages and loops. The buddypress/members/single/friends/requests-loop.php file was not modified, it’s the default one. That’s where I checked first.

    I also checked in the plugin files directly, under plugins/buddypress/bp-friends/bp-friends-functions.php but did not find a clue.

    After some research, I found out that only users that have an active ‘ Paid Memberships Pro ‘ subscription can send friend requests, or atleast their friend requests appear.

    I also installed the ” BuddyPress Integration ” plugin from Paid Memberships Pro website, in which there is an option to allow non-registered users to send friend requests, but it did not solve the issue.

    Please if you need more details or even an access, do not mind asking.

    #317375
    xbladerunner
    Participant

    Hello. I created a group directory tab in the groups area of my buddypress theme, and it seems to work fine minus the page tab navigation (e.g., there are over 25 groups, and 20 or so displayed per page, but when you click to tab through the pages it is nonresponsive).

    Before I figured out how to create a buddypress page from a tab, I just created a link to the wordpress group directory page– and the navigation tabs work fine there, just not on my buddypress page, so I’m sure the problem is with my coding.

    Have you seen this before? Can you help out?

    function group_tab_yourtabname() {
          global $bp;
     	  $parent_slug = 'groups';
     	  
          bp_core_new_subnav_item( array( 
                'name' => 'Advisory Group Directory', 
                'slug' => 'directory', 
                'screen_function' => 'mydirectory_screen', 
                'position' => 40,
                'parent_url'      => bp_loggedin_user_domain() . $parent_slug.'/',
                'parent_slug'     => $parent_slug,
                
          ) );
    }
    add_action( 'bp_setup_nav', 'group_tab_yourtabname' );
     
     
    function mydirectory_screen() {
        
        // Add title and content here - last is to call the members plugin.php template.
        add_action( 'bp_template_title', 'yourtab_title' );
        add_action( 'bp_template_content', 'yourtab_content' );
        bp_core_load_template( 'buddypress/members/single/plugins' );
    }
    function yourtab_title() {
        echo '<center>Advisory Group Directory</center>';
    }
    
    function yourtab_content() { 
        echo 'United Resource Connection uses Advisory Groups as quality assurance judiciary boards. If your field of study and expertise aligns with one or more Advisory Group you are interested in joining, request membership by using the <i>Request Membership</i> buttons on the right.  ';
    do_action( 'bp_before_groups_loop' ); ?>
    
    <?php if ( bp_get_current_group_directory_type() ) : ?>
    	<p class="current-group-type"><?php bp_current_group_directory_type_message() ?></p>
    <?php endif; ?>
    
    <?php if ( bp_has_groups( 'user_id=NULL'  ) ) : ?>
    
    	<div id="pag-top" class="pagination">
    
    		<div class="pag-count" id="group-dir-count-top">
    
    			<?php bp_groups_pagination_count(); ?>
    
    		</div>
    
    		<div class="pagination-links" id="group-dir-pag-top">
    
    			<?php bp_groups_pagination_links(); ?>
    
    		</div>
    
    	</div>
    
    	<?php
    
    	/**
    	 * Fires before the listing of the groups list.
    	 *
    	 * @since 1.1.0
    	 */
    	do_action( 'bp_before_directory_groups_list' ); ?>
    
    	<ul id="groups-list" class="item-list" aria-live="assertive" aria-atomic="true" aria-relevant="all">
    
    	<?php while ( bp_groups() ) : bp_the_group(); ?>
    
    		<li <?php bp_group_class(); ?>>
    			<?php if ( ! bp_disable_group_avatar_uploads() ) : ?>
    				<div class="item-avatar">
    					<a href="<?php bp_group_permalink(); ?>"><?php bp_group_avatar( 'type=thumb&width=50&height=50' ); ?></a>
    				</div>
    			<?php endif; ?>
    
    			<div class="item">
    				<div class="item-title"><?php bp_group_link(); ?></div>
    				<div class="item-meta">
    					<span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_group_last_active( 0, array( 'relative' => false ) ) ); ?>">
    						<?php
    						/* translators: %s: last activity timestamp (e.g. "Active 1 hour ago") */
    						printf( __( 'Active %s', 'buddypress' ), bp_get_group_last_active() );
    						?>
    					</span>
    				</div>
    
    				<div class="item-desc"><?php bp_group_description_excerpt(); ?></div>
    
    				<?php
    
    				/**
    				 * Fires inside the listing of an individual group listing item.
    				 *
    				 * @since 1.1.0
    				 */
    				do_action( 'bp_directory_groups_item' ); ?>
    
    			</div>
    
    			<div class="action">
    
    				<?php
    
    				/**
    				 * Fires inside the action section of an individual group listing item.
    				 *
    				 * @since 1.1.0
    				 */
    				do_action( 'bp_directory_groups_actions' ); ?>
    
    				<div class="meta">
    
    					<?php bp_group_type(); ?> / <?php bp_group_member_count(); ?>
    
    				</div>
    
    			</div>
    
    			<div class="clear"></div>
    		</li>
    
    	<?php endwhile; ?>
    
    	</ul>
    
    	<?php
    
    	/**
    	 * Fires after the listing of the groups list.
    	 *
    	 * @since 1.1.0
    	 */
    	do_action( 'bp_after_directory_groups_list' ); ?>
    
    	<div id="pag-bottom" class="pagination">
    
    		<div class="pag-count" id="group-dir-count-bottom">
    
    			<?php bp_groups_pagination_count(); ?>
    
    		</div>
    
    		<div class="pagination-links" id="group-dir-pag-bottom">
    
    			<?php bp_groups_pagination_links(); ?>
    
    		</div>
    
    	</div>
    
    <?php else: ?>
    
    	<div id="message" class="info">
    		<p><?php _e( 'There were no groups found.', 'buddypress' ); ?></p>
    	</div>
    
    <?php endif; ?>
    
    <?php
    
    /**
     * Fires after the display of groups from the groups loop.
     *
     * @since 1.2.0
     */
    do_action( 'bp_after_groups_loop' );
    } 
    #317337
    lukgoh
    Participant

    Hi everyone,

    I have a strange bug that I have not been able to find a solution for, although I see in the forums others have had very similar issues I believe that these have been fixed many years ago.

    The Problem:
    ‘total_group_count’ value is in negative numbers for several users. Some up to -17. Using the “Repair total groups count for each member” tool does not fix these negative numbers.

    I could simply change all these values in the database but I think it will happen again and I would like to understand what might be causing this issue. I have gone through the database for ghost entries relating to groups and I have confirmed that the only entries that exist are for groups found on the website. I have also confirmed this is not theme related.

    The setup:
    BuddyPress Version 6.3.0, network installed on WordPress 5.5.3 multisite. Hosted by WPengine.

    If anyone can point me in any direction it would be really appreciated.

    #317287
    gracenote
    Participant

    Hey guys, I’ve scoured around google and this forum. Not sure if I simply don’t know what keywords to plug in but I haven’t found a solution. :-/

    My membership page is not working. When you go to the page, you’ll see this string of code:
    [kc_row _id=”852969″][kc_column _id=”404198″][kc_column_text _id=”130096″][edr_user_membership][/kc_column_text][/kc_column][/kc_row]

    I’m using the Avada WordPress 5.5.3 theme on my site with WordPress with BuddyPress 7.1.0

    Here’s a screenshot to help: https://drive.google.com/file/d/1dfQirfgFrZVC4FiaFyxR7mtI0PotVQX0/view?usp=sharing

    Appreciate you taking the time to read this far. 🙂 Thank you!

    #317286
    Mathieu Viet
    Moderator

    Hi @paulw32,

    To force BuddyPress to use the wp_mail() WordPress function, you need to add a filter this way:

    add_filter( 'bp_email_use_wp_mail', '__return_true' );

    You can add this into the functions.php file of your active theme or into a bp-custom.php file at the root of your /plugins directory.

    PS: if you’re using the bp-custom.php file, make sure the first line of the file is used to open a PHP tag:

    <?php

    #317273
    apr0424
    Participant

    PLEASE HELP!! I Installed buddypress. Unfortunately registration and activate are not working: The pages where to it directs do not present the registration or activate page: Instead it gives: Not Found.

    I tried: using different themes, deleting and re-installing the theme, stopping all othter plugins. Nothing works.

    #317258
    Pieter
    Participant

    I don’t have that “replies disabled”.
    So here the replies give the impression to work but they don’t.

    I think you should ask your theme developers.
    Mine are working on it, I hope.

    But of course first try to disable all plugins except BuddyPress and test, so you know that no plugin is the culprit.

    #317251
    apr0424
    Participant

    I use the videopro theme. I cannot make a registration-page using buddypress. I already changed the settings to anyone can register.

    The pages members, Activity and Groups do work.

    Please help.

    Kind Regards
    Anton

    #317206
    Pieter
    Participant

    The same here.
    I found that it did work with the standard theme Twenty Twenty.
    So it must be a problem with the theme we are using.
    Contact the theme maker.
    Good luck.

    #317184

    In reply to: Where is the sidebar?

    simon_a6
    Participant

    We are told that our theme, Porto, is not testing with Buddy Press.

    Is there is obvious area for us to check, to make the Buddy Press sidebar work? We have the Sidebar set with the various widgets, but it just doesn’t appear on the page, so BP must be ovveriding it.

    Can someone please assist?

    #317088
    myshanai
    Participant

    I have tested it using superuser/website admin login, the problem still occurs.
    I have tested it using default themes (WP twenty twenty one), the problem still occurs.

    #317082
    wybezeyl
    Participant

    Dear Sir/Madam,

    How can we customize the private messages, send by buddypress-users to each other? What we would like to do: Add a question in the message-content, that gives the sender the option if having the receiver to choose from a multiple choice question. (example: Sender asks: what is your favorite football team: Ajax, Barcelona or Juventus? Receiver responds with the name of his/her favorite team.)
    We already know how to send multiple choice options to a receiver. These options are saved in the MySql-database. The receiver gets al list with radiobuttons.
    The problem is that the receiver can check a radiobutton, but his choice is not sent to the original sender, nor is it saved in the database.
    The only thing that is sent back and saved is what you type in the message-reply-box.
    We already added an input textfield where the reciever types his/her choice in. This textfield is under the reply-box. But the content is not saved or sent when you click the reply-button.
    We use WordPress version 5.6.1.
    We use buddypress 7.1.0.
    Our website is 2tango.org/dating
    -Theme: twentytwenty
    The program-file is: bp-custom.php.
    In this file bp-custom we use add_action( ‘bp_after_messages_compose_content’, function() for adding the multiple-choice things when sending a message. This works fine.
    In this file bp-custom we use add_action( ‘bp_after_message_reply_box’, function() for adding the choice of the receiver to the reply-message.
    He or she can type his/her choice in an input-textfield.
    Unfortunately this does not work.
    So only the content of the classic message-reply textarea is sent and saved and not the content of the additional input-textfield.

    Can anyone help us?
    Thanks in advance.

    #317050
    Julia
    Participant

    1. Which version of WordPress are you running?
    ⇒WordPress 5.6.1

    2. Did you install WordPress as a directory or subdomain install?
    ⇒As a directory

    3. If a directory install, is it in root or in a subdirectory?
    ⇒subdirectory? full pass /home/users/1/〇〇〇〇〇〇/web 

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    ⇒Yes. WordPress 5.5.3 
    But it is the first try to see wrong display in buddypress.
    I am beginner.

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    ⇒Yes properly.

    6. Which version of BP are you running?
    ⇒Version 7.1.0

    7. Did you upgraded from a previous version of BP? If so, from which version?
    ⇒Probably No.

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    ⇒bbpress Version 2.6.6
    Other plugins are unactive in the test.

    9. Are you using a standard WordPress theme or customized theme?
    ⇒a standard WordPress theme

    10. Which theme do you use ?
    ⇒Generatepress Version 3.0.2

    11. Have you modified the core files in any way?
    ⇒No

    12. Do you have any custom functions in bp-custom.php?
    ⇒No

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    ⇒bbpress Version 2.6.6
    copy ⇒Unknown

    14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress

    ⇒The code is adding.

    
     // WP_DEBUG debug mode
    define( 'WP_DEBUG', true );
    
    // /wp-content/debug.log 
    define( 'WP_DEBUG_LOG', true );
    

    ⇒No error message!
    ⇒No log file generated. In short, no bug?

    15. Which company provides your hosting?
    ⇒lolipop.jp[Japan]

    16. Is your server running Windows, or if Linux; Apache, nginx or something else?
    ⇒Linux(CentOS)
    ⇒ Apache

    17. Which BP Theme are you using?
    ⇒Buddypress Nouveau

    18. Have you overloaded any BuddyPress template files.
    ⇒Unknow

    19. Any other site customisations that might have a bearing on the issue?
    ⇒No.  After remove customisations code in bbpress, I checked it.

    20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page.
    ⇒Buddypress Nouveau

    Basic Trouble Shooting:

    1. Identifying whether you have a theme issue:
    ⇒I tried other two themes[ Onepress and Twenty Twenty-One],
    but the icon[×] trouble occurred in buddypress profile page.(Nothing happens)

    2. Plugins:
    ⇒In the bbpress is activated only, the icon[×] works completely.(The topic deleted!!)
    In the bbpress and buddypress set, the icon[×] trouble occurred in buddypress profile page.(Nothing happens)
    Both test, the other plugins are invalid(not active).

    3. BP Themes:
    Both Buddypress Nouveau and Legacy, same wrong display.(Nothing happens)

    I think it is something wrong with the icon[×] button? on forum section in buddypress.
    Nothing happens when that [x] is clicked.

    #317048

    In reply to: BuddyPress 7.1.0

    djsteveb
    Participant

    The edit avatar / upload profile pic is still broken for new installs.

    my older bp sites (that have been updated to latest BP) (one multiSite and one singleSite) still have ‘change profile photo’ via the top right bar menu under profile.. and on the profile page itself.

    A newer BP install 5 months ago, bp 6.3 and a fresh install this week (7.1) – do not have the option to edit profile pic / avatar.

    Even when switching to default theme and turn off all other plugins.

    Change cover image does still appear – and I double checked the bp settings are check for : Allow registered members to upload avatars”

    Any ideas what is happening here?

    #317035
    Yambub
    Participant

    Hi Thanks for replying. I tried deactivating youzer and the theme, no change. I didn’t want to try their “support” as I previously had no reply. Seems they want money for supporting their stuff! Anyway it seems to have fixed itself after another day… so I can’t find out why it happened!
    Cheers.

    #317011

    In reply to: Member Nav Issue

    clickallco
    Participant

    Hi, did you try switching your theme and turning off your plugins one by one to see if any of those were bugging it?

    reneuam
    Participant

    Hello everyone,

    I have a couple of private and hidden groups and when I go to the feed, I can see the group posts but also I can see the public posts of another public group inside my private’s groups, I am using Body Boss Child Theme.

    saraelba
    Participant

    Hello!
    Im trying to get out the buddypress menu from the wordpress toolbar and put it on a another menu on my website.

    My theme it shows a “login in” button on the top right corner, and there is a menu button too but this button dissapears slowly (with some javascript I supposed) and only shows the admin toolbar if a user is logged in.

    I want to change that.
    I want the admin toolbar out.
    (I had change the theme. Same results, except the javascript thing).

    Also, I want to edit the links in the menu too and add other links not related to buddypress.

    Thanks a lot!!!

    #316984
    kindleman
    Participant

    Hi.
    In Message > Compose, the ‘Send To’ field searches the username and displays result in the contextual menu to autocomplete.

    In our website, the username is generated by an external system. ie, it’s 00123456789 – not something someone will know.
    If I use the user’s ‘name’ – ie ‘kirsten’ – the contextual menu does not display with any results.

    Is it possible to change what this is searching for – eg, the Full Name, or the Nickname?
    Anyone got the code to do that?

    (Using Legacy theme on BP7.0.0)

    #316981
    iamthewebb
    Participant

    Hi Youzer isn’t just a theme it considerably changes the code and functionality, you will be best to ask them for support whilst this is in use.

    #316978
    Yambub
    Participant

    Hi I have been setting up a social site (clickforcharity.net) using buddypress and youzer theme etc, all going fine except that I set up a group (only testing at this stage) and could se it all fine as admin, then I set up normal users to test, and it allows them to join groups but then instead of showing all the activity it says “Sorry, there was no activity found. Please try a different filter” even though no filter is applied.

    I found some very old references to this message but following the advice found there did not change anything. (e.g. here).

    Eventually I found that if I gave the users admin privileges the problem wen away. Despite making me happy that I had managed to do some troubleshooting, I’m now stuck. Any ideas appreciated, specially if you’ve come across this before and know what I did wrong!

    Cheers.

    WP set-up details are in pastebin rather than cluttering up here.

    #316968
    Living Lingo
    Participant

    Hi guys,
    I have a little problem with the Safari Version 14.0.1.
    If a new user logged in as an author he is not able to write something on the website:
    wir-in-gefrees.de.
    In Chrome, Firefox and IE everything works fine.
    I deactivate all plugins, changed the theme to Twenty Twenty-One, activeate the plugins step by step, delete all cookies, get a lot infons from the theme authors but nothing helped on this issue.
    Do you have an idea how it could be fixed?
    Best, Micha

    mayhemcreates
    Participant

    Hi there

    I’m having a problem where I place internal site links and rather than providing the plain text link, it fires an iFrame that displays the site template. The site uses Sydney theme and Elementor. From using the inspector, I think this may be part of the offending code, but I have no knowledge of php to be certain. Any help would be much appreciated!

    You can see the resulting post here https://drive.google.com/file/d/1gXKcLpStsf3m9Pc4P-QDrqk_nt8Y4_dx/view?usp=sharing (this is the site template it’s pulling through).

    `<iframe loading=”lazy” class=”wp-embedded-content” sandbox=”allow-scripts” security=”restricted” title=”“Read the latest issue of the NGCV E-News and sign up for the next issue.” — NGCV” src=”https://ngcv.org.uk/read-the-latest-issue-of-the-ngcv-e-news-and-sign-up-for-the-next-issue/embed/#?secret=F7fW6tPZ51&#8243; data-secret=”F7fW6tPZ51″ width=”600″ height=”623″ frameborder=”0″ marginwidth=”0″ marginheight=”0″ scrolling=”no”></iframe>

    #316941
    rodgerhs
    Participant
    #316940
    rodgerhs
    Participant

    I am using WPOcean theme and there is not an section for BuddyPress in the theme.
    There is a LearnDash section and chose the layout with a sidebar?

    Is my theme the problem? Why is my theme not showing me Buddypress?

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