All Projects → Setono → Syliustermsplugin

Setono / Syliustermsplugin

Licence: mit
Add terms and conditions to your Sylius store and have the customer accept them on checkout

Labels

Projects that are alternatives of or similar to Syliustermsplugin

Book 5.0 2
The Symfony 5 book source: The Fast Track
Stars: ✭ 27 (-3.57%)
Mutual labels:  symfony
Api Example
WIP: Just sample app with API
Stars: ✭ 12 (-57.14%)
Mutual labels:  symfony
Drupal Console
The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.
Stars: ✭ 913 (+3160.71%)
Mutual labels:  symfony
Css Selector
The CssSelector component converts CSS selectors to XPath expressions.
Stars: ✭ 6,928 (+24642.86%)
Mutual labels:  symfony
Test Pack
A Symfony Pack for functional testing
Stars: ✭ 865 (+2989.29%)
Mutual labels:  symfony
Generator Symfonangular
Yeoman generator for full stack development with (PHP) Symfony and (Javascript) AngularJS application
Stars: ✭ 13 (-53.57%)
Mutual labels:  symfony
Influxdb Bundle
Bundle service integration of official influxdb/influxdb-php client
Stars: ✭ 24 (-14.29%)
Mutual labels:  symfony
Ismaambrosigeneratorbundle
Generates Symfony2 documents, forms and CRUD for MongoDB documents
Stars: ✭ 27 (-3.57%)
Mutual labels:  symfony
Syliusmercanetbnpparibasplugin
BnpParibas Mercanet payment gateway for Sylius based applications.
Stars: ✭ 12 (-57.14%)
Mutual labels:  symfony
Mo4 Coding Standard
MO4 Coding Standard Rules for Codesniffer based on Symfony Coding Standards.
Stars: ✭ 15 (-46.43%)
Mutual labels:  symfony
Process
The Process component executes commands in sub-processes.
Stars: ✭ 6,942 (+24692.86%)
Mutual labels:  symfony
Polyfill Xml
This polyfill is deprecated. Use the symfony/polyfill-php72 package instead.
Stars: ✭ 11 (-60.71%)
Mutual labels:  symfony
Routing
The Routing component maps an HTTP request to a set of configuration variables.
Stars: ✭ 7,080 (+25185.71%)
Mutual labels:  symfony
Symfony Crawler Bundle
Implements the crawler package into Symfony
Stars: ✭ 8 (-71.43%)
Mutual labels:  symfony
Symfony Quickstart
An empty Symfony3 project that provides lots of ready-to-use tools for quick & not-so-dirty development
Stars: ✭ 27 (-3.57%)
Mutual labels:  symfony
Migrify
Futuristic Grinder for Legacy Code with Effortles Confidence
Stars: ✭ 25 (-10.71%)
Mutual labels:  symfony
Bdd Experiment
An experiment on BDD in Symfony2 using Behat, Mink and Zombie.js
Stars: ✭ 12 (-57.14%)
Mutual labels:  symfony
Ecommerce
A powerful and lightweight eCommerce platform using ReactJs, Graphql, PHP, and Mysql.
Stars: ✭ 28 (+0%)
Mutual labels:  symfony
Webfactoryicutranslationbundle
Enables ICU message formatting for translations in Symfony applications.
Stars: ✭ 27 (-3.57%)
Mutual labels:  symfony
Rechko
Software for a universal dictionary in Bulgarian.
Stars: ✭ 13 (-53.57%)
Mutual labels:  symfony

Sylius terms and conditions plugin

Latest Version Latest Unstable Version Software License Build Status Code Coverage

Will add the requirement to check off terms and conditions when the customer checks out

Screenshots

Shop

Before the customer can place order, he/she has to check the required terms

Screenshot showing shop checkout complete page

Admin

Here is a list of terms. Notice the terms_and_conditions which is associated with multiple channels.

Screenshot showing admin terms index page

Screenshot showing admin terms update page

The Explanation field is the text shown on the complete order page. Notice you can use a placeholder ([link:Link text]) to tell where the link should be.

Screenshot showing admin terms translation update page

Installation

Step 1: Download the plugin

Open a command console, enter your project directory and execute the following command to download the latest stable version of this plugin:

$ composer require setono/sylius-terms-plugin

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Step 2: Enable the plugin

Then, enable the plugin by adding it to the list of registered plugins/bundles in the config/bundles.php file of your project:

<?php
# config/bundles.php
return [
    // ...
    
    Setono\SyliusTermsPlugin\SetonoSyliusTermsPlugin::class => ['all' => true],
    
    // It is important to add plugin before the grid bundle
    Sylius\Bundle\GridBundle\SyliusGridBundle::class => ['all' => true],
    
    // ...
];

NOTE that you must instantiate the plugin before the grid bundle, else you will see an exception like You have requested a non-existent parameter "setono_sylius_terms.model.terms.class".

Step 3: Import config

# config/packages/_sylius.yaml
imports:
    # ...
    
    - { resource: "@SetonoSyliusTermsPlugin/Resources/config/app/config.yaml" }
    
    # ...

Step 4: Import routing

# config/routes/setono_sylius_terms.yaml

setono_sylius_terms_shop:
    resource: "@SetonoSyliusTermsPlugin/Resources/config/shop_routing.yaml"
    prefix: /{_locale}
    requirements:
        _locale: ^[a-z]{2}(?:_[A-Z]{2})?$

setono_sylius_terms_admin:
    resource: "@SetonoSyliusTermsPlugin/Resources/config/admin_routing.yaml"
    prefix: /admin

Step 5: Update your database schema

$ php bin/console doctrine:migrations:diff
$ php bin/console doctrine:migrations:migrate

Step 6: Override checkout complete form

Override the Sylius Form:

  • If you haven't your own templates/bundles/SyliusShopBundle/Checkout/Complete/_form.html.twig yet:

    $ cp vendor/sylius/sylius/src/Sylius/Bundle/ShopBundle/Resources/views/Checkout/Complete/_form.html.twig \
    templates/bundles/SyliusShopBundle/Checkout/Complete/_form.html.twig
    
  • If you already have it:

    Add terms field (exactly this conditional way):

    {# templates/bundles/SyliusShopBundle/Checkout/Complete/_form.html.twig #}
    {% if form.terms is defined %}
        {% form_theme form.terms '@SetonoSyliusTermsPlugin/Shop/Form/termsTheme.html.twig' %}
        {{ form_row(form.terms) }}
    {% endif %}
    

    So the final template will look like this:

    {# templates/bundles/SyliusShopBundle/Checkout/Complete/_form.html.twig #}
    {{ form_row(form.notes, {'attr': {'rows': 3}}) }}
    {% if form.terms is defined %}
        {% form_theme form.terms '@SetonoSyliusTermsPlugin/Shop/Form/termsTheme.html.twig' %}
        {{ form_row(form.terms) }}
    {% endif %}
    

Troubleshooting

  • If you see Neither the property "terms" nor one of the methods "terms()", "getterms()"/"isterms()"/"hasterms()" or "__call()" exist and have public access in class "Symfony\Component\Form\FormView".

    Then see https://github.com/Setono/SyliusTermsPlugin/issues/13 and double-check you added terms field at template like described at Override checkout complete form section.

  • If you see Grid "setono_sylius_terms_terms" does not exists

    Then you forgot to import config from Step 3: Import config section.

  • If you see Uncaught ReferenceError: $ is not defined in your js console

    This means jQuery was loaded after plugin's javascript code. Plugin's javascript code injecting into main template via sylius.shop.layout.javascripts Sonata block. So check your custom templates/bundles/SyliusShopBundle/layout.html.twig it's javascript block should be like this:

    {# layout.html.twig #}
    
    {% block javascripts %}
        // We expect jquery to be loaded here
        {% include '@SyliusUi/_javascripts.html.twig' with {'path': 'assets/shop/js/app.js'} %}
    
        // But if you have it as separate script - just make sure
        // it placed before `sylius.shop.layout.javascripts` sonata block
    
        {{ sonata_block_render_event('sylius.shop.layout.javascripts') }}
    {% endblock %}
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].