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: 25472
    Brajesh Singh on in reply to: [Resolved] A Couple of problems #12872

    Glad that it is resolved.

    Best Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Richard,
    I am sorry for the inconvenience.

    can you please help me in recreating it?

    Is it happening for all users or new users? Do they have wall gallery or does it happen when creating a wall gallery for the first time?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: BuddyPress Redirect to Profile Plugin #12870

    Hi Robert,
    Thank you for posting.

    yes, It is possible but I will need a little help from you.

    Can you provide me with memberpress documentation or function with which I can check for the membership?

    If yes, I can quickly assist you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Axel,
    I will look into this the upcoming week and will assist.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] Profile Visibility Plugin Error #12868

    Hi Axel,
    Thank you.

    I see the issue. It happens when some plugin/code instead of returning array returns string for the button args.

    I will push a version of the visibility plugin today.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: Slow lightbox load with lots of images in gallery #12867

    Hi Richard,
    Thank you.
    Yes, I was expecting this will happen one day with larger galleries and the lightbox.

    You are correct about loading only prev/next in one go. I will look into it and will try to get asap.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Richard,
    I am sorry for the inconvenience.

    This is strange and should never happen.

    Here is the check we are using

    
    $post = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->posts} WHERE post_name = %s and post_type = %s ", $slug, mpp_get_media_post_type() ) );
    
    

    We are not using like, in the above test so I am not sure how this happened for you.

    Can you please point me to the code(It might be related to something else).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] A Couple of problems #12850

    Hi George,
    1. Please visit Dashboard->MediaPress->settings->Sitewide tab and make sure tha Logged In status is enabled.

    If that is the case, please do let me know.

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] Setting document in new window #12848

    Hi David,
    I can certainly add an option for the same.

    Also, if you keep a file in your themes directory, It will never be overwritten in plugin update.

    Current method is suitable if you want the feature right now.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] Setting document in new window #12846

    Hi David,
    Please copy

    wp-content/plugin/mediapress/templates/mediapress/default/buddypress/activity/views/grid-doc.php to

    YourThem or Child theme/mediapress/default/buddypress/activity/views/grid-doc.php

    and in the line

    
                    <a href="<?php echo esc_url( $url ); ?>" class="mpp-media mpp-activity-media mpp-activity-media-doc <?php echo $class;?>" data-mpp-activity-id="<?php echo $activity_id; ?>" data-mpp-media-id="<?php mpp_media_id(); ?>" >
                        <img src="<?php mpp_media_src( 'thumbnail' ); ?>" class='mpp-attached-media-item' title="<?php echo esc_attr( mpp_get_media_title() ); ?>"/>
                    </a>
    

    add

    
                    <a href="<?php echo esc_url( $url ); ?>" target="_new" class="mpp-media mpp-activity-media mpp-activity-media-doc <?php echo $class;?>" data-mpp-activity-id="<?php echo $activity_id; ?>" data-mpp-media-id="<?php mpp_media_id(); ?>" >
                        <img src="<?php mpp_media_src( 'thumbnail' ); ?>" class='mpp-attached-media-item' title="<?php echo esc_attr( mpp_get_media_title() ); ?>"/>
                    </a>
    

    We are adding the target attribute.

    Hope that helps.

    Regards
    Brajesh