All Projects → dmatthew → magento2-widget-parameters

dmatthew / magento2-widget-parameters

Licence: MIT license
Useful widget types for Magento 2 like image selector and wysiwyg text editor.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to magento2-widget-parameters

magento2-disable-customer-registration
A simple module to disable customer registration in Magento 2
Stars: ✭ 42 (-17.65%)
Mutual labels:  magento2, magento2-module
magento2-checkout-success-misc-script
Add Miscellaneous HTML and JavaScript codes to Magento2 checkout conformation page
Stars: ✭ 26 (-49.02%)
Mutual labels:  magento2, magento2-module
stripe
Stripe integration with Magento 2
Stars: ✭ 58 (+13.73%)
Mutual labels:  magento2, magento2-module
Magento2-City-Dropdown
City Dropdown for Magento 2 extension.
Stars: ✭ 42 (-17.65%)
Mutual labels:  magento2, magento2-module
magento2-inventory-log
Magento 2 - Inventory Log by KiwiCommerce
Stars: ✭ 33 (-35.29%)
Mutual labels:  magento2, magento2-module
customer-ajax-login
Free magento 2 extension for Popup and AJAX based Login and Sign Up | Manish Joy
Stars: ✭ 14 (-72.55%)
Mutual labels:  magento2, magento2-module
magento2-module
FACT-Finder® Web Components for Magento 2
Stars: ✭ 13 (-74.51%)
Mutual labels:  magento2, magento2-module
module-blog-sample-data
Sample data for Magento 2 blog extension
Stars: ✭ 15 (-70.59%)
Mutual labels:  magento2, magento2-module
magento2-sign-in-with-phone-number
This extension allow your customers to login to your Magento store using their phone number.
Stars: ✭ 42 (-17.65%)
Mutual labels:  magento2, magento2-module
module-wysiwyg-advanced
Extend TinyMCE 4 & 5 tools in Magento 2
Stars: ✭ 60 (+17.65%)
Mutual labels:  magento2, magento2-module
magento2-module-cookie-consent
Magento 2 wrapper for Cookie Consent by Insites
Stars: ✭ 14 (-72.55%)
Mutual labels:  magento2, magento2-module
magento2-pimcore-bridge
Magento 2 module for Pimcore integration.
Stars: ✭ 28 (-45.1%)
Mutual labels:  magento2, magento2-module
clean-admin-menu
Magento 2 Extension to cleanup admin menu and Store > Configuration area by arranging third party extension items.
Stars: ✭ 101 (+98.04%)
Mutual labels:  magento2, magento2-module
magento-2-mega-menu
Mageno 2 Mega Menu (Magicmenu) helps you create neat and smart navigation menus to display the main categories on your website.
Stars: ✭ 33 (-35.29%)
Mutual labels:  magento2, magento2-module
magento2-custom-shipping
Custom Shipping Module for Magento 2
Stars: ✭ 64 (+25.49%)
Mutual labels:  magento2, magento2-module
DiscountCodeUrl
Magento 2 module that applies a discount code automatically via URL
Stars: ✭ 33 (-35.29%)
Mutual labels:  magento2, magento2-module
magento-2-google-xml-sitemap
Google XML Sitemap for Magento 2 helps Google search bots find all every corner on your website to index, bring in potential benefits for your SEO strategy. Also, the HTML sitemap will help users more easily search for information on your site than only use Magento default.
Stars: ✭ 31 (-39.22%)
Mutual labels:  magento2, magento2-module
m2.SmartCategory
Magento2. Extension Smart Category rules dynamically change the product selection according to a set of conditions.
Stars: ✭ 78 (+52.94%)
Mutual labels:  magento2, magento2-module
magento-module-wishlist-api
Adds an API to interact with the Magento2 wishlist.
Stars: ✭ 17 (-66.67%)
Mutual labels:  magento2, magento2-module
module-catalog
Fixes for some known Magento 2 issues in Catalog
Stars: ✭ 23 (-54.9%)
Mutual labels:  magento2, magento2-module

Magento Widget Parameters

Useful widget parameter types for improved CMS Page building in Magento 2. Adds new parameter types like an image selector, wysiwyg text editor, or textarea. You can now use these parameter types in your custom widgets.

How to Use

Image Selector

<parameter xsi:type="block" name="background_image" visible="true" sort_order="10">
    <label translate="true">Background Image</label>
    <block class="Dmatthew\WidgetParameters\Block\Adminhtml\Widget\Type\ImageChooser">
        <data>
            <item name="button" xsi:type="array">
                <item name="open" xsi:type="string">Choose Image...</item>
            </item>
        </data>
    </block>
</parameter>

Image Chooser

Textarea

<parameter xsi:type="block" name="body_text" visible="true" sort_order="10">
    <label translate="true">Body Text</label>
    <block class="Dmatthew\WidgetParameters\Block\Adminhtml\Widget\Type\Textarea" />
</parameter>

Image Chooser

Wysiwyg

<parameter xsi:type="block" name="body_text" visible="true" sort_order="10">
    <label translate="true">Body Text</label>
    <block class="Dmatthew\WidgetParameters\Block\Adminhtml\Widget\Type\Wysiwyg" />
</parameter>

Image Chooser

License

MIT

Attribution

This software uses Open Source software. See the ATTRIBUTION page for these projects.

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].