BuddyDev

Search

Replies

  • Participant
    Level: Enlightened
    Posts: 34

    Hi Brajesh,
    Thanks, this resolved it.
    Kind regards,
    Milan

  • Participant
    Level: Enlightened
    Posts: 34

    Hi Brajesh,

    In all of the cases I was putting a link inside of content.
    Hopefully, this is something that can be accomplished?

    Kind regards,
    Milan

  • Participant
    Level: Enlightened
    Posts: 34

    Hi Brajesh,

    No problem, I enjoy working with your plugins and contributing when I can.
    I have one more question but I will create a separated ticket for it.

    Thanks and all best!
    Milan

  • Participant
    Level: Enlightened
    Posts: 34

    Hi Brajesh,

    I have managed to solve this issue by trying several different media settings.
    One of them provided a look and feel that is good for us (not blurry and very nice).

    We can consider this ticket closed.
    Thank you for your help, idea with Media Settings was a trigger for a solution.

    Great plugin, fantastic support.

    Kind regards,
    Milan

  • Participant
    Level: Enlightened
    Posts: 34

    Hi Brajesh,

    The settings I have provided in previous post are from Settings – Media.

    Here is what we have in MediaPress – Settings – Media Size Settings
    https://ibb.co/s6S7RmX

    Thanks!

  • Participant
    Level: Enlightened
    Posts: 34

    Hi Brajesh,

    Thank you for a quick response.
    This worked perfectly, overriding images solved this issue (and also opened possibility to customize all images related to MediaPress).

    Thank you very much! A++

    Milan

  • Participant
    Level: Enlightened
    Posts: 34

    Hi Brajesh,

    I have checked my /wp-admin/options-media.php settings.

    Thumbnail 150×150 (max sizes)
    Medium size 300×300 (max sizes)
    Large size 1024×1024 (max sizes)

    Thanks!
    Milan

  • Participant
    Level: Enlightened
    Posts: 34

    Hi again,

    Just to additionally clarify our question.

    We are aware that cover image can be changed for each item (inside Gallery “Upload New Cover” option).

    What we want is to change default cover (which is currently black camera image), so we don’t have to do it manually for every item.

    Thank you in advance.

    Kind regards,
    Milan

  • Participant
    Level: Enlightened
    Posts: 34

    Hi Brajesh,

    No problem, I am glad I was able to contribute.
    Feel free to use this in next plugin releases if you want.

    I will probably write a positive blog post about this plugin at https://milanlatinovic.com/ because I like it very much. Will keep you updated.

    Kind regards,
    Milan

  • Participant
    Level: Enlightened
    Posts: 34

    Hi Brajesh,

    I was playing with this issue a bit more and I got working solution, with a bit bigger jQuery.

    
    /**
     * Function which handles proper appearing and disappearing of "dropzone for MediaPress"
     
     * @author Milan Latinovic
     */
    jQuery(document).click(function(e) {
        if ((jQuery(e.target).closest("#mpp-upload-dropzone-activity").attr("id") != "mpp-upload-dropzone-activity") && 
        	(jQuery(e.target).closest("#mpp-upload-dropzone-activity").attr("id") != "mpp-upload-dropzone-activity") &&
            (jQuery(e.target).closest("#mpp-remote-media-url").attr("id") != "mpp-remote-media-url")) {
            jQuery("#mpp-upload-dropzone-activity").hide();
        	jQuery(".mpp-remote-add-media-row").hide();
        }
    });
    

    This way #mpp-upload-dropzone-activity disappears on click out and appears on icon click, which is good behavior and looks logical. Drop zone will disappear as soon as customer gets browse window to search files which is ok. Also, if user clicks media again to add something it will appear properly.

    All this time, uploaded media preview will be present, so customer is not losing experience and functionality works properly.

    I will test it some more against edge cases, but I believe that this is the improvement that I was looking for. You can test it from your side and let me know what you think.

    Kind regards,
    Milan