mageworx magento store - table of contents · 1. log into the magento server (or switch to) as a...

18

Upload: others

Post on 30-May-2020

8 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere
Page 2: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

Table of Contents

1. Extension Installation Instructions

2. Accessing the Extension Main Settings

3. Extra Fees Grid

4. New Fee Configuration

5. Multi Fees on the Front-End

6. User Agreement

7. Support and Extra Info

Page 3: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

Uploading the extension

Upload via Composer

1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system.

2. Create a folder anywhere on your server (preferably not in the Magento install dir). When done, upload all the extension zip packages in there.

3. To use the folder created above as a packaging repository, add the run composer command:

composer config repositories.mageworx artifact {/YOUR/ABSOLUTE/PATH/TO/EXTENSIONS/DIRECTORY}

For example:

composer config repositories.mageworx artifact /Users/mageworxuser/magento_extensions/mageworx/zip

This command add to your composer.json file this lines:

"mageworx": { "type": "artifact", "url": "/Users/mageworxuser/magento_extensions/mageworx/zip" }4. Install the extension with Composer: composer require mageworx/module-multifeesmeta

1. Installation Instructions

Page 4: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

Upload by copying code

1. Log into the Magento server (or switch to) as a user, who has permissions to write to the Magento file system.

2. Download the "Ready to paste" package from your customer's area, unzip it and upload the 'app' folder to your Magento install dir.

Enable the module

1. Log into the Magento server (or switch to) as a user, who has permissions to write to the Magento file system.

2. Go to your Magento install dir:cd <your Magento install dir>

3. Enable the module:

php bin/magento setup:enable MageWorx_MultiFees

3. And finally, update the database:

php bin/magento setup:upgradephp bin/magento cache:flushphp bin/magento setup:static-content:deploy

Page 5: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

That is it.

Now you can start using the extension.

Page 6: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

2. Accessing the Extension Main Settings

To access the Multi Fees general settings, go to

Stores - Configuration - MageWorx - Multi Fees

Switch the Enable Cart Fees option to Yes to activate extra fees.

You can define the Calculation Settings to include or exclude taxes for multi fees.

Also, you can set how to display prices in various front-end and back-end locations: including or excluding taxes.

Page 7: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

3. Extra Fees Grid

To access the Multi Fees grid, go to

Sales - Manage Multi Fees

You can enable, disable or delete multiple fees at a time using the Actions drop-down.

Use the Add New Fee button to create a new fee.

Page 8: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

4. New Fee Configuration

Fill in the Name of the fee and Description.

Select the Fee Type.

Define Customer Groups that will be able to purchase the fee.

Set the fee as Required to make a purchase impossible without it.

Define the fee Status to enable or disable it.

The extension support 2 types of extra fees: - CART fees - SHIPPING fees

Page 9: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

4. New Fee Configuration

Define the Sort Order for the fee.

Set the Tax Class for the fee.

Enable or Disable the Customer Message and fill in its Title if needed.

Enable or Disable the Date Field and fill in its Title if needed.

Page 10: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

4. New Fee Configuration

Switch to the Manage Labels tab to continue configuration

You can specify Fee Name and Description to display on the Front-End.

Also, you can fill in the Customer Message Title and the Date Field Title.

Page 11: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

4. New Fee Configuration

Switch to the Manage Options tab to continue configuration

Select the Input Type for the fee:

• checkbox

• radio button

• drop-down

Set the fee as One-time or not to charge for it only once.

Choose positions to apply the fee to.

Page 12: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

4. New Fee Configuration

Then, you need to specify the Price of the fee or multiple price values if you are using the drop-down input type.

Also, you can set the Price Type and mark one of the values as default. The Admin field is used to display

the Title of the fee on the Front-End.

Moreover, you can fill in the Default Store View title. It will be used to replace the Admin title on the Front-End.

Page 13: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

4. New Fee Configuration

Finally, switch to the Conditions tab to complete the configuration

You can make the fee available for all products or set conditions that will be checked. This option allows you to provide fees for certain products.

Page 14: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

5. Multi Fees on the Front-End

Extra Fees are available on the Front-End on the Shopping Cart page

Page 15: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

5. Multi Fees on the Front-End

Also, Extra Fees are available on the Front-End during the Checkout before placing an order

Page 16: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

5. Multi Fees on the Front-End (Shipping Fees)

Page 17: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

MageWorx reserves the right to make corrections, modifications, enhancements, improvements, and other changes to all its products and services at any time and to discontinue any product or service without notice. Customers should obtain the latest relevant information before placing an order and should verify that this information is complete and up-to-date. All products are sold subject to MageWorx terms and conditions of sale supplied at the time of order acknowledgment.

MageWorx warrants performance of its products to the specifications applicable at the time of sale in accordance with the company’s standard warranty. Testing and other quality control techniques are used to the extent MageWorx deems necessary to support this warranty.

MageWorx assumes no liability for applications assistance or customer product design. Customers are responsible for their products and applications using MageWorx components. To minimize the risks associated with customer products and applications, customers should provide adequate design and operating safeguards.

MageWorx does not warrant or represent that any license, either express or implied, is granted under any MageWorx patent right, copyright, mask work right, or other MageWorx intellectual property rights relating to any combination, machine, or process in which MageWorx products or services are used.

Information published by MageWorx regarding third-party products or services does not constitute a license from MageWorx to use such products or services or a warranty or endorsement thereof. Use of such information may require a license from a third party under the patents or other intellectual property of the third party, or a license from MageWorx under the patents or other intellectual property of MageWorx.

Resale of MageWorx products or services with statements different from or beyond the parameters stated by MageWorx for that product or service voids all express and any implied warranties for the associated MageWorx product or service and is an unfair and deceptive business practice. MageWorx is not responsible or liable for any such statements. All company and brand products and service names are trademarks or registered trademarks of their respective holders.

Copyright © 2016 MageWorx

6. License Agreement

Page 18: Mageworx Magento Store - Table of Contents · 1. Log into the Magento server (or switch to) as a user who has permissions to write to the Magento file system. 2. Create a folder anywhere

GOT QUESTIONS?

MageWorx offers FREE lifetime support and updates for any extension developed for Magento. Need help with the extensions? Feel free submit a ticket from http://www.mageworx.com/support/

GETTING HELP WITH MAGENTO

MageWorx offers outstanding services developing custom tailored solutions for Magento platform to attain your eCommerce objectives. Our professional impassioned team provides profound and custom oriented development of your project in a short timeframe. Click here to contact us.

LIKE THE EXTENSION? LEAVE A REVIEW ON MAGENTO MARKETPLACE

Let Magento 2 community know about your experience with the Advanced Product Options Suite. Share your review on the Marketplace, thus helping Magento offer trusted business solutions.

7. Support