Reasons for why WordPress Smooth Scroll Plugin not working

The Smooth Scroll feature enables the website to scroll smoothly and helps user handle easily. There are lots of smooth scroll plugins and plugins which provide smooth scroll features to the site. Here, Mentioning a plugin that is most commonly used for a smooth scroll of WordPress website. It is MouseWheel Smooth Scroll Plugin. The Plugin… Continue reading Reasons for why WordPress Smooth Scroll Plugin not working

Published
Categorized as Wordpress

How to Add Custom LESS File in Custom Theme in Magento 2

1) Let’s assume that you have created a custom theme. Now, Create your custom less file at app/design/frontend/VendorName/ThemeName/web/css/source/_custom.less and add your less code inside that file. 2) After that you need to import this _custom.less file at app/design/frontend/VendorName/ThemeName/web/css/source/_sources.less@import ‘_custom.less’; You need to import your _custom. less file using this above line. Just add that line inside _sources. less file. If this _sources. less file does not exist in your… Continue reading How to Add Custom LESS File in Custom Theme in Magento 2

Published
Categorized as Magento

How to Add Custom Tab in Product Detail Page in Magento 2

Let’s assume that you have created custom theme. Then you need to create app/design/frontend/Vendor/Theme/Magento_Catalog/layout/catalog_product_view.xml file and paste the below code : <?xml version=”1.0″?> <page layout=”1column” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:View/Layout/etc/page_configuration.xsd”> <body> <referenceBlock name=”product.info.details”> <block class=”Magento\Catalog\Block\Product\View” name=”custom.tab” as=”customtab” template=”Magento_Catalog::product/view/custom.phtml” group=”detailed_info”> <arguments> <argument translate=”true” name=”title” xsi:type=”string”>Custom Tab</argument> <argument name=”sort_order” xsi:type=”string”>10</argument> </arguments> </block> </referenceBlock> </body> </page> After that, You need to create file app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/view/custom.phtml file and… Continue reading How to Add Custom Tab in Product Detail Page in Magento 2

Published
Categorized as Magento

How to Add Placeholder Text to Fields in Checkout in Magento 2

1) First of all, Let’s assume that you have created a simple module. After that, You need to create di.xml to create plugin at app/code/Module/Helloworld/etc/frontend/ and paste the below code : <?xml version=”1.0″ ?> <!– /** */ –> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:ObjectManager/etc/config.xsd”> <type name=”Magento\Checkout\Block\Checkout\AttributeMerger”> <plugin name=”add_placeholder_to_checkout” type=”Module\Helloworld\Plugin\Block\Checkout\AttributeMerger” sortOrder=”10″/> </type> </config> 2) Then, You need to create AttributeMerger.php file at app/code/Module/Helloworld/Plugin/Block/Checkout/ to add placeholder code and paste… Continue reading How to Add Placeholder Text to Fields in Checkout in Magento 2

Published
Categorized as Magento

Enable Guest checkout for WC

There is an option in woo-commerce to enable guest checkout on the website. Which will allow customers to do the purchase on the website without login. Login to woo-commerce backend. Go to WooCommerce > Settings > Accounts and Privacy  Allow customers to place orders without an account – Allows customers to check out without creating an account.… Continue reading Enable Guest checkout for WC

Add a captcha in the checkout of woo-commerce website

There is an plugin that suggested by the woo-commerce team to protect the website from bots.Security is the most important concern nowadays for any website or an eCommerce store. Because of automated tools and bots your site does not perform its best. There are lots of automated tools available to make your site spammy. Therefore… Continue reading Add a captcha in the checkout of woo-commerce website

Automation of Creating Invoices and Bills for intercompany sales orders

This proposal covers the scope of Automating the creation of Invoices and Bills. Proposal Summary This proposal will be covering the implementation of the Automation of Creating Invoice and Bills from Intercompany Sales Order and Purchase Order to the production account. Requirement  Macrofin’s client needs to automate the creation of the Invoice and Bill when… Continue reading Automation of Creating Invoices and Bills for intercompany sales orders

Proposal for email automation

Email automation for the order processing. Proposal summary Need to implement the solution for email automation needed for the main order processing. Requirement  When an order is created, and the PO is created, automatically send an email with the PO to the vendor. The template can be chosen based on if the order is a… Continue reading Proposal for email automation

Custom Record Online HTML Form

Requirement The case records will have the details of the customer, home address and email, and other information. The organization would like to have a customer survey solution so that the business can send customer survey emails to customers from the case record. Solution The proposed solution will place a button in the case records… Continue reading Custom Record Online HTML Form