• Resolved iambittnermj

    (@iambittnermj)


    Is there any plans to put in the option to turn off the name of the person who took the picture? I don’t necessarily want my name to show up under each picture.

    Also, it would be cool if the plugin just showed the pictures and not when they were taken.

    Is there any plans to put in the option to show pictures in a grid, say 3×3 or 4×4? This would be really cool for styling’s sake.

    Of course, if these things can be accomplished with CSS that would be cool. I’m just learning how to work with CSS so it might be that this is already possible but I’m just too much of a noob.

    Thanks for taking the time to read my questions, and thanks for the great plugin!

    Mike

    http://wordpress.org/extend/plugins/easy-instagram/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author VeloMedia

    (@velomedia)

    Hello Mike,

    Your feedback is very important for us and we’ll consider to add these features in our next releases.

    Meanwhile you can hide the picture’s info from css.
    Hide the author:

    div.easy-instagram-thumbnail-wrapper div.easy-instagram-thumbnail-author{
    display:none;
    }

    Hide the details / caption:

    div.easy-instagram-thumbnail-wrapper div.easy-instagram-thumbnail-caption{
    display:none;
    }

    Hide the date:

    div.easy-instagram-thumbnail-wrapper div.easy-instagram-thumbnail-time{
    display:none;
    }

    Also using CSS you can put the images in a grid. For example

    div.easy-instagram-thumbnail-wrapper{
    width:150px;
    float:left;
    display:inline-block;
    }

    Thread Starter iambittnermj

    (@iambittnermj)

    That is awesome! Thanks so much for the quick and helpful reply!

    Cheers!

    Mike

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘A few questions…’ is closed to new replies.