Head and Footer Scripts Inserter - Version 4.28

Version Description

  • Changed the sorting of functions in the file 'functional.php'.
  • The 'output' function renamed to 'prepare'.
  • The function '_prepare' is improved.
  • Functions 'inject_head_beginning', 'inject_head_end', '_inject_footer_beginning' and 'inject_footer_end' are renamed to 'exec_head_0', 'exec_head_1', 'exec_footer0' and 'exec_footer_1' respectively.
  • The comment (name of the plugin and link) added to the custom code is deleted.
  • Code commenting improved.
  • Some texts are updated.
  • Translation files are updated.
Download this release

Release Info

Developer Arthur Gareginyan
Plugin Icon 128x128 Head and Footer Scripts Inserter
Version 4.28
Comparing to
See all releases

Code changes from version 4.27 to 4.28

header-and-footer-scripts-inserter.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
- * Version: 4.27
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
5
  * Description: Easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
+ * Version: 4.28
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
inc/php/functional.php CHANGED
@@ -6,25 +6,9 @@
6
  defined( 'ABSPATH' ) or die( "Restricted access!" );
7
 
8
  /**
9
- * Inject scripts in the frontend head and footer
10
  */
11
- add_action( 'wp_head', 'spacexchimp_p006_inject_head_beginning', 0 );
12
- add_action( 'wp_head', 'spacexchimp_p006_inject_head_end', 1000 );
13
- add_action( 'wp_footer', 'spacexchimp_p006_inject_footer_beginning', 0 );
14
- add_action( 'wp_footer', 'spacexchimp_p006_inject_footer_end', 1000 );
15
-
16
- /**
17
- * Prepare scripts for outputing
18
- */
19
- function spacexchimp_p006_inject_head_beginning() { spacexchimp_p006_output('header_beginning'); }
20
- function spacexchimp_p006_inject_head_end() { spacexchimp_p006_output('header_end'); }
21
- function spacexchimp_p006_inject_footer_beginning() { spacexchimp_p006_output('footer_beginning'); }
22
- function spacexchimp_p006_inject_footer_end() { spacexchimp_p006_output('footer_end'); }
23
-
24
- /**
25
- * Outputs the given setting, if conditions are met
26
- */
27
- function spacexchimp_p006_output( $option ) {
28
 
29
  // Ignore admin, feed, robots or trackbacks
30
  if (is_admin() || is_feed() || is_robots() || is_trackback()) {
@@ -33,18 +17,34 @@ function spacexchimp_p006_output( $option ) {
33
 
34
  // Read options from database and declare variables
35
  $options = get_option( SPACEXCHIMP_P006_SETTINGS . '_settings' );
36
- $data = $options[$option];
37
 
38
- // If data is empty then exit
39
- if( empty( $data ) ) {
40
- return;
41
- }
 
42
 
43
- // Add comments to output
44
- $data_out = "\n<!-- [BEGIN] Scripts added via Head-and-Footer-Scripts-Inserter plugin by Space X-Chimp ( https://www.spacexchimp.com ) -->\n";
45
- $data_out .= $data;
46
- $data_out .= "\n<!-- [END] Scripts added via Head-and-Footer-Scripts-Inserter plugin by Space X-Chimp ( https://www.spacexchimp.com ) -->\n\n";
47
 
48
- // Output
 
 
49
  echo $data_out;
50
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  defined( 'ABSPATH' ) or die( "Restricted access!" );
7
 
8
  /**
9
+ * Prepare the custom code
10
  */
11
+ function spacexchimp_p006_prepare( $option ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  // Ignore admin, feed, robots or trackbacks
14
  if (is_admin() || is_feed() || is_robots() || is_trackback()) {
17
 
18
  // Read options from database and declare variables
19
  $options = get_option( SPACEXCHIMP_P006_SETTINGS . '_settings' );
20
+ $data = !empty( $options[$option] ) ? $options[$option] : '';
21
 
22
+ // Prepare a variable for storing the processed data
23
+ $data_out = "";
24
+
25
+ // If data is not empty...
26
+ if ( !empty( $data ) ) {
27
 
28
+ $data_out .= $data;
 
 
 
29
 
30
+ }
31
+
32
+ // Return the processed data
33
  echo $data_out;
34
  }
35
+
36
+ /**
37
+ * Process the custom code
38
+ */
39
+ function spacexchimp_p006_exec_head_0() { spacexchimp_p006_prepare('header_beginning'); }
40
+ function spacexchimp_p006_exec_head_1() { spacexchimp_p006_prepare('header_end'); }
41
+ function spacexchimp_p006_exec_footer_0() { spacexchimp_p006_prepare('footer_beginning'); }
42
+ function spacexchimp_p006_exec_footer_1() { spacexchimp_p006_prepare('footer_end'); }
43
+
44
+ /**
45
+ * Inject the custom code into the website's frontend
46
+ */
47
+ add_action( 'wp_head', 'spacexchimp_p006_exec_head_0', 0 );
48
+ add_action( 'wp_head', 'spacexchimp_p006_exec_head_1', 1000 );
49
+ add_action( 'wp_footer', 'spacexchimp_p006_exec_footer_0', 0 );
50
+ add_action( 'wp_footer', 'spacexchimp_p006_exec_footer_1', 1000 );
inc/php/messages.php CHANGED
@@ -88,7 +88,7 @@ function spacexchimp_p006_successfull_message() {
88
  if ( isset( $_GET['settings-updated'] ) ) {
89
  ?>
90
  <div id="message" class="updated">
91
- <p><?php _e( 'Scripts updated successfully.', SPACEXCHIMP_P006_TEXT ); ?></p>
92
  </div>
93
  <?php
94
  }
88
  if ( isset( $_GET['settings-updated'] ) ) {
89
  ?>
90
  <div id="message" class="updated">
91
+ <p><?php _e( 'Custom code updated successfully.', SPACEXCHIMP_P006_TEXT ); ?></p>
92
  </div>
93
  <?php
94
  }
inc/php/page.php CHANGED
@@ -63,7 +63,7 @@ function spacexchimp_p006_render_submenu_page() {
63
  <div class="postbox">
64
  <h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
65
  <div class="inside">
66
- <p><?php _e( 'To add the script to your website, simply follow these steps:', $text ); ?></p>
67
  <ol class="custom-counter">
68
  <li><?php _e( 'Go to the "Main" tab.', $text ); ?></li>
69
  <li><?php _e( 'Place your custom scripts in the field.', $text ); ?><br><br>
@@ -82,7 +82,7 @@ function spacexchimp_p006_render_submenu_page() {
82
  <pre><code><?php echo $ExampleCode; ?></code></pre>
83
  </li>
84
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
85
- <li><?php _e( ' Enjoy the result of applying your custom scripts.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
86
  </ol>
87
  <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
88
  __( 'If you want more options then %s tell us %s and we will be happy to add it.', $text ),
@@ -140,9 +140,9 @@ function spacexchimp_p006_render_submenu_page() {
140
  <?php _e( 'Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!', $text ); ?></div>
141
 
142
  <div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
143
- <div class="answer-3"><?php _e( 'On the "Settings" tab, place your custom scripts in the field and click the "Save changes" button. Enjoy the result of applying your custom scripts. It\'s that simple!', $text ); ?></div>
144
 
145
- <div class="question-4"><?php _e( 'How much of scripts I can enter in the field?', $text ); ?></div>
146
  <div class="answer-4"><?php _e( 'We don\'t limit the number of characters.', $text ); ?></div>
147
 
148
  <div class="question-5"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
@@ -183,7 +183,7 @@ add_action( 'wp_head', 'my_custom_script' );</code></pre>
183
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
184
  '</a>'
185
  );
186
- ?></div>
187
 
188
  <div class="question-11"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
189
  <div class="answer-11"><?php printf(
63
  <div class="postbox">
64
  <h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
65
  <div class="inside">
66
+ <p><?php _e( 'To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:', $text ); ?></p>
67
  <ol class="custom-counter">
68
  <li><?php _e( 'Go to the "Main" tab.', $text ); ?></li>
69
  <li><?php _e( 'Place your custom scripts in the field.', $text ); ?><br><br>
82
  <pre><code><?php echo $ExampleCode; ?></code></pre>
83
  </li>
84
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
85
+ <li><?php _e( 'Enjoy the result of applying your custom scripts.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
86
  </ol>
87
  <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
88
  __( 'If you want more options then %s tell us %s and we will be happy to add it.', $text ),
140
  <?php _e( 'Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!', $text ); ?></div>
141
 
142
  <div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
143
+ <div class="answer-3"><?php _e( 'On the "Main" tab, place your custom scripts in the field and click the "Save changes" button. Enjoy the result of applying your custom scripts. It\'s that simple!', $text ); ?></div>
144
 
145
+ <div class="question-4"><?php _e( 'How much of scripts (characters) I can enter in the text field?', $text ); ?></div>
146
  <div class="answer-4"><?php _e( 'We don\'t limit the number of characters.', $text ); ?></div>
147
 
148
  <div class="question-5"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
183
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
184
  '</a>'
185
  );
186
+ ?></div>
187
 
188
  <div class="question-11"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
189
  <div class="answer-11"><?php printf(
inc/php/sidebar.php CHANGED
@@ -24,7 +24,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
24
  <div class="postbox about">
25
  <h3 class="title"><?php _e( 'About', $text ); ?></h3>
26
  <div class="inside">
27
- <p><?php _e( 'This plugin allows you to easily insert your custom scripts in your website.', $text ); ?></p>
28
  </div>
29
  </div>
30
 
24
  <div class="postbox about">
25
  <h3 class="title"><?php _e( 'About', $text ); ?></h3>
26
  <div class="inside">
27
+ <p><?php _e( 'This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor.', $text ); ?></p>
28
  </div>
29
  </div>
30
 
languages/header-and-footer-scripts-inserter-de_DE.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-de_DE.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-08-07 01:36+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:36+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -30,7 +30,7 @@ msgstr "Spende"
30
 
31
  #: inc/php/core.php:52
32
  msgid "Scripts Inserter"
33
- msgstr ""
34
 
35
  #: inc/php/messages.php:26
36
  msgid "Hello. We are the team of Space X-Chimp."
@@ -50,7 +50,7 @@ msgid "Please update the plugin to the latest version, and all will be fine."
50
  msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
51
 
52
  #: inc/php/messages.php:91
53
- msgid "Scripts updated successfully."
54
  msgstr ""
55
 
56
  #: inc/php/page.php:31
@@ -87,7 +87,7 @@ msgid "Usage Instructions"
87
  msgstr "Anleitung"
88
 
89
  #: inc/php/page.php:66
90
- msgid "To add the script to your website, simply follow these steps:"
91
  msgstr ""
92
 
93
  #: inc/php/page.php:68
@@ -107,7 +107,7 @@ msgid "Click the \"Save changes\" button."
107
  msgstr "Klicken Sie den \"Änderungen speichern\" button."
108
 
109
  #: inc/php/page.php:85
110
- msgid " Enjoy the result of applying your custom scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
@@ -165,11 +165,11 @@ msgid "How does it work?"
165
  msgstr "Wie arbeitet das Plugin?"
166
 
167
  #: inc/php/page.php:143
168
- msgid "On the \"Settings\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
172
- msgid "How much of scripts I can enter in the field?"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:146
@@ -348,7 +348,7 @@ msgid "About"
348
  msgstr "Über"
349
 
350
  #: inc/php/sidebar.php:27
351
- msgid "This plugin allows you to easily insert your custom scripts in your website."
352
  msgstr ""
353
 
354
  #: inc/php/sidebar.php:32
@@ -378,9 +378,3 @@ msgstr "Space X-Chimp"
378
  #. Author URI of the plugin/theme
379
  msgid "https://www.spacexchimp.com"
380
  msgstr "https://www.spacexchimp.com"
381
-
382
- #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
383
- #~ msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
384
-
385
- #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
386
- #~ msgstr "Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich tue, und hoffe, dass Sie auch von meinen Projekten bereichert werden."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-08-18 18:15+0300\n"
7
+ "PO-Revision-Date: 2018-08-18 18:15+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
30
 
31
  #: inc/php/core.php:52
32
  msgid "Scripts Inserter"
33
+ msgstr "Scripts Inserter"
34
 
35
  #: inc/php/messages.php:26
36
  msgid "Hello. We are the team of Space X-Chimp."
50
  msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
51
 
52
  #: inc/php/messages.php:91
53
+ msgid "Custom code updated successfully."
54
  msgstr ""
55
 
56
  #: inc/php/page.php:31
87
  msgstr "Anleitung"
88
 
89
  #: inc/php/page.php:66
90
+ msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
91
  msgstr ""
92
 
93
  #: inc/php/page.php:68
107
  msgstr "Klicken Sie den \"Änderungen speichern\" button."
108
 
109
  #: inc/php/page.php:85
110
+ msgid "Enjoy the result of applying your custom scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
165
  msgstr "Wie arbeitet das Plugin?"
166
 
167
  #: inc/php/page.php:143
168
+ msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
172
+ msgid "How much of scripts (characters) I can enter in the text field?"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:146
348
  msgstr "Über"
349
 
350
  #: inc/php/sidebar.php:27
351
+ msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
352
  msgstr ""
353
 
354
  #: inc/php/sidebar.php:32
378
  #. Author URI of the plugin/theme
379
  msgid "https://www.spacexchimp.com"
380
  msgstr "https://www.spacexchimp.com"
 
 
 
 
 
 
languages/header-and-footer-scripts-inserter-es_ES.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-es_ES.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-08-07 01:36+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:36+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
@@ -50,7 +50,7 @@ msgid "Please update the plugin to the latest version, and all will be fine."
50
  msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
51
 
52
  #: inc/php/messages.php:91
53
- msgid "Scripts updated successfully."
54
  msgstr ""
55
 
56
  #: inc/php/page.php:31
@@ -87,7 +87,7 @@ msgid "Usage Instructions"
87
  msgstr "Instrucciones de uso"
88
 
89
  #: inc/php/page.php:66
90
- msgid "To add the script to your website, simply follow these steps:"
91
  msgstr ""
92
 
93
  #: inc/php/page.php:68
@@ -107,7 +107,7 @@ msgid "Click the \"Save changes\" button."
107
  msgstr "Clic en el botón \"Guardar Cambios\"."
108
 
109
  #: inc/php/page.php:85
110
- msgid " Enjoy the result of applying your custom scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
@@ -165,11 +165,11 @@ msgid "How does it work?"
165
  msgstr "¿Como funciona?"
166
 
167
  #: inc/php/page.php:143
168
- msgid "On the \"Settings\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
172
- msgid "How much of scripts I can enter in the field?"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:146
@@ -348,7 +348,7 @@ msgid "About"
348
  msgstr "Acerca de"
349
 
350
  #: inc/php/sidebar.php:27
351
- msgid "This plugin allows you to easily insert your custom scripts in your website."
352
  msgstr ""
353
 
354
  #: inc/php/sidebar.php:32
@@ -379,8 +379,8 @@ msgstr "Space X-Chimp"
379
  msgid "https://www.spacexchimp.com"
380
  msgstr "https://www.spacexchimp.com"
381
 
382
- #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
383
- #~ msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
384
 
385
  #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
386
  #~ msgstr "Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que tú también te enriquezcas con mis proyectos."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-08-18 18:15+0300\n"
7
+ "PO-Revision-Date: 2018-08-18 18:15+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
50
  msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
51
 
52
  #: inc/php/messages.php:91
53
+ msgid "Custom code updated successfully."
54
  msgstr ""
55
 
56
  #: inc/php/page.php:31
87
  msgstr "Instrucciones de uso"
88
 
89
  #: inc/php/page.php:66
90
+ msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
91
  msgstr ""
92
 
93
  #: inc/php/page.php:68
107
  msgstr "Clic en el botón \"Guardar Cambios\"."
108
 
109
  #: inc/php/page.php:85
110
+ msgid "Enjoy the result of applying your custom scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
165
  msgstr "¿Como funciona?"
166
 
167
  #: inc/php/page.php:143
168
+ msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
172
+ msgid "How much of scripts (characters) I can enter in the text field?"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:146
348
  msgstr "Acerca de"
349
 
350
  #: inc/php/sidebar.php:27
351
+ msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
352
  msgstr ""
353
 
354
  #: inc/php/sidebar.php:32
379
  msgid "https://www.spacexchimp.com"
380
  msgstr "https://www.spacexchimp.com"
381
 
382
+ #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
383
+ #~ msgstr "¡Hola! Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s."
384
 
385
  #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
386
  #~ msgstr "Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que tú también te enriquezcas con mis proyectos."
languages/header-and-footer-scripts-inserter-nl_NL.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-nl_NL.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-08-07 01:36+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:36+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
@@ -30,7 +30,7 @@ msgstr "Doe een gift"
30
 
31
  #: inc/php/core.php:52
32
  msgid "Scripts Inserter"
33
- msgstr ""
34
 
35
  #: inc/php/messages.php:26
36
  msgid "Hello. We are the team of Space X-Chimp."
@@ -50,7 +50,7 @@ msgid "Please update the plugin to the latest version, and all will be fine."
50
  msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
51
 
52
  #: inc/php/messages.php:91
53
- msgid "Scripts updated successfully."
54
  msgstr ""
55
 
56
  #: inc/php/page.php:31
@@ -87,7 +87,7 @@ msgid "Usage Instructions"
87
  msgstr "Gebruiksinstructies"
88
 
89
  #: inc/php/page.php:66
90
- msgid "To add the script to your website, simply follow these steps:"
91
  msgstr ""
92
 
93
  #: inc/php/page.php:68
@@ -107,7 +107,7 @@ msgid "Click the \"Save changes\" button."
107
  msgstr "Klik op de knop \"Wijzigingen opslaan\"."
108
 
109
  #: inc/php/page.php:85
110
- msgid " Enjoy the result of applying your custom scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
@@ -165,11 +165,11 @@ msgid "How does it work?"
165
  msgstr "Hoe werkt het?"
166
 
167
  #: inc/php/page.php:143
168
- msgid "On the \"Settings\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
172
- msgid "How much of scripts I can enter in the field?"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:146
@@ -348,7 +348,7 @@ msgid "About"
348
  msgstr "Over"
349
 
350
  #: inc/php/sidebar.php:27
351
- msgid "This plugin allows you to easily insert your custom scripts in your website."
352
  msgstr ""
353
 
354
  #: inc/php/sidebar.php:32
@@ -379,8 +379,8 @@ msgstr "Space X-Chimp"
379
  msgid "https://www.spacexchimp.com"
380
  msgstr "https://www.spacexchimp.com"
381
 
382
- #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
383
- #~ msgstr "Hallo! Mijn naam is %s Arthur Gareginyan %s en ik ben de oprichter van %s Space X-Chimp %s."
384
 
385
  #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
386
  #~ msgstr "Het is mijn bedoeling om projecten te maken die van deze wereld een betere plek maken. Ik ben echt gepassioneerd over mijn werk, ik vind het leuk wat ik doe en hoop dat je ook verrijkt zult worden door mijn projecten."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-08-18 18:15+0300\n"
7
+ "PO-Revision-Date: 2018-08-18 18:15+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
30
 
31
  #: inc/php/core.php:52
32
  msgid "Scripts Inserter"
33
+ msgstr "Scripts Inserter"
34
 
35
  #: inc/php/messages.php:26
36
  msgid "Hello. We are the team of Space X-Chimp."
50
  msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
51
 
52
  #: inc/php/messages.php:91
53
+ msgid "Custom code updated successfully."
54
  msgstr ""
55
 
56
  #: inc/php/page.php:31
87
  msgstr "Gebruiksinstructies"
88
 
89
  #: inc/php/page.php:66
90
+ msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
91
  msgstr ""
92
 
93
  #: inc/php/page.php:68
107
  msgstr "Klik op de knop \"Wijzigingen opslaan\"."
108
 
109
  #: inc/php/page.php:85
110
+ msgid "Enjoy the result of applying your custom scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
165
  msgstr "Hoe werkt het?"
166
 
167
  #: inc/php/page.php:143
168
+ msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
172
+ msgid "How much of scripts (characters) I can enter in the text field?"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:146
348
  msgstr "Over"
349
 
350
  #: inc/php/sidebar.php:27
351
+ msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
352
  msgstr ""
353
 
354
  #: inc/php/sidebar.php:32
379
  msgid "https://www.spacexchimp.com"
380
  msgstr "https://www.spacexchimp.com"
381
 
382
+ #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
383
+ #~ msgstr "Hallo! Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s."
384
 
385
  #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
386
  #~ msgstr "Het is mijn bedoeling om projecten te maken die van deze wereld een betere plek maken. Ik ben echt gepassioneerd over mijn werk, ik vind het leuk wat ik doe en hoop dat je ook verrijkt zult worden door mijn projecten."
languages/header-and-footer-scripts-inserter-pl_PL.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-pl_PL.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-08-07 01:36+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:36+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Polish\n"
10
  "Language: pl_PL\n"
@@ -31,7 +31,7 @@ msgstr "Wesprzyj"
31
 
32
  #: inc/php/core.php:52
33
  msgid "Scripts Inserter"
34
- msgstr ""
35
 
36
  #: inc/php/messages.php:26
37
  msgid "Hello. We are the team of Space X-Chimp."
@@ -51,7 +51,7 @@ msgid "Please update the plugin to the latest version, and all will be fine."
51
  msgstr ""
52
 
53
  #: inc/php/messages.php:91
54
- msgid "Scripts updated successfully."
55
  msgstr ""
56
 
57
  #: inc/php/page.php:31
@@ -88,7 +88,7 @@ msgid "Usage Instructions"
88
  msgstr ""
89
 
90
  #: inc/php/page.php:66
91
- msgid "To add the script to your website, simply follow these steps:"
92
  msgstr ""
93
 
94
  #: inc/php/page.php:68
@@ -108,7 +108,7 @@ msgid "Click the \"Save changes\" button."
108
  msgstr ""
109
 
110
  #: inc/php/page.php:85
111
- msgid " Enjoy the result of applying your custom scripts."
112
  msgstr ""
113
 
114
  #: inc/php/page.php:85
@@ -166,11 +166,11 @@ msgid "How does it work?"
166
  msgstr ""
167
 
168
  #: inc/php/page.php:143
169
- msgid "On the \"Settings\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
170
  msgstr ""
171
 
172
  #: inc/php/page.php:145
173
- msgid "How much of scripts I can enter in the field?"
174
  msgstr ""
175
 
176
  #: inc/php/page.php:146
@@ -349,7 +349,7 @@ msgid "About"
349
  msgstr "O wtyczce"
350
 
351
  #: inc/php/sidebar.php:27
352
- msgid "This plugin allows you to easily insert your custom scripts in your website."
353
  msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
354
 
355
  #: inc/php/sidebar.php:32
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-08-18 18:16+0300\n"
7
+ "PO-Revision-Date: 2018-08-18 18:16+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Polish\n"
10
  "Language: pl_PL\n"
31
 
32
  #: inc/php/core.php:52
33
  msgid "Scripts Inserter"
34
+ msgstr "Scripts Inserter"
35
 
36
  #: inc/php/messages.php:26
37
  msgid "Hello. We are the team of Space X-Chimp."
51
  msgstr ""
52
 
53
  #: inc/php/messages.php:91
54
+ msgid "Custom code updated successfully."
55
  msgstr ""
56
 
57
  #: inc/php/page.php:31
88
  msgstr ""
89
 
90
  #: inc/php/page.php:66
91
+ msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
92
  msgstr ""
93
 
94
  #: inc/php/page.php:68
108
  msgstr ""
109
 
110
  #: inc/php/page.php:85
111
+ msgid "Enjoy the result of applying your custom scripts."
112
  msgstr ""
113
 
114
  #: inc/php/page.php:85
166
  msgstr ""
167
 
168
  #: inc/php/page.php:143
169
+ msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
170
  msgstr ""
171
 
172
  #: inc/php/page.php:145
173
+ msgid "How much of scripts (characters) I can enter in the text field?"
174
  msgstr ""
175
 
176
  #: inc/php/page.php:146
349
  msgstr "O wtyczce"
350
 
351
  #: inc/php/sidebar.php:27
352
+ msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
353
  msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
354
 
355
  #: inc/php/sidebar.php:32
languages/header-and-footer-scripts-inserter-ru_RU.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-ru_RU.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-08-07 01:37+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:37+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
@@ -50,8 +50,8 @@ msgid "Please update the plugin to the latest version, and all will be fine."
50
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
51
 
52
  #: inc/php/messages.php:91
53
- msgid "Scripts updated successfully."
54
- msgstr "Скрипты успешно обновлены."
55
 
56
  #: inc/php/page.php:31
57
  #, php-format
@@ -87,7 +87,7 @@ msgid "Usage Instructions"
87
  msgstr "Инструкция по использованию"
88
 
89
  #: inc/php/page.php:66
90
- msgid "To add the script to your website, simply follow these steps:"
91
  msgstr "Для того чтобы добавить скрипт на ваш веб-сайт, выполните следующие действия:"
92
 
93
  #: inc/php/page.php:68
@@ -107,7 +107,7 @@ msgid "Click the \"Save changes\" button."
107
  msgstr "Нажмите кнопку «Сохранить изменения»."
108
 
109
  #: inc/php/page.php:85
110
- msgid " Enjoy the result of applying your custom scripts."
111
  msgstr "Наслаждайтесь результатом применения ваших скриптов."
112
 
113
  #: inc/php/page.php:85
@@ -165,11 +165,11 @@ msgid "How does it work?"
165
  msgstr "Как оно работает?"
166
 
167
  #: inc/php/page.php:143
168
- msgid "On the \"Settings\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
- msgstr "На вкладке «Настройки» поместите свои скрипты в поле и нажмите кнопку «Сохранить изменения». Наслаждайтесь результатом применения ваших скриптов. Это так просто!"
170
 
171
  #: inc/php/page.php:145
172
- msgid "How much of scripts I can enter in the field?"
173
  msgstr "Сколько скриптов я могу ввести в текстовое поле?"
174
 
175
  #: inc/php/page.php:146
@@ -348,7 +348,7 @@ msgid "About"
348
  msgstr "О плагине"
349
 
350
  #: inc/php/sidebar.php:27
351
- msgid "This plugin allows you to easily insert your custom scripts in your website."
352
  msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
353
 
354
  #: inc/php/sidebar.php:32
@@ -379,11 +379,14 @@ msgstr "Space X-Chimp"
379
  msgid "https://www.spacexchimp.com"
380
  msgstr "https://www.spacexchimp.com"
381
 
 
 
 
382
  #~ msgid "Easily add your custom scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
383
  #~ msgstr "Легко добавляйте ваши скрипты в верхний (HEAD) и нижний (FOOTER) колонтитулы вашего WordPress веб-сайта. Это необходимый инструмент для авторов и владельцев веб-сайтов."
384
 
385
- #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
386
- #~ msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
387
 
388
  #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
389
  #~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-08-18 18:16+0300\n"
7
+ "PO-Revision-Date: 2018-08-18 18:16+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
50
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
51
 
52
  #: inc/php/messages.php:91
53
+ msgid "Custom code updated successfully."
54
+ msgstr "Пользовательский код успешно обновлён."
55
 
56
  #: inc/php/page.php:31
57
  #, php-format
87
  msgstr "Инструкция по использованию"
88
 
89
  #: inc/php/page.php:66
90
+ msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
91
  msgstr "Для того чтобы добавить скрипт на ваш веб-сайт, выполните следующие действия:"
92
 
93
  #: inc/php/page.php:68
107
  msgstr "Нажмите кнопку «Сохранить изменения»."
108
 
109
  #: inc/php/page.php:85
110
+ msgid "Enjoy the result of applying your custom scripts."
111
  msgstr "Наслаждайтесь результатом применения ваших скриптов."
112
 
113
  #: inc/php/page.php:85
165
  msgstr "Как оно работает?"
166
 
167
  #: inc/php/page.php:143
168
+ msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
+ msgstr ""
170
 
171
  #: inc/php/page.php:145
172
+ msgid "How much of scripts (characters) I can enter in the text field?"
173
  msgstr "Сколько скриптов я могу ввести в текстовое поле?"
174
 
175
  #: inc/php/page.php:146
348
  msgstr "О плагине"
349
 
350
  #: inc/php/sidebar.php:27
351
+ msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
352
  msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
353
 
354
  #: inc/php/sidebar.php:32
379
  msgid "https://www.spacexchimp.com"
380
  msgstr "https://www.spacexchimp.com"
381
 
382
+ #~ msgid "On the \"Settings\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
383
+ #~ msgstr "На вкладке «Настройки» поместите свои скрипты в поле и нажмите кнопку «Сохранить изменения». Наслаждайтесь результатом применения ваших скриптов. Это так просто!"
384
+
385
  #~ msgid "Easily add your custom scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
386
  #~ msgstr "Легко добавляйте ваши скрипты в верхний (HEAD) и нижний (FOOTER) колонтитулы вашего WordPress веб-сайта. Это необходимый инструмент для авторов и владельцев веб-сайтов."
387
 
388
+ #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
389
+ #~ msgstr "Привет! Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s."
390
 
391
  #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
392
  #~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
languages/header-and-footer-scripts-inserter.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-08-07 01:37+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -48,7 +48,7 @@ msgid "Please update the plugin to the latest version, and all will be fine."
48
  msgstr ""
49
 
50
  #: inc/php/messages.php:91
51
- msgid "Scripts updated successfully."
52
  msgstr ""
53
 
54
  #: inc/php/page.php:31
@@ -85,7 +85,7 @@ msgid "Usage Instructions"
85
  msgstr ""
86
 
87
  #: inc/php/page.php:66
88
- msgid "To add the script to your website, simply follow these steps:"
89
  msgstr ""
90
 
91
  #: inc/php/page.php:68
@@ -105,7 +105,7 @@ msgid "Click the \"Save changes\" button."
105
  msgstr ""
106
 
107
  #: inc/php/page.php:85
108
- msgid " Enjoy the result of applying your custom scripts."
109
  msgstr ""
110
 
111
  #: inc/php/page.php:85
@@ -163,11 +163,11 @@ msgid "How does it work?"
163
  msgstr ""
164
 
165
  #: inc/php/page.php:143
166
- msgid "On the \"Settings\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
167
  msgstr ""
168
 
169
  #: inc/php/page.php:145
170
- msgid "How much of scripts I can enter in the field?"
171
  msgstr ""
172
 
173
  #: inc/php/page.php:146
@@ -346,7 +346,7 @@ msgid "About"
346
  msgstr ""
347
 
348
  #: inc/php/sidebar.php:27
349
- msgid "This plugin allows you to easily insert your custom scripts in your website."
350
  msgstr ""
351
 
352
  #: inc/php/sidebar.php:32
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-08-18 18:16+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
48
  msgstr ""
49
 
50
  #: inc/php/messages.php:91
51
+ msgid "Custom code updated successfully."
52
  msgstr ""
53
 
54
  #: inc/php/page.php:31
85
  msgstr ""
86
 
87
  #: inc/php/page.php:66
88
+ msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
89
  msgstr ""
90
 
91
  #: inc/php/page.php:68
105
  msgstr ""
106
 
107
  #: inc/php/page.php:85
108
+ msgid "Enjoy the result of applying your custom scripts."
109
  msgstr ""
110
 
111
  #: inc/php/page.php:85
163
  msgstr ""
164
 
165
  #: inc/php/page.php:143
166
+ msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
167
  msgstr ""
168
 
169
  #: inc/php/page.php:145
170
+ msgid "How much of scripts (characters) I can enter in the text field?"
171
  msgstr ""
172
 
173
  #: inc/php/page.php:146
346
  msgstr ""
347
 
348
  #: inc/php/sidebar.php:27
349
+ msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
350
  msgstr ""
351
 
352
  #: inc/php/sidebar.php:32
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: inject, insert, insert scripts, insert javascript, insert js, insert html,
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
  Tested up to: 4.9
7
- Stable tag: 4.27
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -112,7 +112,7 @@ A. Yes. This plugin is ready for translation and has already been translated int
112
  A. Simply go to the plugin settings page, place your custom scripts in the field and click the "Save changes" button. Enjoy the result of applying your custom scripts. It's that simple!
113
  You can find the plugin settings page at "`WordPress Admin Area`" -> "`Settings`" -> "`Scripts Inserter`".
114
 
115
- = Q. How much of scripts I can enter in the field? =
116
  A. We don't limit the number of characters.
117
 
118
  = Q. Does this plugin requires any modification of the theme? =
@@ -189,6 +189,16 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
189
 
190
  == Changelog ==
191
 
 
 
 
 
 
 
 
 
 
 
192
  = 4.27 =
193
  * Some texts are updated.
194
  * Translation files are updated.
@@ -315,7 +325,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
315
  * Code commenting improved.
316
  * Load of the additional remote CSS file removed from the admin.js file.
317
  * Changed the sorting of enqueueing of scripts.
318
- * The ''Family' page tab renamed to 'Store'.
319
  * Added ad banner of my store website.
320
 
321
  = 4.4.1 =
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
  Tested up to: 4.9
7
+ Stable tag: 4.28
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
112
  A. Simply go to the plugin settings page, place your custom scripts in the field and click the "Save changes" button. Enjoy the result of applying your custom scripts. It's that simple!
113
  You can find the plugin settings page at "`WordPress Admin Area`" -> "`Settings`" -> "`Scripts Inserter`".
114
 
115
+ = Q. How much of scripts (characters) I can enter in the text field? =
116
  A. We don't limit the number of characters.
117
 
118
  = Q. Does this plugin requires any modification of the theme? =
189
 
190
  == Changelog ==
191
 
192
+ = 4.28 =
193
+ * Changed the sorting of functions in the file 'functional.php'.
194
+ * The '_output' function renamed to '_prepare'.
195
+ * The function '_prepare' is improved.
196
+ * Functions '_inject_head_beginning', '_inject_head_end', '_inject_footer_beginning' and '_inject_footer_end' are renamed to '_exec_head_0', '_exec_head_1', '_exec_footer_0' and '_exec_footer_1' respectively.
197
+ * The comment (name of the plugin and link) added to the custom code is deleted.
198
+ * Code commenting improved.
199
+ * Some texts are updated.
200
+ * Translation files are updated.
201
+
202
  = 4.27 =
203
  * Some texts are updated.
204
  * Translation files are updated.
325
  * Code commenting improved.
326
  * Load of the additional remote CSS file removed from the admin.js file.
327
  * Changed the sorting of enqueueing of scripts.
328
+ * The 'Family' page tab renamed to 'Store'.
329
  * Added ad banner of my store website.
330
 
331
  = 4.4.1 =