Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 2,676 through 2,700 (of 32,013 total)
  • Author
    Search Results
  • #277166
    Prashant Singh
    Participant

    Hi,

    With the following CSS, you can remove the border :

    .bf_field_group.elem-user_pass fieldset {
        border: none;
    }

    and for the element style like email element you have to check there which class is doing that. Because in default theme both the fields look very similar so certainly there must be some theme styling that is getting applied on email box.

    One more thing you can do is, increase the width of password fields using this CSS:

    input#user_pass {
        width: 100% !important;
    }
    
    input#user_pass2 {
        width: 100% !important;
    }

    Thanks

    #277164
    Prashant Singh
    Participant

    Please try those things that Shane mentioned and also please see this video https://screencast-o-matic.com/watch/cF6eYPYl9U where I am using the same theme to test with BuddyPress. You will see that everything looks fine there, so certainly there is anything else that is creating the issue.

    Thanks

    #277161

    In reply to: can’t make groupes

    shanebp
    Moderator

    On this page …/wp-admin/admin.php?page=bp-settings
    Under Group Creation, is box checked for Enable group creation for all users ?

    To find out if the issue is in the theme, try switching momentarily to a WP theme like 2016.

    #277155
    noureddin3
    Participant

    Hello huys,

    I just installed Buddypress whenever I try to make a new group it redirects to home page.

    Using latest version of BuddyPress, WordPress Version 4.9.8
    Theme THe Publisher latest version.
    Didn’t modify anything in the core.
    Contacted theme support they tried from there end and they said nothing is wrong with the theme as they tested.

    #277067
    shanebp
    Moderator

    BuddyPress is open source code – not a commercial product, not a hosting platform.
    All work is done by volunteers.

    I have not experienced the issues you mention.

    It can be frustrating to debug.
    You’ve described the issue, but not what you’ve tried to fix it.

    > Buddypress was manually installed by the it text and DMT web hosting
    Why? Why didn’t you just use the auto-installer?

    Have you tried –
    – deactivating mediaPress
    – deactivating any other plugins
    – switching to another WP theme
    – switching template packs via …/wp-admin/admin.php?page=bp-settings
    – using your browser debug tools to see what the css is for profile images

    iow – basic debugging to try and narrow down the possible causes.

    #276969
    lokeshgrover
    Participant

    http://prntscr.com/l1qi93

    I want to remove border shown around password fields and want password field to follow same css as Email ID which is a css for text field. Please guide me which file I need to edit to remove default theme css from this field or if anything I can add in buddyform custom class. Thanks for your help.

    brudderj505
    Participant

    I’m using buddypress 3.2.0
    Mediapress
    2016 is the theme
    Buddypress was manually installed by the it text and DMT web hosting
    The most immediate problem is that the user cover image is about 10 times larger than the viewport and I have set all configurations in every possible option both in WordPress media also in media press settings also in buddypress settings and I cannot get the user profile image to shrink down so that it will fit inside the view box insured when you upload your video image all you can see is half of your mouth or the tip of your nose the rest of the image is completely out of the viewport and I’ve been trying for 3 and 1/2 Weeks 20 hours a day to figure out the solution into my estimates there is no solution this is genuine coding glitch

    one thing I know for sure a social media platform when you can’t upload your personal profile image is going to go bust and I’ve got $800 riding on this project and I’m about to run out of time and lose my Partnerships so I need a solution to this problem as soon as freaking possible or I’m going to lose more than my partnership in my website I’m going to end up homeless in the street I’ve got everything I own riding on this project… I would really appreciate some assistance as soon as humanly possible in the matter

    #276942

    In reply to: Identicon lost

    gingerbooch
    Participant

    Hi @prashantvatsh,

    Thanks for your help. I red that link but it seems my problem is different.
    Actually what I want is my user’s gravatar identicon to be restored after the user deletes his custom avatar.
    When my users register, they automatically get an identicon from gravatar (each one is different). When they change this to a custom avatar, and then delete it, their gravatar is not getting back.
    Instead they get no avatar and their cover-image falls above their profile’s navigation links.

    I’m using Heritage default BP theme.

    knowitallninja
    Participant

    I have discovered that when a user on my site creates a private group, once they clicked the finish button and takes them to the created group it presents them with this:

    “This is a private group and you must request group membership in order to join.”

    In the back end the user is shown as a member and indeed the group appears in their list of groups but when they click the visit the group they get that warning.

    Additionally, if they click the “Request Membership” tab and press submit, this will instantly fix the issue for that specific group (but displays an error initially).

    Also if I deactivate and reactivate any plugins I have to do with buddypress (e.g. invite anyone, buddypress for learndash) then this also fixes the issue for that specific group.

    This is strange and really unwanted behaviour. I have removed child theme elements related to groups, deactivated associated plugins (those two I listed above) but this doesn’t fix the problem so it seems to be something about buddypress itself. But this can’t be intended functionality.

    Any advice on what is going wrong and a possible fix?

    #276935
    Prashant Singh
    Participant

    Hi,

    Can you please share any screenshot or screen-cast to see what’s actually happening? With the default theme active I am able to see it like this https://prnt.sc/l1f2ty

    May be there is default CSS from theme which is creating issue there.

    Thanks

    #276934
    Prashant Singh
    Participant

    Hi,

    Your theme does not seems to be compatible with the latest versions of BuddyPress. Please ask theme developer once.

    You can also try switching template packs in BuddyPress settings (Settings->BuddyPress->Options) and then in ‘Template Pack’ choose different template. If it does not help the certainly the theme is not compatible with newer versions of BuddyPress.

    Thanks

    #276925
    Prashant Singh
    Participant
    add_action('bp_ajax_querystring','ps_exclude_admin_members',20,2);
    function ps_exclude_admin_members($qs=false,$object=false){
         
        if($object!='members')
            return $qs;
            
        $excluded_user = implode(',',get_users('role=administrator&fields=ID'));
      
        
        $args=wp_parse_args($qs);
        
        if(!empty($args['user_id']))
            return $qs;
        
        if(!empty($args['exclude']))
            $args['exclude']=$args['exclude'].','.$excluded_user;
        else 
            $args['exclude']=$excluded_user;
          
        $qs=build_query($args);
       
       
       return $qs;
        
    }

    Hi,

    Please paste the above code in child theme’s functions.php and test.

    Hopefully, it will help you.

    Thanks

    #276899
    scott8035
    Participant

    Hi. I’m writing a webhook that’s intended to create a user and register them in BP. After examining function bp_core_screen_signup() in buddypress/bp-members/screens/register.php, I thought I could just stuff values I receive into the correct $_POST variables and call the function, but it immediately returns after this statement near the top:

    if ( ! bp_is_current_component( 'register' ) || bp_current_action() ) {

    So I have two questions:

    1. Am I going in the right direction by emulating a post and calling bp_core_screen_signup() directly? And if so…
    2. What is the correct/proper/best way to set the current component and action?

    Thank you.

    #276891
    Prashant Singh
    Participant

    Hi,

    It is possible that your theme is not compatible with BuddyPress latest version or there are style conflicts in theme’s style and plugin’s style.

    Thanks

    #276883
    Prashant Singh
    Participant

    Hi,

    Please install and activate this plugin https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/ and then download the zip of BuddyPress plugin from wordpress.org and then on your site go to add new plugin and upload the zip there.

    It will replace the previously existing folder and will add the new one.

    Thanks

    #276880
    Prashant Singh
    Participant

    Hi,

    Please put this code in child theme’s functions.php to disable BuddyPress emails
    add_filter( 'bp_email_use_wp_mail', '__return_true' );

    To mark users auto approve please use this plugin https://wordpress.org/plugins/bp-disable-activation-reloaded/

    Hopefully, this will help.

    Thanks

    #276875
    sitesfromash
    Participant

    Hi. I would love if someone could help me with a few concerns I have regarding emails in relation to BuddyPress Version 3.2.0.

    First, I want to disable email notifications and am wondering if there is code I should put into the functions.php of a child theme or if unchecking the situation in an email template on BuddyPress will be sufficient in not having notifications sent due to such sitauations as mentions and replies.

    Also, I want to disable activation emails and allow my users to be auto-approved. Can anyone tell me the best way to accomplish this?

    I appreciate any assistance that you may be able to provide me.

    #276870
    Prashant Singh
    Participant

    Hi,

    To check that we have to register and login but it seems like you are not using any BuddyPress compatible theme and the CSS of the theme is conflicting with BuddyPress. You can check once by changing the theme to default one. If it is fine then certainly theme’s CSS is creating issue there.

    Thanks

    #276867
    Prashant Singh
    Participant

    Hi,

    It is possible that your theme is not compatible with this version. Try switching to default theme and then check if it works or not. If it works then please report to your theme developers about this issues.

    Thanks

    #276849
    Prashant Singh
    Participant
    #276845
    r-a-y
    Keymaster

    There were some changes in BuddyPress 3.0 to the activation process.

    You’re most likely using a custom theme or you have overriden the activation template.

    View the second point in this thread to fix this:

    BuddyPress 3.1.0 is now available!

    About the email, we updated the email to add the activation code. To see this update, you can reinstall the emails and that should allow your users to copy the activation code. View the first point in the above thread to find out how to do that.

    #276830
    Prashant Singh
    Participant

    I need to check the theme code, have you tried asking in their support forum https://seventhqueen.com/support/ ?

    #276818
    heikesworld
    Participant

    Hello,

    I know this has been asked before and I followed the suggestion from this thread:
    https://buddypress.org/support/topic/block-activity-stream-types/

    and tried adding this code to my the child theme functions.php and to bp-custom.php:

    // Filter bbPress from updating activity stream
    function imath_activity_dont_save( $activity_object ) {
    $exclude = array( 'bbp_topic_create', 'bbp_reply_create',‘friendship_created’, ‘joined_group’, ‘updated_profile’, ‘updated_profile_photo’);
    
    // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function
    if( in_array( $activity_object->type, $exclude ) )
    $activity_object->type = false;
    
    }
    
    add_action(‘bp_activity_before_save’, ‘imath_activivity_dont_save’, 10, 1 );

    but it didn’t work, profile updates, profile photo updates, new friendships, forum topics and forum replies are still showing on the activity page 🙁
    What am I doing wrong?
    Thank you for your help.

    #276793

    In reply to: Description Groups

    Theunis Coetzee
    Participant

    This workaround was for Buddypress 3.1.0 and in 3.2.0 this issue (bug) was fixed by BP developers. This means if you’re using BP 3.2.0 you’re group description should display correctly without having to modify any of the core BP files or through using a template override in your theme/child-theme.

    I’ve upgraded my BP to 3.2.0 and removed my workaround and my group descriptions display perfectly.

    #276758
    ajuuls
    Participant

    Im trying to make that bp-custom.php and place it in /wp-content/plugins/ folder but when i write any code it makes my site come with the “site not working” error.. it feels like that file only makes it worse?

    Got it from this page:

    bp-custom.php

Viewing 25 results - 2,676 through 2,700 (of 32,013 total)
Skip to toolbar