Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] Widget Format #4873

    Hi Mike,
    Thank you. Always happy to help 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: BP emails are plain text not html #4870

    Hi Lavish,
    I looked at the mailgun plugi and BuddPress implementation both. If you enable plaintext email, Mailgun will be able to deliver(Since Mailgun overrides wp_mail) but if you need html template, Then A specific implementation for BP_PHPMailer is required.

    To enable fallback, you can put following in your bp-custom.php

    
    add_filter( 'bp_email_use_wp_mail', '__return_true ' );
    
    

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Thank you. Glad you fixed it. Thank you for marking resolved.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Andrew,
    no problem.
    Please use this code instead.
    http://pastebin.com/VyqiYCuL

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Simon,
    Welcome to BuddyDev.
    Thank you for using MediaPress.

    I am sorry for the inconvenience. We did disable the title in default template sometime ago(on grid pages but kept on single).

    There are multiple ways to add it back. Here is the simplest way to do it. Please put it in your functions.php

    
    add_action('mpp_after_media_item', 'mpp_media_title');
    
    

    All it does is puts the title at the bottom. You may use the action ‘mpp_before_media_item’ to put at the top.

    Another way is you can completely control the output of mediapress. All you need to do is create “mediapress” template in your theme or child theme and then copy the relavant files from wp-content/plugins/mediapress/templates/mediapress to hare and modify.

    The second approach is best suited for theme authors, since you are looking for small modification, i will suggest using the first approach.

    Hope that helps.
    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Carl,
    Welcome back 🙂
    We are doing well and hope the same for you.

    Is there any chance that you are using a plugin that does some thing with the user activation? Like our Auto Activate Auto Login redirect plugin or something similar?

    The above code is hooked to activation action, so just trying to find out a possible reason.
    Btw, did you put it in bp-custom.php or functions.php?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Andrew,
    Thank you.
    Is that the only content in your functions.php ?
    If yes, all we need to do is add http://pastebin.com/smwaUGXM

    But if it is not all the content of functions.php, then pleas post the complete content.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Andrew,
    I am sorry that you had to go through such inconvenience.
    Most probably, The code got mixed in functions.php

    May I ask if you are comfortable with php? If not, Can you please post the code on pastebin? I can update the file myself.

    I will update this plugin in future to allow using selector from the backend settings to make it easy. For now, I don’t see another alternative.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] Widget Format #4854

    HI Mike,
    I am sorry, The code should be this for gallery

    
    
    .widget_mpp_gallery_list_widget .mpp-u-1-1{
    	width: 50% !important;
    }
    
    

    Please use it instead. Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: BP emails are plain text not html #4852

    Hi Lavish,
    Which plugin are you using for enabling MailGun? Most probably it is not underatnding the html email headers.