PluginProbe
Hello Plus / 1.7.4
Hello Plus v1.7.4
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.2.1 1.3.0 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.5.3 1.6.0 1.6.1 1.6.2 1.7.0 1.7.1 1.7.2 1.7.3 All 30 releases
← All changes | modules/forms/module.php +3 -2 1.7.01.7.4 View file →
@@ -56,9 +56,9 @@
56 56 public function register_styles() {
57 57 wp_register_style(
58 58 'helloplus-forms',
59 59 HELLOPLUS_STYLE_URL . 'helloplus-forms.css',
60 - [ 'elementor-frontend' ],
60 + [ 'elementor-frontend', 'elementor-icons' ],
61 61 HELLOPLUS_VERSION
62 62 );
63 63 }
64 64
@@ -112,12 +112,13 @@
112 112 wp_set_script_translations( 'helloplus-forms-editor', 'hello-plus' );
113 113 }
114 114
115 115 public function register_scripts() {
116 +
116 117 wp_register_script(
117 118 'helloplus-forms-fe',
118 119 HELLOPLUS_SCRIPTS_URL . 'helloplus-forms-fe.js',
119 - [ 'elementor-common', 'elementor-frontend-modules', 'elementor-frontend' ],
120 + [ 'elementor-frontend-modules', 'elementor-frontend' ],
120 121 HELLOPLUS_VERSION,
121 122 true
122 123 );
123 124