monsieurbiz/sylius-scripts-plugin

Allows you to add JS scripts from the admin panel.


README

Monsieur Biz logo      Sylius logo
Monsieur Biz is a Sylius Extension Artisan partner

Scripts Settings for Sylius

Scripts Plugin license Tests Status Security Status

This plugin lets you add JS scripts from the admin panel. You can add scripts to the header or the footer of your website.
For example, add Google Analytics, Facebook Pixel, or any other tracking script.

Installation

composer require monsieurbiz/sylius-scripts-plugin

Create the config file in config/packages/monsieurbiz_sylius_scripts_plugin.yaml:

imports:
    resource: '@MonsieurBizSyliusScriptsPlugin/Resources/config/config.yaml'

Configuration

Go to the admin panel, then Settings > Scripts and add your scripts:

Screenshot of the scripts form in admin panel

And that's it! Your scripts will be added:

Screenshot of the shop example

How to

Change the default settings values for your project

Open the config/packages/monsieurbiz_sylius_scripts_plugin.yaml file and change the default values. For example:

monsieurbiz_sylius_settings:
    plugins:
        monsieurbiz_scripts.scripts:
            default_values:
                before_head_end: |
                    <script type="text/javascript">console.log('My script');</script>