• DONATE to NULLED!
    Вы можете помочь Форуму и команде, поддержать финансово.
    starwanderer - модератор этого раздела будет Вам благодарен!

Плагин Elementor Pro - Advanced Page Builder Plugin

starwanderer

Куратор темы
Регистрация
20 Ноя 2016
Сообщения
2.095
Решения
3
Реакции
4.680
  • Автор темы
  • Модер.
  • #1
elementor-pro.png
В данной теме выкладывается Pro-версия плагина (нулл на основе лицензии) и ведётся основное обсуждение применения плагина и аддонов к нему.
Аддоны выносятся в отдельные топики для облегчения поиска и разгрузки основной темы.

Скрытое содержимое доступно для зарегистрированных пользователей!
Для просмотра ссылки Войди или Зарегистрируйся
Elementor - это современный визуальный конструктор без ограничений. Его можно использовать с любой темой WordPress.

- С помощью конструктора Elementor можно создавать профессиональные продающие, подписные и посадочные страницы.
- Elementor работает как с родными типами контента WordPress, так и с произвольными типами записей.
- Elementor прекрасно поддерживает адаптивный дизайн своих страниц. Ваши страницы будут красиво и удобно выглядеть при просмотре на экранах различных мобильных устройств.
- С Elementor может работать любой пользователь с минимальными знаниями в сайтостроении. Нет необходимости работать с кодом.
- С помощью Elementor вы редактируете страницу и одновременно видите, как она выглядит.
Для просмотра ссылки Войди или Зарегистрируйся
Для просмотра ссылки Войди или Зарегистрируйся
Для просмотра ссылки Войди или Зарегистрируйся
Для просмотра ссылки Войди или Зарегистрируйся
Для просмотра ссылки Войди или Зарегистрируйся
Для просмотра ссылки Войди или Зарегистрируйся
Для просмотра ссылки Войди или Зарегистрируйся
Для просмотра ссылки Войди или Зарегистрируйся
Для просмотра ссылки Войди или Зарегистрируйся

Положить в каталог "/wp-content/languages/plugins" относительно корня сайта.

Связанные темы для Elementor.
(Лицензия, либо нулл на основе лицензионного плагина)
Crocoblock
Essential Addons for Elementor
Piotnet Addons For Elementor Pro
Ultimate Addons for Elementor

Dynamic Content for Elementor (С просторов интернета)
Element Pack (С просторов интернета)
Happy Elementor Addons Pro (С просторов интернета)
Premium Addons for Elementor PRO (На данный момент с агрегаторов плагинов WP)
Unlimited Elements for Elementor - Premium (На данный момент с агрегаторов плагинов WP)
PowerPack Pro for Elementor (На данный момент с агрегаторов плагинов WP)
(Лицензия, либо нулл на основе лицензионного плагина)
Astra Pro
GeneratePress Premium
Видеоматериалы
Для просмотра ссылки Войди или Зарегистрируйся
 
Аналогично Для просмотра ссылки Войди или Зарегистрируйся, но для AnyWhere Elementor Pro (не знаю, правильно ли сделал, прошу поправить если не прав):
Файл
anywhere-elementor-pro/includes/license-manager.php
В строке №330 (в последних версиях плагина) находим и удаляем/комментируем данный код:

$license_status = $this->license_status();

$license_setting_page = admin_url('edit.php?post_type=ae_global_templates&page=aepro-settings');
switch($license_status){

case 'valid' : break;
case 'missing':
?>
<div class="error">
<p>
<strong>AnyWhere Elementor Pro</strong><br/>
Please <a href="<?php echo $license_setting_page; ?>">activate your license key</a> to enable automatic updates
</p>
</div>
<?php

break;

case 'invalid': $license_key = trim( get_option( 'ae_pro_license_key' ) );
?>
<div class="error">
<p>
<strong>AnyWhere Elementor Pro</strong><br/>
You license key <code><?php echo $license_key; ?></code> is invalid. Please <a href="<?php echo $license_setting_page; ?>">add a valid license key</a>.
</p>
</div>
<?php
break;

case 'expired':
?>
<div class="error">
<p>
<strong>AnyWhere Elementor Pro</strong><br/>
Your <a href="<?php echo $license_setting_page; ?>">license key</a> is expired.
</p>
</div>
<?php
break;

case 'site_inactive': ?>
<div class="error">
<p>
<strong>AnyWhere Elementor Pro</strong><br/>
Your <a href="<?php echo $license_setting_page; ?>">license key</a> is not active for this site.
</p>
</div>
<?php
break;

default: ?>
<div class="error">
<p>
<strong>AnyWhere Elementor Pro</strong><br/>
Please activate a valid <a href="<?php echo $license_setting_page; ?>">license key</a>.
</p>
</div>
<?php
break;



}
Получится как-то так:
/* $license_status = $this->license_status();

$license_setting_page = admin_url('edit.php?post_type=ae_global_templates&page=aepro-settings');
switch($license_status){

case 'valid' : break;
case 'missing':
?>
<div class="error">
<p>
<strong>AnyWhere Elementor Pro</strong><br/>
Please <a href="<?php echo $license_setting_page; ?>">activate your license key</a> to enable automatic updates
</p>
</div>
<?php

break;

case 'invalid': $license_key = trim( get_option( 'ae_pro_license_key' ) );
?>
<div class="error">
<p>
<strong>AnyWhere Elementor Pro</strong><br/>
You license key <code><?php echo $license_key; ?></code> is invalid. Please <a href="<?php echo $license_setting_page; ?>">add a valid license key</a>.
</p>
</div>
<?php
break;

case 'expired':
?>
<div class="error">
<p>
<strong>AnyWhere Elementor Pro</strong><br/>
Your <a href="<?php echo $license_setting_page; ?>">license key</a> is expired.
</p>
</div>
<?php
break;

case 'site_inactive': ?>
<div class="error">
<p>
<strong>AnyWhere Elementor Pro</strong><br/>
Your <a href="<?php echo $license_setting_page; ?>">license key</a> is not active for this site.
</p>
</div>
<?php
break;

default: ?>
<div class="error">
<p>
<strong>AnyWhere Elementor Pro</strong><br/>
Please activate a valid <a href="<?php echo $license_setting_page; ?>">license key</a>.
</p>
</div>
<?php
break;



}
*/
 
  • Автор темы
  • Модер.
  • #52
Elementor Extras 1.8.8
= 1.8.8 =
* Added: Gallery Extra — Control width and ratio of each individual image in manual mode
* Added: Timeline — Option for automatic numbering and letters instead of icons to points
* Added: Timeline — New control to set excerpt length
* Added: Unfold — Option to change icon when unfolded
* Added: Sticky Elements — Option to turn off bottoming of elements inside the parent
* Added: Posts Extra — Option to enable sticky posts in query
* Added: Posts Extra — Arrows sizing controls
* Added: Posts Extra — Transition control for carousel arrows and pagination
* Added: Posts Extra — Option to set how many slides to scroll
* Added: Image Comparison — Control to define initial position of separator
* Added: Image Comparison — Option to enable moving separator by clicking anywhere on the image
* Added: Buttons — Control for label min width
* Added: Hotspots — Control to disable pulsating animation
* Fixed: Sticky Elements — Controls not showing on inner sections
* Fixed: Gallery Extra — Images wider than 100% on mobile in manual mixed masonry layout mode
* Fixed: HTML5 Video — CSS bottom whitespace
* Fixed: Buttons — Remove block label for buttons icon, id and class controls
* Tweak: Timeline — Take sticky posts into consideration in query
* Tweak: Unfold — Organise controls
* Tweak: WPML Compatibility — Change method to fix fields not saving


= 1.8.7 =
* Fixed: Posts Extra — Filtering one widget's posts affects all other widgets
* Fixed: Hotspots — Tooltips have an extra space at the bottom when first hovering
* Fixed: HTML5 Video — Volume functionality breaks when controls are hidden
* Fixed: HTML5 Video — Video reloading after each loop
* Added: Global Tooltips — Global controls for distance and width
* Tweak: HTML5 Video — Added width and horizontal alignment control to player
* Tweak: Global Tooltips — Remove default global styling values after Elementor enqueue fix in 1.9.5
 
Последнее редактирование:
  • Автор темы
  • Модер.
  • #53
Jet Elements For Elementor 1.8.0.2
## [1.8.0.1](Для просмотра ссылки Войди или Зарегистрируйся)
* Fixed: Instagram widget

## [1.8.0.1](Для просмотра ссылки Войди или Зарегистрируйся)
* Fixed: Elementor 2.0.0 compatibility

## [1.8.0](Для просмотра ссылки Войди или Зарегистрируйся)
* Added: Progress Bar widget
* Added: multiple performance improvements and bug fixes
 
Последнее редактирование:
  • Автор темы
  • Модер.
  • #54
Последнее редактирование:
  • Автор темы
  • Модер.
  • #55
Elementor Extras 1.9.0
= 1.9.0 =
* Added: New Switcher Widget! — Switch photos and text using powerful javascript driven transitions. Features menu and arrows navigation, autoplay with progress loader, entrance animations, page background color switcher, two skins (default and overlay) and much more.
* Added: New Feature for Parallax Elements! — Option to parallax columns and widgets on mouse move
* Added: Posts Extra — Controls to style only sticky posts
* Added: Image Comparison — Option to enable clicking on labels to uncover images
* Added: Hotspots — Separate color controls for each hotspot
* Fixed: Posts Extra — Sticky posts not working when a category is selected in the query
* Fixed: Gallery Slider — Invisible gallery when preview position is top on desktop
* Fixed: Image Comparison — Remove labels if no text is present
* Fixed: Posts Extra — Hide carousel until properly rendered
* Fixed: Gallery Extra — Added alt and title tags to image element
* Fixed: Gallery Slider — Issue with negative margin resulting in right whitespace for the gallery
* Fixed: Timeline — Controls conditions
* Fixed: Timeline — Item point color override
* Fixed: Timeline — Properly override point content
* Tweak: Parallax Elements — Removed group control
* Tweak: Gallery Extra, Gallery Slider, Posts Extra — Added notice with link to blend mode browser support for blend mode controls
* Tweak: Timeline — Added repeater setting key method to card render function
 
  • Автор темы
  • Модер.
  • #56
Elementor Pro 1.15.5
#### 1.15.5 - 2018-03-27
* Fix: Added global widget compatibility for Elementor v2.0
* Fix: Reduced API request for some servers

#### 1.15.4 - 2018-03-26
* Tweak: Allow brackets in phone field
* Tweak: Added compatibility with Yoast 7.0.+
* Tweak: Added compatibility for the future release of Elementor v2.0
* Fix: Support for multiple carousel setting in editor
* Fix: `on_export` issue in forms widget ([#3890](Для просмотра ссылки Войди или Зарегистрируйся))
 
Последнее редактирование:
  • Автор темы
  • Модер.
  • #57
  • Автор темы
  • Модер.
  • #58
Elementor Extras 1.9.1
= 1.9.1 =
* Fixed: Parallax Elements — Max distance not taking into account scroll position
* Fixed: Posts Extra — Filters not stacking on responsive.
* Fixed: Switcher — Arrow loader not displaying in firefox
* Fixed: Parallax Elements — Wrong position for scroll with start position
* Fixed: GSAP dependencies
 
  • Автор темы
  • Модер.
  • #59
  • Автор темы
  • Модер.
  • #60
Jet Elements For Elementor 1.9.1

BdThemes Element Pack 1.11.0

Ultimate Addons for Elementor 1.0.0
 
Последнее редактирование:
Назад
Сверху