Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 4,501 through 4,525 (of 31,073 total)
  • Author
    Search Results
  • #254057
    shanebp
    Moderator

    This premium plugin – BuddyProfileData – will add profile data to the members loop.
    It will add fields in a vertical stack.
    If you are comfortable with css and maybe a little php, you can change it to horizontal.

    Or you can write your own solution using this hook:
    do_action( 'bp_directory_members_item' );
    in this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.php

    Or you can create a template overload of that file and hardcode your solution directly in the template wherever and however you want it.

    Re the ‘>’ – the best solution is to find out where it is being added by your theme css and change it.

    #254049
    sharmavishal
    Participant

    Then you need to get it checked by your theme developer

    #254044
    sharmavishal
    Participant

    No I meant your theme supports buddypress? Try with 2016 theme to see if it happens or not

    #254043
    amaya_terry
    Participant

    Buddy press’ve installed directly from the free version of wordpress, the theme we are using is a validly licensed own theme. All steps that tell me I activated as previously I worked correctly … I have other sisitos with the same plugin and does not happen to me

    #254042
    sharmavishal
    Participant

    How did you install buddupress? This is a custom theme right? You see activity page in your pages? In settings-buddypress have you activated activity component? Have you associated your activity page in the pages setting of buddypress?

    #254036

    In reply to: Theme suggestion

    sharmavishal
    Participant

    on buddyboss @djpaul they were excellent when they came up with the buddyboss theme…now they got multiple themes and plugins..and if you would check their support forums you would see the user feedback on their new themes now including the boss theme as well

    #254024
    danbp
    Participant

    To know if it is the current theme, try with one of the Twenty theme.
    To know if it is a plugin, deactivate all except BP. If no error, reactivate one by one until you find the culprit.

    A good idea would also be to activate wp_debug in wp-config while testing/debuging.

    If this doesn’t work, deactivate and reactivate BP and save your permalinks again.

    #254022
    pjbarry21
    Participant

    I’m running into this same error when trying to delete the cover photo. Any luck with this?

    I’m pretty sure this worked before — not sure if an update was done on a plugin that may have changed this. Or the BuddyBoss theme?

    #254021
    danbp
    Participant

    @emeraldcity,

    i suppose you already read the codex, thousand of topics and of course, that you have some php knowledge. 🙂

    Groups
    Add following conditionnal to the what’s new form of the group activity page.

    bp_current_user_can( 'bp_moderate' )

    To do this, you need a child-theme and to overload the template file. The original file is here:
    wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/post-form.php
    Copy it to child to get:
    wp-content/themes/child-theme-name/buddypress/activity/post-form.php

    Members
    See if these plugins can be usefull.
    Geo myWP or one or the other of @shanebp ‘s Geo plugins.

    #254011
    AngelaQ
    Participant

    I’m also having this issue. Per recommendation on these forums, the plugin I’m using to assist with registration is Theme My Login.

    I’m using ColorMag theme and the latest BP and WP…

    #254003
    Earl_D
    Participant

    I ran a test this morning with BP as the only plugin activated using tiny framework theme. Ran the same again two minutes ago with twenty twelve as theme. I do NOT use any special registration template only what comes with BP out of the box. This is the third time I have done that to prove convincingly that it isn’t simply plugins. Each time the result is the same. Whenever extended profile fields turned on registration does not go through.

    I have removed all the extended profile fields except the one on the Base which cannot be removed. That is display name. That is the only thing other than account name, email and password fields that shows up on the registration form.

    I am not the only one experiencing this issue I linked to support topic here on this board where someone else having the same problem.

    This is literally ruining the launch of my site all my marketing has been wasted since no one can register. If his is not a problem that can be fixed can someone PLEASE tel me how to downgrade. So all my money and effort don’t get blown away.

    #254001
    Earl_D
    Participant

    May I also ask what theme you are using on your site

    #253984

    Hi, i’ve a working solution for those like me who did not receive any buddypress email with html format (because there was a 3rd party plugin which was redeclaring wp_mail for eg.), here is the code to put in your functions.php file in your theme :

    /**
    * Provide an HTML template for all your BuddyPress emails
    * BuddyPress 2.5 introduced a new stylised HTML email system. 
    * By default the HTML system doesn't work if a 3rd party transactional email plugin is active 
    * (e.g. wpMandrill or SendGrid), and reverts to sending plain text emails.
    *
    * This function allows the stylised BuddyPress HTML emails to be sent using some 3rd party plugin. 
    * It does this by sending the email through wp_mail() rather than directly with PHPMailer.
    *
    * @author Mecanographik
    *
    * inspiration :
    * @link https://github.com/21applications/bp-wpmandrill
    * 
    */
    add_action( 'init', 'my_prefix_bp_wp_mail_html_filters' );
    function my_prefix_bp_wp_mail_html_filters() {
        add_filter( 'bp_email_use_wp_mail', function( $bool ) { 
          return false;
        }, 10, 1 );
    }
    

    hope this helps 😉

    #253980
    danbp
    Participant

    Maintenance mode is related to WP. BuddyPress was updated 24th may and WordPress 6th may.

    Have you tried to debug by deactivating theme and all plugins (except BP) ? Use one of Twenty’s theme for that test and see if the notice remains.

    Read also here to have a global overview of how this notice is coming up.

    #253974

    In reply to: Theme suggestion

    sharmavishal
    Participant

    check kleo theme on themeforest

    #253970

    In reply to: Theme suggestion

    Paul Wong-Gibbs
    Keymaster

    My favourites are at buddyboss; they look great and are coded really well – http://www.buddyboss.com/themes/

    #253969
    Paul Wong-Gibbs
    Keymaster

    It’s probably more your theme requires extra CSS to correctly display the image. If you can link to your site to a profile with an example cover photo, you stand a better chance of someone here helping.

    #253947
    danbp
    Participant

    Hi @ma3ry,

    it’s impossible !

    But there is an all or nothing trick. You can apply a CSS rule.
    Try to add this to your child-theme style.css

    tr.field_1 {
     display: none!important;
    }
    #253945
    danbp
    Participant

    Hi @ariane1001,

    perhaps you need to echo the function ? Anywy, can you test this snippet, to ensure that fullname is fired correctly.

    Add it to bp-custom or to your child theme functions.php.

    
    function bpfr_user_fullname() {
            // uncomment below if you want this only for logged in users.
    	//if ( !is_user_logged_in() )
    		//return false;
    
    	echo bp_displayed_user_fullname();
    	
    }
    add_filter( 'bp_before_member_header_meta', 'bpfr_user_fullname' ); 
    //add_filter( 'bp_get_displayed_user_mentionname', 'bpfr_user_fullname' );

    If you see the fullname in the profile header, you could remove the actual filter and use the other one. Just uncomment the line and you’ll see @mention using the fullname instead of display_name.

    #253939
    Earl_D
    Participant

    I am running the lest version of Buddypress and WordPress on a VPS server NOT running multisite. Tiny framework is the theme I am using. However the first thing I did to trouble shoot was try to replicate problem without any plugin and using 2012 theme (which tiny frame is based on) and 2016 theme. The issues remained the same with but those thems and th social me theme.

    I will try to check the MYSQL question as I am familiar with that having done MYSQL database programming. However I have narrowed done the problem to something related to the extended profile fields component. Through trial and error and some research I surfaced the correlation which one other person seems to have referred as well. If extended profile fields are turned OFF the registration is completed and the activation email sent. If it is on the registration process is not completed. I tested this extensively turning on and off and it followed that pattern. I currently have the component turned off and users are able to register. When I turned on again I was unable to complete a registration.

    It may be unrelated but no registration spam protection plugins will work now either I have tried several with recaptcha and without and in every case the registration process short circuits.

    Thanks for any help in advance. I would like to get the extended field working again.
    EarlD

    #253937
    ariane1001
    Participant

    After searching further I found out the problem is Buddypress is not using the theme override I made in my (child) theme. Everything is exactly as described here: https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/ and it worked before.
    What can be wrong?
    I am using a childtheme for http://acoda.com/dynamix/

    Thanks again,
    ARiane

    bdaguy20
    Participant

    Hello Thank you very much for the reply. I have found the reason why thanks to you. It was the theme that I was using that was causing the problem.. Thanks again for your help.

    shanebp
    Moderator

    Have you tried using a standard theme like WP 2015?

    Are you running any membership plugins or code that affects profile fields?

    You may want to wipe the installation, including the database, and start over.

    #253881
    Paul Wong-Gibbs
    Keymaster

    Did anything else update at the same time? Anything?

    2.5.3 contained changes to email implementation, and a security fix regarding user activation. The latter is most likely cause.

    What theme are you using? Do you have a custom registration template (did you make one)? What other plugins do you have running? Are you on multisite or regular WordPress?

    Can you think of any other useful information regarding any customisations around user or site registration?

    #253877
    Mathieu Viet
    Moderator

    @nnyorker you’re probably activated a standalone BuddyPress theme that has no support for the cover image feature.

    I advise you to have a look at this post:
    BuddyPress 2.4.0 will introduce Cover Images for members & groups!

Viewing 25 results - 4,501 through 4,525 (of 31,073 total)
Skip to toolbar