Add new fields(Latitude, Longitude) in billing address and shipping address and display both custom fields and it’s value on following sections: Admin Order Section Order notification and email address section Order PDF address section
Daily Archives: May 15, 2023
Company A is an e-commerce store selling rugs online. Company A wants to charge based on the size of rugs provided by the customer. In backend, show product-wise option to enable/disable this functionality and field to specify price per sq. meter. Show form on product page to enter height and […]
Create a custom component to add/edit/delete and view the detail of design information into admin. Associate the multiple design option to product and show selected design option product detail page. Create following fields in given table: Table name: design design_id int 10 primary key design_name varchar 50 unique design_status tinyint […]
I’m trying to create catalog rule by installing the module, but it’s not working. This is my CreateRuleSetupInstallData.php file <?php namespace PerspectiveCreateRuleSetup; use Exception; use MagentoFrameworkSetupModuleDataSetupInterface; use MagentoFrameworkSetupInstallDataInterface; use MagentoFrameworkSetupModuleContextInterface; class InstallData implements InstallDataInterface { /** * @var MagentoFrameworkSetupModuleDataSetupInterface */ private $moduleDataSetup; /** * @var MagentoCatalogRuleModelRuleFactory */ private $ruleFactory; /** […]
Magento 2.4.4. I am getting some configurable product model. $product = $block->getProduct(); I need to determine, whether this product has swatches or not. Thanks for any help.
Interview Process : Online Coding Technical Interview HR Round Round 1: Online coding test which consists of two questions First was the medium level which… Read More The post Tricentis Interview Experience (Off-Campus) appeared first on GeeksforGeeks.
Given string str, the task is to check whether the given string is a valid file extension or not by using Regular Expression. The valid… Read More The post Valid file extension checker using Regular Expression appeared first on GeeksforGeeks.
A queue is a linear data structure that follows the principle of First In First Out (FIFO). The first element added to the queue will… Read More The post Which Queue ensures uniqueness of the elements? appeared first on GeeksforGeeks.
What is Frequency Polygon? A frequency polygon is another way to show a frequency distribution on a graph. In addition to being an alternate for… Read More The post Frequency Polygon: Meaning, Steps to Draw and Examples appeared first on GeeksforGeeks.