BTemplates.com

Follow us

easyandfaster. Powered by Blogger.

Magento2 – Add custom price of Product when adding to cart

First create events.xml file in folder ‘EasyndFaster/Custom/etc/frontend’ and use event ‘checkout_cart_product_add_after’ .     ...

Labels

BTemplates.com

Blogroll

Weekly most viewed

Saturday, December 1, 2018

Magento 2.1.X change favicon


1. Login to your Magento Admin Panel. 2. Click on Content => Configuration => Select your current theme => HTML Head 3. In the panel on the left under Design Configuration, click Edit your current website, storeview. 4. Expand the HTML Head section. Then,...

Magento 2.0.X change favicon


1. Login to your Magento Admin Panel. 2. Click on STORES tab from the left sidebar. 3. Click on Settings => Configuration section: 4. Click on left hand side => General tab => Design. After that, expand HTML Head tab from the right panel. 5. Now...

Sunday, July 8, 2018

Commenting PHP Code


A comment is the portion of a program that exists only for the human reader and stripped out before displaying the programs result. There are two commenting formats in PHP: Single-line comments: They are generally used for short explanations or notes relevant to the local...

Sunday, June 17, 2018

Sunday, June 10, 2018

Hello World in PHP


In below is the code to write "Hello World" in php. Create "Helloworld" folder in xampp\htdocs\. (Path like :- \xampp\htdocs\Helloworld) Now create index.php file in your "Helloworld" folder. In "index.php" write below code. <?phpecho "Hello World";?> Now...

Sunday, June 3, 2018