Head and Footer Scripts Inserter - Version 4.27

Version Description

  • Some texts are updated.
  • Translation files are updated.
  • The translation into Russian has been corrected.
  • The translation into Dutch has been corrected.
Download this release

Release Info

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

Code changes from version 4.26 to 4.27

header-and-footer-scripts-inserter.php CHANGED
@@ -2,10 +2,10 @@
2
  /**
3
  * Plugin Name: Head and Footer Scripts Inserter
4
  * Plugin URI: https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter
5
- * Description: Easily add your scripts 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.26
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
2
  /**
3
  * Plugin Name: Head and Footer Scripts Inserter
4
  * Plugin URI: https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter
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/
inc/php/page.php CHANGED
@@ -66,7 +66,7 @@ function spacexchimp_p006_render_submenu_page() {
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 scripts in the field.', $text ); ?><br><br>
70
  <p><?php _e( 'Note that the fields are for inserting HTML code, so JavaScript and CSS code must be wrapped in the corresponding HTML tag. For JavaScript code use the <code>&lt;script&gt;</code> tag, and for CSS code use the <code>&lt;style&gt;</code> tag. Example:', $text ); ?></p>
71
  <?php $ExampleCode = '&lt;script&gt;
72
  function myFunction() {
@@ -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 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,7 +140,7 @@ 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 scripts in the field and click the "Save changes" button. Enjoy the result of applying your 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>
@@ -151,8 +151,8 @@ function spacexchimp_p006_render_submenu_page() {
151
  <div class="question-6"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
152
  <div class="answer-6"><?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.', $text ); ?></div>
153
 
154
- <div class="question-7"><?php _e( 'Can I add my script to a specific page of my website?', $text ); ?></div>
155
- <div class="answer-7"><?php _e( 'For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your script only on specific pages of your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:', $text ); ?><br><br>
156
  <pre><code>function my_custom_script() {
157
 
158
  // Stop the function if this is not the Home page of website
@@ -160,8 +160,8 @@ function spacexchimp_p006_render_submenu_page() {
160
  return;
161
  }
162
 
163
- // Print the script
164
- echo '&lt;script&gt;YOUR SCRIPT&lt;/script&gt;';
165
  }
166
  add_action( 'wp_head', 'my_custom_script' );</code></pre>
167
  <?php printf(
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>
70
  <p><?php _e( 'Note that the fields are for inserting HTML code, so JavaScript and CSS code must be wrapped in the corresponding HTML tag. For JavaScript code use the <code>&lt;script&gt;</code> tag, and for CSS code use the <code>&lt;style&gt;</code> tag. Example:', $text ); ?></p>
71
  <?php $ExampleCode = '&lt;script&gt;
72
  function myFunction() {
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 "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>
151
  <div class="question-6"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
152
  <div class="answer-6"><?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.', $text ); ?></div>
153
 
154
+ <div class="question-7"><?php _e( 'Can I add my custom script to a specific page of my website?', $text ); ?></div>
155
+ <div class="answer-7"><?php _e( 'For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:', $text ); ?><br><br>
156
  <pre><code>function my_custom_script() {
157
 
158
  // Stop the function if this is not the Home page of website
160
  return;
161
  }
162
 
163
+ // Print the custom script
164
+ echo '&lt;script&gt;YOUR CUSTOM SCRIPT&lt;/script&gt;';
165
  }
166
  add_action( 'wp_head', 'my_custom_script' );</code></pre>
167
  <?php printf(
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-07-24 00:33+0300\n"
7
- "PO-Revision-Date: 2018-07-24 00:33+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -95,7 +95,7 @@ msgid "Go to the \"Main\" tab."
95
  msgstr ""
96
 
97
  #: inc/php/page.php:69
98
- msgid "Place your scripts in the field."
99
  msgstr ""
100
 
101
  #: inc/php/page.php:70
@@ -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 scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
@@ -165,7 +165,7 @@ 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 scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
@@ -193,11 +193,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
193
  msgstr ""
194
 
195
  #: inc/php/page.php:154
196
- msgid "Can I add my script to a specific page of my website?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:155
200
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your script only on specific pages of your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:168
@@ -368,7 +368,7 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
- msgid "Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
372
  msgstr ""
373
 
374
  #. Author of the plugin/theme
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"
95
  msgstr ""
96
 
97
  #: inc/php/page.php:69
98
+ msgid "Place your custom scripts in the field."
99
  msgstr ""
100
 
101
  #: inc/php/page.php:70
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 \"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
193
  msgstr ""
194
 
195
  #: inc/php/page.php:154
196
+ msgid "Can I add my custom script to a specific page of my website?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:155
200
+ msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:168
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
+ msgid "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."
372
  msgstr ""
373
 
374
  #. Author of the plugin/theme
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-07-24 00:33+0300\n"
7
- "PO-Revision-Date: 2018-07-24 00:33+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
@@ -95,7 +95,7 @@ msgid "Go to the \"Main\" tab."
95
  msgstr "Debes ir a la pestaña “Principal”."
96
 
97
  #: inc/php/page.php:69
98
- msgid "Place your scripts in the field."
99
  msgstr ""
100
 
101
  #: inc/php/page.php:70
@@ -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 scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
@@ -165,7 +165,7 @@ msgid "How does it work?"
165
  msgstr "¿Como funciona?"
166
 
167
  #: inc/php/page.php:143
168
- msgid "On the \"Settings\" tab, place your scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
@@ -193,11 +193,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
193
  msgstr ""
194
 
195
  #: inc/php/page.php:154
196
- msgid "Can I add my script to a specific page of my website?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:155
200
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your script only on specific pages of your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:168
@@ -368,7 +368,7 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
- msgid "Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
372
  msgstr ""
373
 
374
  #. Author of the plugin/theme
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"
95
  msgstr "Debes ir a la pestaña “Principal”."
96
 
97
  #: inc/php/page.php:69
98
+ msgid "Place your custom scripts in the field."
99
  msgstr ""
100
 
101
  #: inc/php/page.php:70
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 \"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
193
  msgstr ""
194
 
195
  #: inc/php/page.php:154
196
+ msgid "Can I add my custom script to a specific page of my website?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:155
200
+ msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:168
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
+ msgid "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."
372
  msgstr ""
373
 
374
  #. Author of the plugin/theme
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-07-24 00:33+0300\n"
7
- "PO-Revision-Date: 2018-07-24 00:33+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
@@ -95,7 +95,7 @@ msgid "Go to the \"Main\" tab."
95
  msgstr "Ga naar het tabblad “Hoofd”."
96
 
97
  #: inc/php/page.php:69
98
- msgid "Place your scripts in the field."
99
  msgstr ""
100
 
101
  #: inc/php/page.php:70
@@ -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 scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
@@ -165,7 +165,7 @@ 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 scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
@@ -193,11 +193,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
193
  msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina. Maar u moet de HTML of CSS kennen om de HTML- of CSS-code toe te voegen / te verwijderen / wijzigen met behulp van deze plug-in."
194
 
195
  #: inc/php/page.php:154
196
- msgid "Can I add my script to a specific page of my website?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:155
200
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your script only on specific pages of your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:168
@@ -361,14 +361,14 @@ msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
361
 
362
  #. Plugin Name of the plugin/theme
363
  msgid "Head and Footer Scripts Inserter"
364
- msgstr "Mijn Persoonlijke Functies"
365
 
366
  #. Plugin URI of the plugin/theme
367
  msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
- msgid "Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
372
  msgstr ""
373
 
374
  #. Author of the plugin/theme
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"
95
  msgstr "Ga naar het tabblad “Hoofd”."
96
 
97
  #: inc/php/page.php:69
98
+ msgid "Place your custom scripts in the field."
99
  msgstr ""
100
 
101
  #: inc/php/page.php:70
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 \"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
193
  msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina. Maar u moet de HTML of CSS kennen om de HTML- of CSS-code toe te voegen / te verwijderen / wijzigen met behulp van deze plug-in."
194
 
195
  #: inc/php/page.php:154
196
+ msgid "Can I add my custom script to a specific page of my website?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:155
200
+ msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:168
361
 
362
  #. Plugin Name of the plugin/theme
363
  msgid "Head and Footer Scripts Inserter"
364
+ msgstr "Head and Footer Scripts Inserter"
365
 
366
  #. Plugin URI of the plugin/theme
367
  msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
+ msgid "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."
372
  msgstr ""
373
 
374
  #. Author of the plugin/theme
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-07-24 00:33+0300\n"
7
- "PO-Revision-Date: 2018-07-24 00:33+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Polish\n"
10
  "Language: pl_PL\n"
@@ -96,7 +96,7 @@ msgid "Go to the \"Main\" tab."
96
  msgstr ""
97
 
98
  #: inc/php/page.php:69
99
- msgid "Place your scripts in the field."
100
  msgstr ""
101
 
102
  #: inc/php/page.php:70
@@ -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 scripts."
112
  msgstr ""
113
 
114
  #: inc/php/page.php:85
@@ -166,7 +166,7 @@ msgid "How does it work?"
166
  msgstr ""
167
 
168
  #: inc/php/page.php:143
169
- msgid "On the \"Settings\" tab, place your scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your scripts. It's that simple!"
170
  msgstr ""
171
 
172
  #: inc/php/page.php:145
@@ -194,11 +194,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
194
  msgstr ""
195
 
196
  #: inc/php/page.php:154
197
- msgid "Can I add my script to a specific page of my website?"
198
  msgstr ""
199
 
200
  #: inc/php/page.php:155
201
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your script only on specific pages of your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:"
202
  msgstr ""
203
 
204
  #: inc/php/page.php:168
@@ -369,8 +369,8 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
370
 
371
  #. Description of the plugin/theme
372
- msgid "Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
373
- msgstr "Łatwe dodawanie kodu skryptów do nagłówka i stopki strony opartej na WordPressie."
374
 
375
  #. Author of the plugin/theme
376
  msgid "Space X-Chimp"
@@ -380,5 +380,8 @@ msgstr ""
380
  msgid "https://www.spacexchimp.com"
381
  msgstr "https://www.spacexchimp.com"
382
 
383
- #~ msgid "If you want more options then tell us and we will be happy to add it."
 
 
 
384
  #~ msgstr "Jeśli potrzebujesz więcej opcji napisz mi o tym. Chętnie je dodam."
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"
96
  msgstr ""
97
 
98
  #: inc/php/page.php:69
99
+ msgid "Place your custom scripts in the field."
100
  msgstr ""
101
 
102
  #: inc/php/page.php:70
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 \"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
194
  msgstr ""
195
 
196
  #: inc/php/page.php:154
197
+ msgid "Can I add my custom script to a specific page of my website?"
198
  msgstr ""
199
 
200
  #: inc/php/page.php:155
201
+ msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
202
  msgstr ""
203
 
204
  #: inc/php/page.php:168
369
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
370
 
371
  #. Description of the plugin/theme
372
+ msgid "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."
373
+ msgstr ""
374
 
375
  #. Author of the plugin/theme
376
  msgid "Space X-Chimp"
380
  msgid "https://www.spacexchimp.com"
381
  msgstr "https://www.spacexchimp.com"
382
 
383
+ #~ 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."
384
+ #~ msgstr "Łatwe dodawanie kodu skryptów do nagłówka i stopki strony opartej na WordPressie."
385
+
386
+ #~ msgid "If you want more options, let us know and we will be happy to add them."
387
  #~ msgstr "Jeśli potrzebujesz więcej opcji napisz mi o tym. Chętnie je dodam."
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-07-24 00:33+0300\n"
7
- "PO-Revision-Date: 2018-07-24 00:33+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
@@ -95,7 +95,7 @@ msgid "Go to the \"Main\" tab."
95
  msgstr "Перейдите на вкладку «Главная»."
96
 
97
  #: inc/php/page.php:69
98
- msgid "Place your scripts in the field."
99
  msgstr "Поместите свои скрипты в поле."
100
 
101
  #: inc/php/page.php:70
@@ -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 scripts."
111
  msgstr "Наслаждайтесь результатом применения ваших скриптов."
112
 
113
  #: inc/php/page.php:85
@@ -165,7 +165,7 @@ msgid "How does it work?"
165
  msgstr "Как оно работает?"
166
 
167
  #: inc/php/page.php:143
168
- msgid "On the \"Settings\" tab, place your scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your scripts. It's that simple!"
169
  msgstr "На вкладке «Настройки» поместите свои скрипты в поле и нажмите кнопку «Сохранить изменения». Наслаждайтесь результатом применения ваших скриптов. Это так просто!"
170
 
171
  #: inc/php/page.php:145
@@ -193,11 +193,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
193
  msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина. Но вам нужно знать HTML или CSS для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот плагин."
194
 
195
  #: inc/php/page.php:154
196
- msgid "Can I add my script to a specific page of my website?"
197
  msgstr "Могу ли я добавить свой скрипт на определенную страницу моего веб-сайта?"
198
 
199
  #: inc/php/page.php:155
200
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your script only on specific pages of your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr "Пока этот плагин не имеет возможности применять собственные скрипты только на определенных страницах. Я планирую добавить эту функцию в ближайшее время. Но сейчас, чтобы применить ваш скрипт только на определенных страницах вашего сайта, вам нужно обернуть свой скрипт в PHP-код, который будет определять страницу, которая вам нужна. Вам нужно что-то вроде этого:"
202
 
203
  #: inc/php/page.php:168
@@ -280,7 +280,7 @@ msgstr ""
280
 
281
  #: inc/php/page.php:242
282
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
283
- msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
284
 
285
  #: inc/php/page.php:243
286
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
@@ -368,8 +368,8 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
- msgid "Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
372
- msgstr "Легко добавляйте ваши скрипты в верхний (HEAD) и нижний (FOOTER) колонтитулы вашего WordPress веб-сайта. Это необходимый инструмент для авторов и владельцев веб-сайтов."
373
 
374
  #. Author of the plugin/theme
375
  msgid "Space X-Chimp"
@@ -379,6 +379,9 @@ 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 "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
384
 
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"
95
  msgstr "Перейдите на вкладку «Главная»."
96
 
97
  #: inc/php/page.php:69
98
+ msgid "Place your custom scripts in the field."
99
  msgstr "Поместите свои скрипты в поле."
100
 
101
  #: inc/php/page.php:70
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 \"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
193
  msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина. Но вам нужно знать HTML или CSS для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот плагин."
194
 
195
  #: inc/php/page.php:154
196
+ msgid "Can I add my custom script to a specific page of my website?"
197
  msgstr "Могу ли я добавить свой скрипт на определенную страницу моего веб-сайта?"
198
 
199
  #: inc/php/page.php:155
200
+ msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr "Пока этот плагин не имеет возможности применять собственные скрипты только на определенных страницах. Я планирую добавить эту функцию в ближайшее время. Но сейчас, чтобы применить ваш скрипт только на определенных страницах вашего сайта, вам нужно обернуть свой скрипт в PHP-код, который будет определять страницу, которая вам нужна. Вам нужно что-то вроде этого:"
202
 
203
  #: inc/php/page.php:168
280
 
281
  #: inc/php/page.php:242
282
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
283
+ msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать. Но мы независимые разработчики, без регулярного дохода, поэтому каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей для таких замечательных людей, как вы."
284
 
285
  #: inc/php/page.php:243
286
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
+ msgid "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."
372
+ msgstr ""
373
 
374
  #. Author of the plugin/theme
375
  msgid "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
 
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-07-24 00:33+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -93,7 +93,7 @@ msgid "Go to the \"Main\" tab."
93
  msgstr ""
94
 
95
  #: inc/php/page.php:69
96
- msgid "Place your scripts in the field."
97
  msgstr ""
98
 
99
  #: inc/php/page.php:70
@@ -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 scripts."
109
  msgstr ""
110
 
111
  #: inc/php/page.php:85
@@ -163,7 +163,7 @@ msgid "How does it work?"
163
  msgstr ""
164
 
165
  #: inc/php/page.php:143
166
- msgid "On the \"Settings\" tab, place your scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your scripts. It's that simple!"
167
  msgstr ""
168
 
169
  #: inc/php/page.php:145
@@ -191,11 +191,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
191
  msgstr ""
192
 
193
  #: inc/php/page.php:154
194
- msgid "Can I add my script to a specific page of my website?"
195
  msgstr ""
196
 
197
  #: inc/php/page.php:155
198
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your script only on specific pages of your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:"
199
  msgstr ""
200
 
201
  #: inc/php/page.php:168
@@ -366,7 +366,7 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
366
  msgstr ""
367
 
368
  #. Description of the plugin/theme
369
- msgid "Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
370
  msgstr ""
371
 
372
  #. Author of the plugin/theme
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"
93
  msgstr ""
94
 
95
  #: inc/php/page.php:69
96
+ msgid "Place your custom scripts in the field."
97
  msgstr ""
98
 
99
  #: inc/php/page.php:70
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 \"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
191
  msgstr ""
192
 
193
  #: inc/php/page.php:154
194
+ msgid "Can I add my custom script to a specific page of my website?"
195
  msgstr ""
196
 
197
  #: inc/php/page.php:155
198
+ msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
199
  msgstr ""
200
 
201
  #: inc/php/page.php:168
366
  msgstr ""
367
 
368
  #. Description of the plugin/theme
369
+ msgid "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."
370
  msgstr ""
371
 
372
  #. Author of the plugin/theme
readme.txt CHANGED
@@ -4,22 +4,24 @@ 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.26
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
- Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners.
12
 
13
 
14
  == Description ==
15
 
16
- An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily insert custom scripts (HTML, JavaScript, and CSS) in the head or/and footer section of your website.
17
 
18
- No need anymore to editing a files of your theme or plugins in order to add custom scripts (HTML with JavaScript, CSS and else). You can add they on the plugin settings page. Just add your scripts in the field on the plugin settings page and this plugin will do the rest for you. It adds required scripts to the head section of your website automatically, without changing any of your themes file and without slowing down your website. It's really useful in case of any theme update, because your scripts would never be lost! Your scripts will keep on working, no matter how many times you upgrade or switch your theme and plugins.
 
 
 
 
19
 
20
  Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use this plugin to easily verify your website or domain and get a more effective and efficient sharing results. Example with Pinterest. Once you completed the verification process, people will see a checkmark next to your domain in your Pinterest profile and in pinner search results. That check mark emphasis you have confirmed the ownership of your blog or website on Pinterest. This will help your website to rank better in google and other search engines. You can easily increase your blog traffic using this plugin. "Head and Footer Scripts Inserter" is a simple but effective SEO plugin.
21
-
22
- If you want more options then tell us and we will be happy to add it.
23
 
24
  **Features**
25
 
@@ -33,9 +35,14 @@ If you want more options then tell us and we will be happy to add it.
33
 
34
  **Key features include...**
35
 
36
- * Inserts scripts in beginning or/and end of HEAD tag
37
- * Inserts scripts in beginning or/and end of footer
38
- * And much, much more!
 
 
 
 
 
39
 
40
  **Translation**
41
 
@@ -49,12 +56,6 @@ This plugin is ready for translation and has already been translated into severa
49
  * Dutch (translation by Peter Leenders)
50
 
51
  If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/header-and-footer-scripts-inserter).
52
-
53
- **Supported**
54
-
55
- * HTML
56
- * JavaScript (in HTML tag)
57
- * CSS (in HTML tag)
58
 
59
  **Minimum system requirements:**
60
 
@@ -94,7 +95,7 @@ Manually via FTP access:
94
  4. Log in to Admin Area of your WordPress website.
95
  5. Activate this plugin through the "`Plugins`" tab.
96
 
97
- After installation and activation, the "`Scripts Inserter`" menu item will appear in the "`Settings`" section of Admin Area. Click on it in order to view the plugin settings page.
98
 
99
  [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
100
 
@@ -108,7 +109,7 @@ A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) w
108
  A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the "`languages`" folder. Just [send the PO file to us](https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
109
 
110
  = Q. How does it work? =
111
- A. Simply go to the plugin settings page, place your scripts in the field and click the "Save changes" button. Enjoy the result of applying your scripts. It's that simple!
112
  You can find the plugin settings page at "`WordPress Admin Area`" -> "`Settings`" -> "`Scripts Inserter`".
113
 
114
  = Q. How much of scripts I can enter in the field? =
@@ -120,8 +121,8 @@ A. Absolutely not. This plugin is configurable entirely from the plugin settings
120
  = Q. Does this require any knowledge of HTML or CSS? =
121
  A. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.
122
 
123
- = Q. Can I add my script to a specific page of my website? =
124
- A. For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your script only on specific pages of your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:
125
 
126
  `function my_custom_script() {
127
 
@@ -130,8 +131,8 @@ A. For now, this plugin does not have an option to apply the custom scripts only
130
  return;
131
  }
132
 
133
- // Print the script
134
- echo '<script>YOUR SCRIPT</script>';
135
  }
136
  add_action( 'wp_head', 'my_custom_script' );`
137
 
@@ -188,6 +189,12 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
188
 
189
  == Changelog ==
190
 
 
 
 
 
 
 
191
  = 4.26 =
192
  * Dutch translation added. (Thanks to Peter Leenders)
193
  * The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.
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
 
11
+ 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.
12
 
13
 
14
  == Description ==
15
 
16
+ An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) in the head or/and footer section of your website.
17
 
18
+ This is a must have tool for authors and website's owners. Its purpose is to provide a familiar experience to WordPress users. There is no need for any more editing of the files of your theme or plugins for to add custom scripts (HTML with JavaScript, CSS, etc.). Just add your custom scripts in the field on the plugin page and this plugin will do the rest for you. It adds required scripts to the head section of your website automatically, without changing any of your themes file and without slowing down your website.
19
+
20
+ The plugin works completely independently of the theme, so you can use it with any theme. The code you place on the plugin page will be entirely unaffected if you edit the contents of the theme’s files, or even completely change the theme. This is really useful in case of updating theme or plugins, because your custom scripts would never be overwritten. Your custom scripts will keep on working, no matter how many times you upgrade or switch your theme and plugins.
21
+
22
+ On the plugin page you find the code editor powered by CodeMirror. This code editor has options such as syntax highlighting, line numbering, and more. And if you want more options, let us know and we will be happy to add them.
23
 
24
  Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use this plugin to easily verify your website or domain and get a more effective and efficient sharing results. Example with Pinterest. Once you completed the verification process, people will see a checkmark next to your domain in your Pinterest profile and in pinner search results. That check mark emphasis you have confirmed the ownership of your blog or website on Pinterest. This will help your website to rank better in google and other search engines. You can easily increase your blog traffic using this plugin. "Head and Footer Scripts Inserter" is a simple but effective SEO plugin.
 
 
25
 
26
  **Features**
27
 
35
 
36
  **Key features include...**
37
 
38
+ * Inserts custom scripts in beginning or/and end of HEAD tag
39
+ * Inserts custom scripts in beginning or/and end of footer
40
+
41
+ **Supported**
42
+
43
+ * HTML
44
+ * JavaScript (in HTML tag)
45
+ * CSS (in HTML tag)
46
 
47
  **Translation**
48
 
56
  * Dutch (translation by Peter Leenders)
57
 
58
  If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/header-and-footer-scripts-inserter).
 
 
 
 
 
 
59
 
60
  **Minimum system requirements:**
61
 
95
  4. Log in to Admin Area of your WordPress website.
96
  5. Activate this plugin through the "`Plugins`" tab.
97
 
98
+ After installation and activation, the "`Scripts Inserter`" menu item will appear in the "`Settings`" section of Admin Area. Click on it in order to view the plugin settings page.
99
 
100
  [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
101
 
109
  A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the "`languages`" folder. Just [send the PO file to us](https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
110
 
111
  = Q. How does it work? =
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? =
121
  = Q. Does this require any knowledge of HTML or CSS? =
122
  A. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.
123
 
124
+ = Q. Can I add my custom script to a specific page of my website? =
125
+ A. For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:
126
 
127
  `function my_custom_script() {
128
 
131
  return;
132
  }
133
 
134
+ // Print the custom script
135
+ echo '<script>YOUR CUSTOM SCRIPT</script>';
136
  }
137
  add_action( 'wp_head', 'my_custom_script' );`
138
 
189
 
190
  == Changelog ==
191
 
192
+ = 4.27 =
193
+ * Some texts are updated.
194
+ * Translation files are updated.
195
+ * The translation into Russian has been corrected.
196
+ * The translation into Dutch has been corrected.
197
+
198
  = 4.26 =
199
  * Dutch translation added. (Thanks to Peter Leenders)
200
  * The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.