dasickan
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Facebook Feed] (#4) Application request limit reachedI can confirm that it works, if you follow the link from Julian and then follow the instructions!
🙂Read this article here:
https://community.theme.co/forums/topic/revolution-slider-not-working-after-update/page/2/#post-370261Did this (which did the trick (o_o):)
Fullwidth Sliders – If you have a slider that is extending beyond the bounds of your website and is going the full width of the browser window, this is an issue we experienced ourselves when updating some of our demo installations. To solve this issue, simply save the slider again and this appears to reset the dimensions properly.For now – it works!
Awesome!
🙂I found a way to get past this, but don’t know if it’s the best way.
If anyone can come up with a better solution then please let me know.
Thanks!Found this code in tonal.js and just removed/deleted the bold text shown below.
/** A function to move the image above the entry-title if post format is image. * A function to move the video above the entry-title if post format is video. */
function post_format() {
var image = $(‘.format-image.hentry img’),
video = $(‘.hentry.format-video .jetpack-video-wrapper’);image.each(function() {
$(this).first().prependTo($(this).closest(‘.format-image.hentry‘));
$(this).addClass(‘active’);
$(this).show();
});video.each(function() {
$(this).first().prependTo($(this).closest(‘.hentry.format-video‘));
$(this).addClass(‘active’);
$(this).show();
});
}
$(window).load(post_format);
$(document).on(‘post-load’, post_format);