Issue User is experiencing “Error Parsing XML: The entity name must immediately follow the ‘&’ in the entity reference” whenever it triggers the script that prints the name of the Customer. Solution This error is caused by the ‘&’ in the Customer name of record wherein the script is reading this as an operator. In order to… Continue reading XML Parsing Error in the Script
Month: April 2022
PVB – Parked Vendor Bill List – update of status
Description We have a custom record named Parked Vendor Bill and need to perform the following changes to the account. We will add a new script to make the comparison between item receipt and vendor bill in the parked vendor bill. If based on the comparison a particular item receipt is fully billed, we will… Continue reading PVB – Parked Vendor Bill List – update of status
Limiting characters of description in every line of the PDF Template.
If the numbers of characters have to to limit to particular numbers in the every line in the pdf template use substring(from,toExclusive) function.
How to Set & Remove Cookie in React
Install Cookie Package & Config We’ll use the react-cookie package. It’s very popular. Run the below command to install it: Now we have to import the CookiesProvider component from the react-cookie package and wrap your root app component with it. Set Cookie To set a cookie, we need to import the useCookies() hook from the react-cookie package. Access Cookie We can retreive the user cookie… Continue reading How to Set & Remove Cookie in React
Steps To Create a Promotion Feed Record
1.Go to Go to Lists > Feeds > Product Feeds > New. 2.In the Name field, enter a title to help you identify the promotion feed.This is particularly useful if you need to create several promotion feeds to separate your items into smaller product feeds. 3.In the Feed Description field, you can add a detailed… Continue reading Steps To Create a Promotion Feed Record
Difference between Scss and CSS
Features CSS SCSS Definition CSS is a scripting language that is used to develop a web page. The more advanced variant of CSS is SCSS. It is a pre-processor language that is compiled or interrupted into the CSS. Functions It contains common functions. It contains more advanced features. Code It uses an extensive line of… Continue reading Difference between Scss and CSS
Color Palettes Subtab
From the Color Palettes subtab on the configuration record, you can configure the color palettes to use for facets. You can use either images or any valid CSS color value. The Color Palettes subtab lists the default color palettes. You can use the default color palettes or you can configure your own. Before you configure… Continue reading Color Palettes Subtab
Adding Details of Related Credit Memo In Sales Order Record
The client wants to add the related credit memo details with the link of credit memo page of invoices originated from sales order. To add the the credit memo details we need to add a saved search and link this in a sublist of the sales order record. But we can’t add the credit memo… Continue reading Adding Details of Related Credit Memo In Sales Order Record
Importance of Alt Text in SEO
Alternative Text for Images is referred to as alt text. Picture alt text is used to describe what is in an image for those who use a screen reader to view a website. Why is alt text important? 1. Accessibility – A fundamental of accessible web design is alt text. Its initial (and still major)… Continue reading Importance of Alt Text in SEO
Using CheckBoxes for products in PLP Page -magento
Here we are trying to use checkboxes for the products and select a product individually from the list All the opertions are taking place at Magento_Catalog/product/list.phtml Here is script for making a single selection of the product: we also need to link a jqurey api of cloudflare for this functionality. it is linked using require.js… Continue reading Using CheckBoxes for products in PLP Page -magento