Description
This plugin has been closed as of July 10, 2024 and is not available for download. Reason: Guideline Violation.
Reviews
apecoder
July 24, 2019
Выражаю благодарность разработчику, который сделал этот плагин. Очень рад найти его в репозитории WordPress. Счастья, здоровья и долголетия вас за ваш труд.
Столкнулся только с проблемой, что fotorama не хочет выводить атрибуты alt и title
Чтобы скрипт не удалял у картинок теги alt и title можно подправить файл fotorama.js. Для этого потребуется в fotorama.js найти следующую строку
Код:
frameData.state = ”;
и сразу после нее добавить
Код:
if ( frameData.data.hasOwnProperty(‘alt’) ) {
img.alt= frameData.data.alt;
}
if ( frameData.data.hasOwnProperty(‘title’) ) {
img.title= frameData.data.title;
}
Потом в fotorama.js найти и удалить следующую строку
Код:
height = numberFromMeasure(imgData.height || $img.attr(‘height’));
на место удаленной строки добавить
Код:
height = numberFromMeasure(imgData.height || $img.attr(‘height’)),
alt = $img.attr(‘alt’),
title = $img.attr(‘title’);
if (alt){
$.extend(imgData, {
alt: alt
});
}
if (title){
$.extend(imgData, {
title: title
});
}
Alt и title начинают нормально отображаться:
There are simply no words – what a wonderful plugin – and everything is still working !!!
Thanks to the author !!!
Remaining, I found it – spent 2 days.
The most usual thing was needed – product placement as everywhere else – the main large photo – miniatures under it.
I was already in despair – a bunch of galleries – that closed this function into paid functions!
Why such a rating for a plugin? That no one would know?
How I found this plugin – on the New Auction site – looked at what the product photos were inserted – and found the magic word fotorama. Well, is this normal? Why is this plugin impossible to find in the WP directory? I guess, of course.
This is just an eternal classic gallery with thumbnails !!!
There is autoscrolling (if needed), on click – a large window opens.
And nothing more is needed!
And for free!
Artem Polikarpov – You are a genius !!! )))
Thank you so much!
——————-
Просто нет слов – какой чудесный плагин – и все до сих пор работает!!!
Автору огромнейшее спасибо!!!
Покая я его нашла – потратила 2 дня.
Нужна была самая обычна вещь – размещение товара как везде – главное крупное фото – под ним миниатюры.
Я уже отчаилась – куча галерей – которые позакрывали эту функцию в платные функции!
Почему такой рейтинг у плагина? Чтобы никто не знал?
Как я нашла этот плагин – на сайте Ньюаукциона – глянула чем же вставлены фото товаров – и нашла волшебное слово fotorama. Ну это нормально? Почему этот плагин невозможно найти в каталоге WP? Дагадываюсь, конечно.
Это просто вечная классика галереи с миниатюрами!!!
Автопрокрутка есть (если нужно), по клику – открывается большое окно.
А больше ничего и не нужно!
И бесплатно!
Артем Поликарпов – Вы гений!!! )))
Огромное спасибо!
brighton beach
April 20, 2019
Excellent gallery plugin.
Would actually only rate with one star, because it is more than four years old and obviously not developed anymore. Would like to use it, but fear that it might stop working with a future WordPress update. Shame.
However, this is really great, because it is lightweight, easy to customise and it has many features that make sense. To my mind it is by far better than all the other, more popular slider plugins available.
Let’s hope the developer has not completely abandoned it.
Sandra
June 27, 2017
Hi, came across this plugin and would like to use it. But there’s no activity anymore on support or development. Is it safe to use this or is there anybody that build a similair plugin?
majorredbeard
September 3, 2016
Love the plugin, keeps things simple, and converts all WordPress galleries to responsive slider-style galleries that work really well with touch, mouse, and keyboard.
Отличная надстройка над галереей. Только не хватает режима при котором fullscreen ограничен размерами картинки.
Прошло 4 года, а плагин не потерял актуальности. Работает без проблем на любой версии Wordpress. Понадобилось, чтобы растягивалось по ширине страницы – добавил $atts[‘width’] = ‘100%’; в fotorama.php, настроил параметры в fotoramaDefaults.js.
Для встроенной галереи поддерживает Lazyload. При ручной настройке вместо <img src= используем <a href= …
Contributors & Developers
“Fotorama” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Fotorama” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.