How to use magento by using filezilla in case we have lost magento files in system.

First of all, install FileZilla in your system after installation open filezilla click on icon belo file menu and give connect click on the right side section and select the file of the below path /applications/psdbdsecye/public_html/app/design/frontend/JJ/Theme 3. select the files you needed from the app/design /theme and right-click and select edit and view and save… Continue reading How to use magento by using filezilla in case we have lost magento files in system.

Published
Categorized as Magento

How to add new blocks to a page in magento

First of all, write the code in the respective phtml file and then copy the content to the backend by creating a block in CONTENT-> BLOCK -> NEW BLOCK then call the block in the respective HTML file using the following code <?php echo $this->getLayout() ->createBlock(‘Magento\Cms\Block\Block’) ->setBlockId(‘nb_about_us’) ->toHtml(); ?>

Published
Categorized as Magento

Invoice QR Code Proposal

Proposal summary AMVOP would like to incorporate the recent updates from ZATCA regarding the QR Code of Invoices to match their norms and policies of E-Invoicing Regulations. Requirement Need to implement the recent updates from ZATCA on QR Code in the Invoice PDFs generated in Netsuite.  Our Solution Updates from ZATCA on QR Code Creation:… Continue reading Invoice QR Code Proposal

Editing Email template file for Sales Order

For making changes in email template for sales orders, like changing item images and item options. First we need to edit corresponding email template file. To open the file from the Netsuite account got to Setup>Company>Email>System Email Templates Then we can see the editing window, clicked on the below marked icon ‘div’ for viewing the… Continue reading Editing Email template file for Sales Order

Set address to a customer / contact from webstore

The customer method “addAddress(address)” can be used to set an address to a customer or contact from webstore in the suitescript file addAddress(address) Adds an address for current customer. Parameters address [required] {Object with values for fields} addressee [required] addr1 [required] addr2 [optional] addr3 [optional] city [required] state [required] country [required] zip [required] phone [optional] isresidential [optional] defaultshipping [optional] defaultbilling [optional] Returns String – key of added address.… Continue reading Set address to a customer / contact from webstore

How to add new blocks to a page

First of all, write the code in the respective phtml file and then copy the content to the backend by creating a block in CONTENT-> BLOCK -> NEW BLOCK then call the block in the respective HTML file using the following code <?php echo $this->getLayout() ->createBlock(‘Magento\Cms\Block\Block’) ->setBlockId(‘block name’) ->toHtml(); ?>

Published
Categorized as Magento

Shipping cost calculation in SCA

Shipping costs will be calculated for credit card-based(role-based) customers. For any shipment whose total value of the product is $150 or higher, the shopping cost will be 0. Any shipment value less than $150 will be charged shipping cost. Steps: Enabled SCRIPTABLE CART AND CHECKOUT in the website setup. A client script will be added… Continue reading Shipping cost calculation in SCA

Quick Add New Entry to Custom Body Sourcing Custom List – Role Permission

There is a requirement to restrict users from creating new entries from the Custom List. Solution: Navigate to Setup > Users/Roles > Manage Roles  Necessary Role: Click Customize/Edit Click Permissions Click Setup Permission: Select Custom Lists Level: Select View Click Save If we do this the user will not see the + button near the custom field. Note: All Administrators will still be able to add new list entries.… Continue reading Quick Add New Entry to Custom Body Sourcing Custom List – Role Permission