Сборка Rapi Code Extensions

sarisan

Хранитель порядка
Регистрация
19 Окт 2016
Сообщения
2.846
Реакции
10.021
Для просмотра ссылки Войди или Зарегистрируйся brings a lightweight and easy to use animated news ticker for Joomla.

More than 30 different effects to display content.
View the contents of Joomla and k2.
Allows you to adjust the period of Contents.
Show date in 5 different formats.
The possibility of putting several modules on one page.

Rapi Content Ticker v1.2.2 (J!3x)
Rapi Content Ticker v1.2.2 (J!4x)

Для просмотра ссылки Войди или Зарегистрируйся
 
Последнее редактирование:
Для просмотра ссылки Войди или Зарегистрируйся is a grid layout module. It works by placing contents in an optimal position based on available vertical space. You can set various categories and item element filters to display a number of items coming from K2 component and Joomla content.

Key Features
- Support K2 v 2.6.8 and Joomla 3.x
- Retrieve content from Joomla, K2.
- Support "load more items" via ajax.
- Fully responsive
- Title, date, category, hits, supported
- Description available
- build-in magnific popup
- Choose number of article displaying
- Order article by: title, hits, ID, date, etc.
- Support jQuery no conflict
- Beautiful design
- Easy control over backend
- Link title
- Link category

Rapi Content Waterfall v1.2.1 (J!3x)
Rapi Content Waterfall v1.2.1 (J!4x)
 
1711106929414.pngДля просмотра ссылки Войди или Зарегистрируйся

Responsive Content Slider for Joomla and K2 Categories.

Retrieve Content From Joomla and K2.
2 Different Transition Effect.
Fully Responsive.
Choose Number of Article Displaying.
Allows You to Adjust the Period of Contents. For Example, the contents 7 days ago.
Order Article By: title, hits, ID, date, etc.
Easy Control Over BackEnd.
Link Category.
Title Limit by Character or Word. For example, 80 Characters.
Article Text Limit by Character or Word. For example, 40 Words.
Adjust Max Height.
Coordinated with touch screens to control items.
Adjust List Position. Left or Right.
Adjust Selection Mode. Click or MouseOver.
Very Light.
Auto Thumbnail Generator From Images For Best Performance.

Rapi Content Slider v1.2.3 (J!3x)
Rapi Content Slider v1.2.3 (J!4x)
 
Thank you sarisan for your work. I am looking for
"Rapi Admin UI". If anyone can share Rapi Admin UI, that would be great
 
1711962053483.pngДля просмотра ссылки Войди или Зарегистрируйся is a powerful plugin to change the appearance of your Joomla Admin.

12 different fonts to change the default admin font.
Change the background color of the login page.
Add a background image to login page.
Add 2 different effects to login background (Ripples, Particle Ground).
Change the login form opacity.
Change the background color of the login form.
Change the button color of the login form.
Change the button border radius of the login form.
Change the default logo.
Moving between pages with 25 different effects .
Enable or disable PreLoad by 12 different SVG images.

Rapi Admin UI v1.1
 
Rapi Ajax Search реально выложить?
 
1717480741880.pngДля просмотра ссылки Войди или Зарегистрируйся is a search form that displays the result as you type. It acts like the Google Search Autocomplete (Auto Suggest) feature. Therefore it makes it easier for the users to find what they are looking for.
- Display the results on Ajax.
- View the contents of Joomla or K2.
- Search modal with 74 different effects.
- Show date in 5 different formats.
- Change the background color of modal.
- Change color of search button.
- Change size of search button.
- compatible with different browsers including Chrome, Firefox, Safari, Opera, IE10+
- Fully responsive design.

Rapi Ajax Search v1.6.3 (J!3.x)
Rapi Ajax Search v1.6.3 (J!4.x)
 
Посмотреть вложение 117735Для просмотра ссылки Войди или Зарегистрируйся is a powerful plugin to change the appearance of your Joomla Admin.

12 different fonts to change the default admin font.
Change the background color of the login page.
Add a background image to login page.
Add 2 different effects to login background (Ripples, Particle Ground).
Change the login form opacity.
Change the background color of the login form.
Change the button color of the login form.
Change the button border radius of the login form.
Change the default logo.
Moving between pages with 25 different effects .
Enable or disable PreLoad by 12 different SVG images.

Rapi Admin UI v1.1
*** Скрытый текст не может быть процитирован. ***
Thanks for your upload. Unfortunately, Rapi Admin UI version 1.1 only works with Joomla 3. Is there a chance that you can get version 1.2?
 
Посмотреть вложение 118022Для просмотра ссылки Войди или Зарегистрируйся is a search form that displays the result as you type. It acts like the Google Search Autocomplete (Auto Suggest) feature. Therefore it makes it easier for the users to find what they are looking for.
- Display the results on Ajax.
- View the contents of Joomla or K2.
- Search modal with 74 different effects.
- Show date in 5 different formats.
- Change the background color of modal.
- Change color of search button.
- Change size of search button.
- compatible with different browsers including Chrome, Firefox, Safari, Opera, IE10+
- Fully responsive design.

Rapi Ajax Search v1.6.3 (J!3.x)
*** Скрытый текст не может быть процитирован. ***
Rapi Ajax Search v1.6.3 (J!4.x)
*** Скрытый текст не может быть процитирован. ***
Отличное расширение спасибо огромное!
Жаль однако нельзя настроить порядок выдачи из настроек модуля.

Кому нужно поменять что-то - лезем в mod_rapi_ajax_search.php и там меняем QUERY

Например для к2 выдача по популярности материалов

Код:
else {
 $query->select($db->quoteName(array('id', 'title', 'alias', 'catid', 'language', 'introtext', 'fulltext', 'publish_up', 'hits')));
$query->from($db->quoteName('#__k2_items'));
$query->where('(' . $db->quoteName('title') . ' LIKE ' . $db->quote("%" . $search_string . "%") . ' OR ' . $db->quoteName('introtext') . ' LIKE ' . $db->quote("%" . $search_string . "%") . ' OR ' . $db->quoteName('fulltext') . ' LIKE ' . $db->quote("%" . $search_string . "%") . ')')
      ->where('published = 1')
      ->where('trash = 0')
      ->where('(publish_up = ' . $nullDate . ' OR publish_up <= ' . $nowDate . ')')
      ->where('(publish_down = ' . $nullDate . ' OR publish_down >= ' . $nowDate . ')');
$query->order($db->quoteName('hits') . ' DESC');
$query->setLimit($result_limit);            }
 
Я был бы чрезмерно благодарен если кто то сможет поделиться Rapi Page Animate для пятой Joomla!
 
Назад
Сверху