smallblockzach
Forum Replies Created
-
Another vote for this, I’m in the same situation of using custom fields.
Will find a workaround, but the option to always include the other bits would be nice.
Thanks as well for all the work.
Forum: Plugins
In reply to: [Simply Instagram] Photos to link to actual Instagram photo pageNeeded the same functionality in the “My Latest Photos” widget so tracked this down.
For those that need a hack for the time being, you can change line 95 in the simply-instagram-functions.php file to
$output = '<a href="' . $data['data'][$i]['link'] . '" target="_blank" title="' . htmlspecialchars( $data['data'][$i]['caption']['text'], ENT_QUOTES ). '">';The instagram link URL is being stored in $data[‘data’][$i][‘link], from there you can make the output whatever you would like.
Forum: Plugins
In reply to: [Simply Instagram] Thumbnail SizeWas having this same issue, ended up being a CSS rule from the theme setting images to a width of “auto”.
Overriding that in the CSS file with the height and width I wanted fixed it for me. Setting the images to 100% (the default) or “inherit” didn’t work, so this seemed to simplest solution.
Hope it helps.
Thank you for that. Looks like I may have jumped the gun after looking in the database and seeing all zeros, then reading a couple of bug reports.
Still playing a bit to see what’s possibly but really appreciate you taking the time.