Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,801 through 5,825 (of 32,560 total)
  • Author
    Search Results
  • wpbp999
    Participant

    I have Buddypress on my site and use a theme called Socialize. When I’m on a category stream page, it does not show users’ profile photos on the page. Is there any way I can make the photos show up? Thank you.

    #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.

    #253962
    ms52390
    Participant

    I am trying to understand how cover photos work for Groups and Profiles. I have read many articles on the matter but still cannot seem to get this to work correctly.

    My cover photo always seems to zoom to the top of any image I upload, and I have tried many sizes (even the recommended >605px wide x 225px tall). Am I missing a setting? Or is there a better image size to try?

    BP:v2.5.3 , WP:v4.5.2, Theme:I-Max
    (Clean install of BuddyPress)

    GDU
    Participant

    Hi Guys

    On one of my websites I use WP Job Manager and I’ve been having problems getting the product to work with Buddypress

    When I activate Buddypress it causes a strange preview issue when posting new jobs or resumes.

    Basically if you try and post a new job or post a new resume and select the preview option (prior to making the job or resume live) it generates a 404 error.

    If you press the back button and try and preview again, the preview works fine. I’ve noticed however at this point an account has been generated (I have the option to create an account when registering a new job or posting a resume selected within WP Job Manager) so if I post or preview a new job as a logged in user the previewing option works without a problem.

    So the 404 only happens if someone who is’t signed in tries to post a new job or post a resume and preview it before submitting.

    If I disable buddypress the preview works absolutely fine.

    I have also tested the preview option with buddypress enabled and disabled in the default Twenty Fifteen theme and the same issue exists.

    Hoping you can help with this. I originally raised a ticket with WP Job Manager support and they have told me its a buddypress issue 🙁

    Many thanks

    Mark

    #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

    ariane1001
    Participant

    HI,
    Some time ago I have build an intranet for a company using Buddypress. Everything had been fine but recently I have got this problem:
    In the member directory overview it is working fine, I see the users full names below there pics but on the single member pages it shows the nickname (@a-gordijnairborne-nl) in stead of the full name.
    I have copied several buddypress files to my theme directory. In member-header.php I use the following code: “><?php bp_displayed_user_fullname(); ?>

    As said before, this used to work but now it is showing some kind of nickname. I checked as much as possible: WordPress and plug-ins up to date. Extended profiles is active and so on but it won’t work.
    It looks like an update caused this?

    I cannot give a link because thats only possible with an account and I cannot give you access before asking the client because it’s a intranet for employees but maybe you recognize the problem en know what has changed and can you help me whitout login.

    Thanks in advance,
    Ariane

    #253935
    Jakours2
    Participant

    Hello!

    I’m looking for a buddypress theme. Any suggestion? I see some on themeforest and others like this.

    All suggestion are welcome.

    Thanks a lot!

    #253919
    embroideryallsorts
    Participant

    I have searched for the answer but all of the posts I have found are really old. Can I remove the indentation from the nested comments? they just get smaller and smaller and look terrible I am using make theme.

    luca78
    Participant

    Hi there,

    Is this a buddypress bug?

    This is the format: ‘@username youtube_link’

    But the video is not embedded, it only shows the link.
    I thought it was my theme author issue but they are saying it is a buddypress defect and to contact you instead for a solution (if any).

    A possible workaround is adding a newline, like in this format

    ‘@username
    youtube_link’

    and in this case the ideo gets embedded, but this is not ideal unfortunately.
    Could you please assist? Do you have any suggestion?

    denis24
    Participant

    Most of my BP screens use my theme’s “right sidebar” template.

    How can I apply a full-width page template to just the ‘messages’ components?

    I think it’s just a matter of modifying this code in page.php:

    <?php if ( is_active_sidebar('sidebar') ) : ?>
        <div class="page-right-sidebar">
    <?php else : ?>
        <div class="page-full-width">
    <?php endif; ?>

    But I can’t figure it out.

    WP 4.5.2
    BP 2.5.3
    Boss theme

    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.

    #253910
    theliving
    Participant

    Does anyone have any experience using BuddyPress with Total? (http://wpexplorer-themes.com/total/)

Viewing 25 results - 5,801 through 5,825 (of 32,560 total)
Skip to toolbar