Steps to Configure a Storefront CAPTCHA in Magento 2 Please follow these steps to complete enabling a CAPTCHA at the storefront: On the Admin panel, click Stores. In the Settings section, select Configuration. Select Customer Configuration under Customers in the panel on the left Open the CAPTCHA section, and continue with following: In the Enable… Continue reading How to Resolve Incorrect Captcha settings in store front?
Month: November 2022
Remove duplicate image direct from the website using JQuery fn
We can remove the duplicate image from the website by using this function . We find image with their source in the website so if we want to delete it we can make a if condition there so that it will take only one different source files. Using Jquery fn : <script> $(document).ready(function() { var… Continue reading Remove duplicate image direct from the website using JQuery fn
Permission to Setup Tax Codes and/or Tax Groups
To allow non-administrator users to setup or edit tax codes and tax groups, the Administrator must add the Tax Items permission by following the steps below. 1. Navigate to Setup > Users/Roles > Manage Roles.2. Edit the role.3. Permissions > Lists > add Tax Items with at least Edit access level.4. Click on Save.
How to add Scroll bar style over the line in the page so that its functionality will be same as like scrolling
Description: Creating a scroll bar on the single line curser moving. Add the following code in the container class and use the border line in webkit-scrollbar-track so that the scroll bar style over the line will be same as like scrolling functionality on single line. ::-webkit-scrollbar{ width:10px; height:0px; … Continue reading How to add Scroll bar style over the line in the page so that its functionality will be same as like scrolling
Resolve Error: “The template cannot be saved due to the following errors: The following has evaluated to null or missing.” When Customizing a System Email Template
Scenario User customizes a system email template and an error alert is returned. The behavior is caused by some system email templates referencing record types that are only available when their underlying features are enabled. For example, if the Gift Certificates feature is disabled, the native Standard Web Site Gift Certificate system email template would… Continue reading Resolve Error: “The template cannot be saved due to the following errors: The following has evaluated to null or missing.” When Customizing a System Email Template
Why Bulk Content Creating For Social Media Saves You Time
What is bulk content creation? I like to think that bulk content creation will be the new term used by many social media marketers, so fingers crossed it’ll catch on. Simply put, the process of bulk content production is when you come up with a range of ideas for your social media platforms and produce… Continue reading Why Bulk Content Creating For Social Media Saves You Time
Add items/sections under a subtab in configuration record
Create a items/sections under a subtab in the configuration record in Netsuite.
Add custom column filter in customer grid collection in Magento 2
STEP 1Create a di.xml file inside the app/code/Vendor/Module/etc/ directory. And add the below-mentioned code in this file. STEP 2 Create Collection.php file inside the app/code/Vendor/Module/Model/ResourceModel/CustomerGrid/ directory.