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: 25456

    Hi Daniel,
    I checked and I know the problem. It has nothing to do with the cookies. It was a problem in MediaPress for images uploaded via shortcode till 1.0.5. is there any chance that the images were uploaded using shortcode or you were/are using MediaPress 1.0.5?
    An easy solution is to Visit Dashboard->MediaPress and click on Edit that Gallery. On the single edit gallery page, you will see the media list page. Just click save once and the components should be updated.

    Hope that helps. Please let me know more details and I will be able to help.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: Error 404 for non logged in users #5571

    Hi Tiziano,
    Is there any content restriction plugin/code active on your site?

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: Buddypress Ajax Registration -> Popup on pageload #5570

    Hi,
    Can you please activate it on your site and point me to the page. It could be a css conflict or a js conflict. Looking at the go pricing site, i was not able to find any clue.

    About your previous issue, The taxonomy, I am sorry but I could not understand that. Can you please create a screenshot and link me?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: Buddypress Ajax Registration -> Popup on pageload #5564

    Hi Archaic,
    Thank you for posting.

    Do you only want to show it on one page automatically or on all pages? Please let me know and I will post the code tomorrow.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Binu,
    Can you please check if you have at least one member type registers? Also, please make sure that the BP Xprofile Member type field plugin is active.

    Those are the only two things I can think of.

    Please let me know what you find?

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Bjoern,
    I had a look at the code of this plugin.

    At the moment, The plugin lacks in many ways.

    1. There is no way to access the created object
    2. If you create another object from it, The hooks will rerun because of the constructor

    Until the plugin exposes some way to access the created object or avoid resetting up of hooks, I don’t think I should post any code.

    If you still want it, Please modify the plugin and add a line below this

    
    add_filter('wp_handle_upload_prefilter', array(&$this, 'rename'));
    
    

    Like this

    
    add_filter('mpp_handle_upload_prefilter', array($this, 'rename'));
    

    That will do it. It’s a bad idea anyway.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: Join hidden group 404 error page #5550

    Hi Jaume,
    How are you allowing people to join hidden group? Hidden groups should not be visible to the users.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Tom,
    Thank you. I have started rewriting the whole plugin. It is going to take a week but the new version is super flexible and will have all bug fixes.

    If the above bug fix is very urgent(multi select), I can push and update for the current version too. Please let me know and I will do accordingly.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi,
    I am sorry but the function that generates count does not have any filter at the moment.
    https://github.com/buddydev/mediapress/blob/master/modules/buddypress/mpp-bp-component.php#L93

    Please wait for 1-2 weeks and when the 1.0.7 comes, Please ping me again. I will post the code.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Simon,
    Thank you for posting.

    1. You should avoid getimagesize() due to performance reasons here. If you still want to use it, you can use mpp_get_media_path() that returns the file system path. mpp_get_media_src() returns the url. all functions without get is used to print.

    2. Please try doing it via media query if possible. I am not able to look at it right today but this month huge updates are supposed to come for MediaPress, so most probably the lightbox will get some enhancements too.

    Thank you
    Brajesh