Skip to content

Commit dce545d

Browse files
committed
NEXT-25207 - rename "Production Template" tab title to only "Template"
1 parent b321358 commit dce545d

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

guides/plugins/plugins/administration/add-custom-field.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ This block contains the whole settings form of the product detail page. In order
7171
As mentioned above, Shopware 6 is looking for a `main.js` file in your plugin. Its contents get minified into a new file named after your plugin and will be moved to the `public` directory of Shopware 6 root directory. Given this plugin would be named "AdministrationNewField", the minified javascript code for this example would be located under `<plugin root>/src/Resources/public/administration/js/administration-new-field.js`, once you run the command following command in your shopware root directory:
7272

7373
{% tabs %}
74-
{% tab title="Production template" %}
74+
{% tab title="Template" %}
7575

7676
```bash
7777
./bin/build-administration.sh

guides/plugins/plugins/administration/add-custom-module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Its contents get minified into a new file named after your plugin and will be mo
200200
Given this plugin would be named "AdministrationNewModule", the bundled and minified javascript code for this example would be located under `<plugin root>/src/Resources/public/administration/js/administration-new-module.js`, once you run the command following command in your shopware root directory:
201201
202202
{% tabs %}
203-
{% tab title="Production template" %}
203+
{% tab title="Template" %}
204204
205205
```bash
206206
./bin/build-administration.sh

guides/plugins/plugins/administration/add-new-tab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ import './page/sw-product-detail';
151151
{% hint style="info" %}
152152
Don't forget to rebuild the administration after applying changes to your `main.js`.
153153
{% tabs %}
154-
{% tab title="Production template" %}
154+
{% tab title="Template" %}
155155

156156
```bash
157157
./bin/build-administration.sh

guides/plugins/plugins/content/cms/add-cms-block.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ Shopware.Service('cmsService').registerCmsBlock({
272272
In order to test your changes now, you should rebuild your administration. This can be done with the following command:
273273

274274
{% tabs %}
275-
{% tab title="Production template" %}
275+
{% tab title="Template" %}
276276

277277
```bash
278278
./bin/build-administration.sh

guides/plugins/plugins/content/cms/add-cms-element.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ Shopware.Service('cmsService').registerCmsElement({
408408
That's it! You could now go ahead and fully test your new element! Install this plugin via `bin/console plugin:install --activate SwagBasicExample`, rebuild the administration using the following command and then start using your new element in the administration.
409409

410410
{% tabs %}
411-
{% tab title="Production template" %}
411+
{% tab title="Template" %}
412412

413413
```bash
414414
./bin/build-administration.sh

guides/plugins/plugins/storefront/add-custom-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ Make sure to ship the compiled file with your plugin as well.
255255
To see your changes you have to build the storefront. Use the following command and reload your storefront:
256256

257257
{% tabs %}
258-
{% tab title="Production template" %}
258+
{% tab title="Template" %}
259259

260260
```bash
261261
./bin/build-storefront.sh

guides/plugins/plugins/storefront/add-custom-styling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ This comes with the advantage that when you want to change this color for all oc
6464
Now you want to test if your custom styles actually apply to the Storefront. For this, you have to execute the compiling and building of the `.scss` files first. This is done by using the following command:
6565

6666
{% tabs %}
67-
{% tab title="Production template" %}
67+
{% tab title="Template" %}
6868

6969
```bash
7070
./bin/build-storefront.sh
@@ -83,7 +83,7 @@ composer run build:js:storefront
8383
If you want to see all style changes made by you live, you can also use our Storefront hot-proxy for that case:
8484

8585
{% tabs %}
86-
{% tab title="Production template" %}
86+
{% tab title="Template" %}
8787

8888
```bash
8989
./bin/watch-storefront.sh

guides/plugins/plugins/storefront/override-existing-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ if (module.hot) {
104104
To see your changes you have to build the storefront. Use the following command and reload your storefront.
105105

106106
{% tabs %}
107-
{% tab title="Production template" %}
107+
{% tab title="Template" %}
108108

109109
```bash
110110
./bin/build-storefront.sh

guides/plugins/plugins/storefront/using-a-modal-window.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export default class ExamplePlugin extends Plugin {
171171
To see your changes you have to build the storefront. Use the following command to build your storefront and reload it afterwards:
172172

173173
{% tabs %}
174-
{% tab title="Production template" %}
174+
{% tab title="Template" %}
175175

176176
```bash
177177
./bin/build-storefront.sh

guides/plugins/themes/add-css-js-to-theme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ To activate the hot-proxy, run the following command in your terminal.
103103

104104
{% tabs %}
105105

106-
{% tab title="Production template" %}
106+
{% tab title="Template" %}
107107

108108
```bash
109109
./bin/watch-storefront.sh

0 commit comments

Comments
 (0)