illebas
Forum Replies Created
-
Any updates on this? I am having the same issue.
Open wp-content/plugins/simply-instagram/simply-instagram.php
Find the switch statement at line 617. Depending find the feed you are using. Below is a snippet from the self-feed. Change 20 to the amount that you desire. I think 20 maybe the max.
case'self-feed': echo '<div id="masonryContainer" title="self-feed" class="clearfix masonry">'; echo sInstDisplayData( sInstGetSelfFeed( access_token() ), $atts['size'], "20", "150", $customRel ); echo '</div>'; break;
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 Multiple AttachmentsI ran into the same issue. I found that specifying a size limit for each upload solved the issue. For example:
In the form section:
[file file-517 limit:7mb]
[file file-436 limit:7mb]In the mail section:
[file-517][file-436]
Any updates on this????
Forum: Plugins
In reply to: NextGEN Gallery widget no shadowbox effectI just figured this out.. probably not the best solution but it worked.
Forum: Plugins
In reply to: nextgen-gallery support for video besides shadowboxWell I figured it out.. I am far from a developer so it’s probably not the correct approach but at least it’s working. I opened up widgets.php in the widgets folder which is located in the nextgen folder. I found this line right around 415 – 417:
$out = '<a href="' . $image->imageURL . '" title="' . $description . '" ' . $thumbcode .'>';
and added the rel to look like this:
$out = '<a href="' . $image->imageURL . '" rel="shadowbox[];player=img;" title="' . $description . '" ' . $thumbcode .'>';
Forum: Plugins
In reply to: NextGEN Gallery widget no shadowbox effectAny updates here? Having same issue.