Oh snap! You are using an old version of browser. Update your browser to get new awesome features. Click for more details.

How to call CLI command via Cron file and pass an object as param

How to call CLI command via Cron file and pass an object as param

Put this code in your cron file /**  * @var \Magento\Framework\Serialize\SerializerInterface  */ private $serializer; /**  * @var \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory  */ private $productCollectionFactory; public function __construct(     \Magento\Framework\Serialize\SerializerInterface $serializer,     \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory $productCollectionFactory ) {     $this->serializer               = $serializer;     $this->productCollectionFactory = $productCollectionFactory; } public function execute() {     $collection...

Magento 2 How to add native captcha to a custom form

Magento 2 How to add native captcha to a custom form

Follow some step for using magento captcha into custom module. Step 1. Vendor/Module/etc/config.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd"> <default> <customer> <captcha> <always_for> <custom_form>1</custom_form> </always_for> </captcha> </customer> <captcha translate="label"> <frontend> <areas> <custom_form> <label>Custom Form</label> </custom_form> </areas> </frontend> </captcha> </default> </config> Step 2: Goto 'Admin -> Stores -> Configuration -> Customer -> Customer Configuration -> Captcha' and configure. You can...

Magento 2 add google recaptcha in custom form

Magento 2 add google recaptcha in custom form

Add recaptcha js file in your xml Path: app/code/Name_space/Module_name/view/frontend/layout <?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"> <head> <script src="https://www.google.com/recaptcha/api.js" src_type="url" /> </head> </page> Add recaptcha code in your phtml file Path: app/code/Name_space/Module_name/view/frontend/templates First add onsubmit event in form, It's validate recaptcha field via javascript. <form class="test-form"       action="<?php echo $block->getFormAction(); ?>"       id="test_form"    ...

Magento 2 add Buy Now button on product view page

Magento 2 add Buy Now button on product view page

This module add "Buy Now" button on product view page, When user click  this button to process directly checkout. Here is  link to download it. Installation Instruction - Unzip Magebug_BuyNow.zip file - Move app folder into your project root directory - Run command: php bin/magento setup:upgrade - Run command: php bin/magento cache:flush ...

Magento 2 How to Display Country & State/Province Dropdown in Custom Frontend Form

Magento 2 How to Display Country & State/Province Dropdown in Custom Frontend Form

First create block file and put below code in this file. <?php namespace NameSpace\ModuleName\Block; class Form extends \Magento\Directory\Block\Data {     protected $_customerSession;     public function __construct(         \Magento\Framework\View\Element\Template\Context $context,         \Magento\Directory\Helper\Data $directoryHelper,         \Magento\Framework\Json\EncoderInterface $jsonEncoder,         \Magento\Framework\App\Cache\Type\Config $configCacheType,         \Magento\Directory\Model\ResourceModel\Region\CollectionFactory $regionCollectionFactory,...

Magento 2 Load Region By Region Id

Magento 2 Load Region By Region Id

If you need region data by region id. check the below code. /** * @var \Magento\Directory\Model\RegionFactory */ protected $_regionFactory; public function __construct(     \Magento\Directory\Model\RegionFactory $regionFactory $regionFactory ) {     $this->_regionFactory = $regionFactory; } function getRegionDataById($regionId){ //Ex. $regionId = 12; $region = $this->_regionFactory->create();         $region->load($regionId);         echo '<pre>';print_r($region->getData());exit; } Output Array (  ...

Magento 2 - Get product active filters using Event Obeserver

Magento 2 - Get product active filters using Event Obeserver

Create events.xml Path: app/code/Module_Name_Space/Module_Name/etc/frontend/events.xml Put this code <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">     <event name="layout_generate_blocks_after">     <observer name="customize-category-block" instance="Module_Name_Space/Module_Name\Observer\Filters" /> </event> </config> Now create observer file Filters.php Path: app/code/Indianic/CategoryTab/Observer/Filters.php Put this code <?php namespace Module_Name_Space\Module_Name\Observer; use Magento\Framework\Event\ObserverInterface; use Magento\Catalog\Model\Layer\Resolver as LayerResolver; class Categoryblock implements ObserverInterface {     /**      * @var \Magento\Catalog\Model\Layer\Category    ...

Magento 2 Add tabs with product attribute content on product page

Magento 2 Add tabs with product attribute content on product page

In Magento, like in most other eCommerce platforms, tabbed navigation is utilized on product pages for displaying various product information and data. By default, and this is the same for Luma and Blank theme, there are three tabs on the product page. If you want to add an extra tab on product detail page and display product attribute...

Magento 2 How to get the database(connection) details

Magento 2 How to get the database(connection) details

If you required database detail in your custom file. This article help to how get the database details from env.php file. In your block file add below code and simply call function anywhere. <?php namespace Namespace\Modulename\Block; use Magento\Framework\App\DeploymentConfig\Reader; class Index extends \Magento\Framework\View\Element\Template { private $deploymentConfigReader;     public function __construct(         \Magento\Framework\App\Action\Context $context,    ...

Magento 2 To get product attributes of specific attribute group id

Magento 2 To get product attributes of specific attribute group id

Hello Friends, Get specific attribute collection by attribute group id in product page. Use below code. First get your group id and attribute_set_id in eav_attribute_group table. Then use this code. //$_product is current product object $productAttributes = $_product->getAttributes(); $group_id = 104; //Past Your Attribute Group Id $attributeSetId = 16; //Past Your Attribute Set Id foreach ($productAttributes as $attribute)...

Magento direct sql query

Magento direct sql query

Hello Friend's, Here some usefully mysql query. ======================================================================== Number Orders - Sales - Avg Per Order ********************************************************************************* AVG Order Value Per Day SELECT DATE(`created_at`) AS 'Date', AVG(`grand_total`) AS 'AVG Order Value Per Day' FROM `sales_flat_order` WHERE `store_id` = 2 AND `status` = 'complete' GROUP BY DATE(`created_at`) ORDER BY DATE(`created_at`) DESC -------------------------------------------------------------------------------------- AVG Order Value Per Week SELECT WEEK(`created_at`)...

Magento Techniques to Show configurable product options in custom product listing with price change

Magento Techniques to Show configurable product options in custom product listing with price change

Displaying product options like colors, sizes, price… in the custom product list gives an incentive to the customer to select and purchase a product. It is likely not possible to achieve these options by installing default Magento alone. In this article, we will recommend some effective methods to show options for the configurable and product options in custom...