Version Description
- 26.09.2018 =
- Added: Visual Builder Icon for Supreme Facebook and Supreme Typing Module.
Download this release
Release Info
Developer | divisupreme |
Plugin | Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder |
Version | 1.0.7 |
Comparing to | |
See all releases |
Code changes from version 1.0.6 to 1.0.7
- readme.txt +8 -5
- scripts/frontend.js +0 -28
- supreme-modules-for-divi.php +3 -3
readme.txt
CHANGED
@@ -1,19 +1,19 @@
|
|
1 |
-
=== Supreme Modules
|
2 |
Contributors: divisupreme
|
3 |
Tags: Divi, Divi Module, Divi Custom Module, Divi Gradient Text, Divi Typing Effect, Divi 3D Image, Divi Image, Divi Text Divider, divi theme, divi builder, facebook feed
|
4 |
Donate link: https://suprememodules.com/
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 1.0.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
12 |
-
Divi Supreme Modules plugin enhances the experience and features found on Divi and extend with custom
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
-
Divi Supreme Modules plugin enhances the experience and features found on Divi and extend with custom
|
17 |
|
18 |
Divi Supreme contains 7 Divi custom modules and more to come soon.
|
19 |
|
@@ -23,7 +23,7 @@ Divi Supreme contains 7 Divi custom modules and more to come soon.
|
|
23 |
- Supreme Image - This allow you to transform the image using 3D transformation. Rotate it like the way you always wanted without coding.
|
24 |
- Supreme Typing - An Animated Typing Effect.
|
25 |
- Supreme Button - Allow you to have two buttons with a separator text in between. 10 types of hover animation to choose from.
|
26 |
-
- Supreme Facebook Feed -
|
27 |
|
28 |
Many more Divi Modules coming soon...
|
29 |
|
@@ -71,6 +71,9 @@ YES!
|
|
71 |
|
72 |
== Changelog ==
|
73 |
|
|
|
|
|
|
|
74 |
= 1.0.6 - 26.09.2018 =
|
75 |
* Removed: JS file.
|
76 |
* Fixed: Supreme Button Module URL links not showing up in Backend Builder.
|
1 |
+
=== Divi Supreme Modules ===
|
2 |
Contributors: divisupreme
|
3 |
Tags: Divi, Divi Module, Divi Custom Module, Divi Gradient Text, Divi Typing Effect, Divi 3D Image, Divi Image, Divi Text Divider, divi theme, divi builder, facebook feed
|
4 |
Donate link: https://suprememodules.com/
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.0.7
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
12 |
+
Divi Supreme Modules plugin enhances the experience and features found on Divi and extend with custom creative modules to help you build amazing websites.
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
+
Divi Supreme Modules plugin enhances the experience and features found on Divi and extend with custom creative modules to help you build amazing websites.
|
17 |
|
18 |
Divi Supreme contains 7 Divi custom modules and more to come soon.
|
19 |
|
23 |
- Supreme Image - This allow you to transform the image using 3D transformation. Rotate it like the way you always wanted without coding.
|
24 |
- Supreme Typing - An Animated Typing Effect.
|
25 |
- Supreme Button - Allow you to have two buttons with a separator text in between. 10 types of hover animation to choose from.
|
26 |
+
- Supreme Facebook Feed - Create Facebook Page Feed easily without having to embed them again.
|
27 |
|
28 |
Many more Divi Modules coming soon...
|
29 |
|
71 |
|
72 |
== Changelog ==
|
73 |
|
74 |
+
= 1.0.7 - 26.09.2018 =
|
75 |
+
* Added: Visual Builder Icon for Supreme Facebook and Supreme Typing Module.
|
76 |
+
|
77 |
= 1.0.6 - 26.09.2018 =
|
78 |
* Removed: JS file.
|
79 |
* Fixed: Supreme Button Module URL links not showing up in Backend Builder.
|
scripts/frontend.js
DELETED
@@ -1,28 +0,0 @@
|
|
1 |
-
// This script is loaded both on the frontend page and in the Visual Builder.
|
2 |
-
|
3 |
-
jQuery(function($) {
|
4 |
-
var diviSupremeTyping = $(".dsm-typing-effect .dsm-typing");
|
5 |
-
if ($(".dsm-typing-effect").length) {
|
6 |
-
$(diviSupremeTyping).each(function(index, value) {
|
7 |
-
var string = $(this).data('dsm-typing-strings'),
|
8 |
-
convertstring = string.split('|'),
|
9 |
-
typingloop = $(this).data('dsm-typing-loop'),
|
10 |
-
typingSpeed = parseFloat($(this).data('dsm-typing-speed'), 10),
|
11 |
-
typingbackdelay = parseFloat($(this).data('dsm-typing-backdelay'), 10),
|
12 |
-
typingbackSpeed = parseFloat($(this).data('dsm-typing-backspeed'), 10),
|
13 |
-
element = this;
|
14 |
-
|
15 |
-
var typedSetting = {
|
16 |
-
strings: convertstring,
|
17 |
-
loop: typingloop,
|
18 |
-
typeSpeed: typingSpeed,
|
19 |
-
backSpeed: typingbackSpeed,
|
20 |
-
backDelay: typingbackdelay,
|
21 |
-
contentType: 'html'
|
22 |
-
}
|
23 |
-
|
24 |
-
var typed = '';
|
25 |
-
typed = new Typed(element, typedSetting);
|
26 |
-
});
|
27 |
-
}
|
28 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
supreme-modules-for-divi.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name: Supreme Modules
|
4 |
Plugin URI: https://suprememodules.com
|
5 |
-
Description: Supreme Modules enhances the experience and features found on Divi and extend with custom
|
6 |
-
Version: 1.0.
|
7 |
Author: Supreme Modules
|
8 |
Author URI: https://suprememodules.com/about-us/
|
9 |
License: GPL2
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: Divi Supreme Modules
|
4 |
Plugin URI: https://suprememodules.com
|
5 |
+
Description: Supreme Modules enhances the experience and features found on Divi and extend with custom creative modules to help you build amazing websites.
|
6 |
+
Version: 1.0.7
|
7 |
Author: Supreme Modules
|
8 |
Author URI: https://suprememodules.com/about-us/
|
9 |
License: GPL2
|