Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 2,501 through 2,525 (of 32,066 total)
  • Author
    Search Results
  • #282819
    SciFiKriss
    Participant

    I am only uploading on the member screen…if I do it on the User Screen through the Admin page it works fine…but my Users won’t have that option.

    Screen cap of page

    I am using a theme now that is tested with BuddyPress

    Kriss 🙂

    #282816
    shanebp
    Moderator

    You need to narrow down the possible sources of the issue.
    Have you tried in with a WP theme like 2016 ?
    Do you have the same issue with avatars on your member profile screen?
    Have you checked your browser’s javascript console for errors? This is a good place to check for conflicts with other plugins.

    #282813
    SciFiKriss
    Participant

    Hi guys

    I am trying to upload an avatar or profile pic in a group and the image is not appearing for cropping…I have tried it on a couple of themes and all that is coming up is 1px x 1px pic.

    Can you help?

    Krissmania

    Thanks in advance

    Kriss 🙂

    #282807
    shanebp
    Moderator

    It should be okay. And just install it to find out for sure.
    There is also this one that may be a little better re BP Theme Compat:
    https://github.com/boonebgorges/buddypress-skeleton-component/tree/1.7

    The best way, for now, is to look thru the codebase for examples of how the BP_Component class is extended to create components.

    #282804
    shanebp
    Moderator

    As stated, the code is just an example of collecting the groups and group members.

    You could put the code in a function and then call that function wherever you want.
    For example, this could go in your theme > functions.php file :

    function diego_show_groups() {
    
    	$args = array(
    		 'show_hidden'   => true,
    		 'per_page'      => -1      
    	);
    
    	$groups = groups_get_groups( $args );
    
    	foreach ( $groups['groups'] as $group ) {
    				
    		$args = array(
    			'group_id'   		=> $group->id,
    			'exclude_admins_mods'   => false      
    		);
    
    		$members = groups_get_group_members( $args ); 
    		
    		echo'<pre>'; var_dump( $members );  echo'</pre>'; // just for reference
    		
    		// do something with the member data
    	}
    	
    }

    Then in a template, you could put: <?php diego_show_groups(); ?>

    Only you know exactly what you’re trying to do.
    As I said: Where and when you place the data is up to you.

    #282801
    diegomiguel05
    Participant

    Hello @shanebp, thanks for the hook.

    Sorry but I don`t know where I have to insert it. Wherever I paste it, no group members list is displayed (probably I’m not pasting it it in the correct file), I have tried in functions.php and in group-header.php of the theme. Could you please tell me where I should insert it?

    Thank you and sorry for bothering.

    shanebp
    Moderator

    If you mean the Private Message button at the top of a profile page, then place this code in bp-custom.php or in your theme > functions.php

    function lindsay_profile_button() {
    ?>
    	<div class="generic-button"><a href="https://google.com" >go to google</a></div>
    <?php
    }
    add_action( 'bp_member_header_actions', 'lindsay_profile_button', 25 );

    If ‘Private Messaging’ means something else, then you need to talk to the creators of that code because it does not come from BuddyPress.

    #282749
    rahulsavsani
    Participant

    I have real estate theme. I want web hook notifications such that when a user applies for a property on my site, notification with property details and applicant details should be sent to the owner of that property. Is it possible with buddypress notifications? And If yes, please guide me through the steps.

    luvlifewlee
    Participant

    Thhe submit/update/post button on profile or group activity stream is missing. Actually, it’s just invisable. You can still click the AREA of the button (guess and click lol) but before I launch membership, itll need to be seen.

    It makes me think its style related. I used Customify Theme, and am running a number of buddy press plugins, as well as bbpress. Ive deactivated any activity stream related plugins, and also deactivated and deleted the activity privacy plugin.

    Without deactivating… all my plugins. (again) Is there a few plugins I should watch for? some styling magaic I can do?

    #282718
    awalia100
    Participant

    I am trying to give my users the option to be able to upload a profile picture but I don’t have the option to give the users that ability like it’s stated in the docs (https://codex.buddypress.org/themes/guides/customizing-buddypress-avatars/).

    The closest thing I could find was to give the users “extended profiles” under components but I’m not too sure if that would do it and seems like it would give the users other options I don’t want them to have.

    Any help is appreciated. Thanks.

    #282708
    Venutius
    Moderator

    The first thing to do would be to deactivate all other plugins apart from BuddyPress and see if the fault remains. If it does then you need to check if you have overloaded the file by looking in wp-content/themes/your-child-theme/buddypress/members/single/messages/compose.php, if this file exists then check permissions and file content, if it does not exist then check permissions of wp-content/plugins/buddypress/bp-templates/bp-legacy or bp-nouveau/buddypress/members/single/messages/compose.php

    dyrasan
    Participant

    If you are creating new custom post types then you can just add the same field group to the new post types. Fields can have the same names when used on different post types.

    If I understand what you doing though, I’d probably set up a custom taxonomy of location for the custom post type, then you can create separate lists for each location and only need to add one more template file to your theme “taxonomy-location.php”

    https://codex.wordpress.org/Function_Reference/register_taxonomy

    thanks.

    #282676
    pethol
    Participant

    /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/home.php

    This can take care of the top part at least, but not the page title. I’m still working on figuring that one out.

    PS. I’m old school. I don’t use child themes.

    #282674
    worldbettas
    Participant

    Wordpress 5.0
    Current BP as of 12/10/2018

    Home

    Hello,
    So my question is that when a user try’s to add a group or update their info or type in any of the field boxes the text is white and the current box it white also and you can not see what you are typing. If you type it will add the typing but you can not see it till you go to the next box and the box returns to the sites theme box color. Not sure if I made this understandable.
    But, type can not be seen but is working, to see it you need to move to the next box so the box goes back to the color it was before you started to type in the box. So either need to make the text visible or change the box color so the white text shows up in the white box 🙂 Hope I made this understandable as I am not a programmer. 😉

    #282672
    pethol
    Participant

    So, I would like to remove the parts I marked with red on the picture. I don’t need them, since I already have name and picture on the left.

    I use frontier theme and WP ver. 5.0

    Which files do I edit to do this?(and where are they located?)

    Screenshot

    #282671
    meriping
    Participant

    I’m a newbie. I’m trying to change the user profile changing some information that will be displayed and I think I have an idea how to do it, but I have no idea which is the file that I have to change. I’m using a child theme and the last version of buddypress.

    Thanks guys

    shanebp
    Moderator

    On your profile, go to ‘Profile’.
    You should see these tabs:

    • View
    • Edit
    • Change Profile Photo
    • Change Cover Image

    The avatar is on the Change Profile Photo screen.

    If you don’t see it, to narrow things down, try momentarily changing to a WP theme like 2016.
    Also try changing the Template Pack in BuddyPress > Options

    mattybakes01
    Participant

    Hi Guys,

    I have ticked Allow registered members to upload avatars but the option does not appear in the profile itself.

    Allow registered members to upload cover images does show.

    I have disabled all plugins to see if something was causing the issue but that hasn’t worked.
    I have removed all custom CSS, custom functions. Anything I have added I have removed but no joy.

    Am i missing something?

    The rest of Buddypress works fine just no option to change the profile picture/avatar!

    Wordpress version: 4.9.8
    Themeis Divi Version: 3.18.3
    Buddypress version: 4.1.0
    BBPress Version: 2.5.14

    #282552
    tibbalds
    Participant

    A few more details

    1. Which version of WordPress are you running?
    V5

    2. Did you install WordPress as a directory or subdomain install?
    We access the wordpress site online

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    No, it’s a new website, build within the last two months

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    Yes, however we installed buddypress early on in the website’s creation.

    6. Which version of BP are you running?
    Version 4.1.0

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    11 plugins (some were installed after the issue first occurred.

    • Akismet Anti-Spam v4.1
    • AMP v0.7.2
    • bbp style pack v4.0.3
    • bbPress v2.5.14
    • Contact Form 7 v5.0.5
    • Custom Twitter Feeds v1.2.10
    • Flamingo v1.9
    • Jetpack by WordPress.com v6.8.1
    • MultiLine files for Contact Form 7 v1.2
    • Peter’s Login Redirect v2.9.1 (after issue in an attempt to fix)
    • The Events Calendar v4.7.1

    9. Are you using the standard WordPress theme or customized theme? 10. Which theme do you use ?
    Standard theme – Ixion v1.1.5-wpcom

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

    12. Do you have any custom functions in bp-custom.php?
    Not that I know of

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    bbPress v2.5.14

    14. Please provide a list of any errors in your server’s log files.
    Not sure how to access this

    15. Which company provides your hosting?
    Wordpress

    #282530

    In reply to: A Mess of Issues

    Venutius
    Moderator

    also check your themes functions.php file, you may have some scripts in there.

    shanebp
    Moderator

    You can use any theme with BuddyPress.
    There are some themes that place an emphasis on BuddyPress, for example BuddyBoss.
    You can choose one of two template packs in wp-admin > Settings > BuddyPress > Options > Template Pack.
    And you can customize the BP templates – if you know how to write code.
    More info here.

    #282482
    shanebp
    Moderator

    BuddyPress does not require a user to be logged in order to view a profile.

    You have some code on your site ( in a plugin, your theme or some custom code ), that is doing the redirect. You’ll need to find and remove or adjust that code.

    thafley
    Participant

    @shanebp

    RESOLVED!

    I completely wiped away everything and started ground up with Server 2016 and IIS. I installed PHP 7.2, MySQL 5.6, PHPMyAdmin 4.8.3, and WordPress 4.9.8.

    I did all the manual configuration required for each. Installed the theme/plugins again. This time buddy press installed correctly with all the directories needed to access messages, etc.

    The only thing I did differently was change from MySQL 8.0 to MySQL 5.6 and enable some extensions. I followed this article to the T:

    A Complete Guide to Installing MySQL and PHP with IIS

    Thanks for the support @shanebp !

    #282455
    Dabrem
    Participant

    Buddypress V.4.0.0
    Wordpress V.4.9.8

    My website is an adult company that has not launched yet. So with respect to those viewing this thread I will not share a link to site. But I am using the BeSocial Theme.

    My Problem is:
    I create a dropdown profile field. Save it in admin. But when a member edits on the front end, the selection is not saved. Nothing shows in database. Doesn’t show on their profile etc. Its as if they never made a selection even though the site says the save was successful.

    I am at a lost on what is going on. It is also happening on multi-select box. Other forms are saving though.

    Only the dropdown style fields are not saving.

    Please help anyone

    #282449
    adultstyleclub
    Participant

    Hello all, I am having the same problem. It started about a month ago and I have disabled most of the plugins and still does the same. I am using the theme Graphene Plus. I have tried everything but unable to come up with a solution.
    George

Viewing 25 results - 2,501 through 2,525 (of 32,066 total)
Skip to toolbar