BuddyDev

Search

Replies

  • Participant
    Level: Initiated
    Posts: 14
    bayshanac on #390

    Thank you Brajesh.

  • Participant
    Level: Initiated
    Posts: 14
    bayshanac on #368

    Hello Brejash,

    In the meantime I read about this WordPress Issue (https://wordpress.org/support/topic/image-exif-orientation-fix) and found this plugin https://wordpress.org/plugins/image-rotation-fixer/ which is fix this Issue on entire WordPress site.

    When you update MediaPress I will implement your fix on website.

    Thank you!

  • Participant
    Level: Initiated
    Posts: 14
    bayshanac on #361

    Hello Brajesh,

    I appreciate your desire to help me.

    Biggest Issue I have so far is that MediaPress rotates some (not every) portrait images to became landscape. This Issue appeared me on more different devices and OS (Chrome, Firefox, iOS, Windows, Android). I think that maybe this can be related with “JPEG Rotation and EXIF Orientation”. I just guess, maybe I’m wrong.
    You can see one of the “problematic” images from the example in above post:
    Before: https://povezise.rs/dev/wp-content/uploads/mediapress/members/10/123/20140816_121308.jpg
    After: https://povezise.rs/dev/wp-content/uploads/mediapress/members/10/123/20140816_121308-800×450.jpg

    Another Issue I posted in topic “Mediapress – upload image from mobile device”.

  • Participant
    Level: Initiated
    Posts: 14
    bayshanac on #351

    Hello,

    I found this piece of code in local-storage.php but could not find the solution. Do you can help me with more specific info?

    Is this Issue appears only on my website or somebody else has same problem?

    Thank you!

  • Participant
    Level: Initiated
    Posts: 14
  • Participant
    Level: Initiated
    Posts: 14
    bayshanac on #307

    Hello Brajesh

    That is it, works perfect.

    There is just one small issue. I restricted upload to 3 photos. When I try to restrict upload to 4 photos, I fire a message with limit of photos and after that I try to upload 3 photos but queue length is 7 (4+3) instead of 3 and upload doesn’t start. I temporarily “bypassed” this issue with page reload the page and with that I reset the queue. 🙂

  • Participant
    Level: Initiated
    Posts: 14
    bayshanac on #266

    Thank you Brajesh.

    I am also trying to temporarily resolve this issue with hardcoding your core feature but I haven’t success until now.
    I’ll be very grateful if you can help me with this.

    Regards,
    Aleksandar

  • Participant
    Level: Initiated
    Posts: 14
    bayshanac on #263

    Thank you Brajesh.

    I need to implement this feature until 1st September. Can you give me some guidelines and I’ll try to find the solution.

  • Participant
    Level: Initiated
    Posts: 14
    bayshanac on #245

    Yes, I mean limit on single activity post.

  • Participant
    Level: Initiated
    Posts: 14
    bayshanac on #215

    Hello,

    The guys from Profile Builder gave me this solution:

    add_filter('mpp_load_js', 'wppbc_stop_scripts');
    function wppbc_stop_scripts( $content ){
    	if (is_page(48)) {
    		return false;
    	}
    
    	return $content;
    }
    

    Removing mpp scripts on registration page. This will work, I think.

    • This reply was modified 8 years, 7 months ago by bayshanac.