BigPost is a shipping carrier that provides a REST API for developers to integrate their shipping services into e-commerce platforms. To integrate BigPost API with Magento, you can follow these general steps: -Obtain API credentials: You need to register with BigPost and obtain API credentials such as API Key, API Secret, and Merchant ID. -Install… Continue reading Bigpost Integration with Magento 2
Category: Magento
Append options to a select tag from an API response
Here is an example to append options to a select tag from an API response in jquery foreach This can be also done by foreach on php but sometimes we may need js or jquery to append data upon some conditions.
Questionnaire for Magento Integration.
This is a Magento integration questionnaire that assists in identifying the client’s NetSuite account and business process. These inquiries are about determining the item sync, inventory sync, category sync, address book sync, customer sync, item fulfillment sync, and invoice sync. The developer might utilize these surveys to ask questions during the initial sessions. If the… Continue reading Questionnaire for Magento Integration.
Magento 2 api – How to get layer navigation filters available in rest api?
get layer navigation data available in product collection ( current category , search product ) . To get layer navigation from the API Sample Output will be :
Custom Attribute’s Value Null at Frontend
Admin backend that attribute has value but in Frontend its NULL
Creating a FlipHTML5 product catalog on the website
If we have a PDF file as a product catalog we can easily create flip HTML. To create a flip catalog, you will need to add interactivity to your pages. There are many tools available online that can help you create flip catalogs, such as FlipHTML5, Yumpu, and Issuu. Upload your catalog: Once you have… Continue reading Creating a FlipHTML5 product catalog on the website
Passing a value from JS to PHP as a parameter
In some cases, we may need to pass data from an input field or template file to the PHP controller. There are different methods like form submission and calling the field by $_GET or $_POST functionshere we used the real-time scheme to pass value directly through PHPThis can be achieved using the following code, here… Continue reading Passing a value from JS to PHP as a parameter
Category as Ecommerce: Magento Coding Standard
Literal Namespace Rule For class name resolution, use the Class keyword instead of a string literal for every class name reference outside of that class. This includes references to: Fully qualified class name Imported/non-imported class name Namespace relative class name Import relative class name example: Addition Formatting Standard When you declare an anonymous function as… Continue reading Category as Ecommerce: Magento Coding Standard
keyframes
The @keyframes rule specifies the animation code. The animation is created by gradually changing from one set of CSS styles to another. During the animation, you can change the set of CSS styles many times. Specify when the style change will happen in percent or with the keywords “from” and “to”, which is the same… Continue reading keyframes
Mirroring Effect on Text.
How to add mirroring animation over text <script src=”https://unpkg.com/scroll-out/dist/scroll-out.min.js”> </script> <script src=”https://unpkg.com/splitting/dist/splitting.js”> </script> <span id=”jjrd-head-text” class=”text text–turning” data-scroll=”out” data-splitting=””>ERP + eCommerce</span> /* transform */ .jjrd-benefits .text .char { display:inline-flex; -webkit-animation-delay: calc(0.25s + var(–char-index) * 0.1s); animation-delay: calc(0.25s + var(–char-index) * 0.1s); transition: all 0.25s calc(0.25s + var(–char-index) * 0.1s); }. .jjrd-benefits .text–turning [data-scroll=’out’] .char {… Continue reading Mirroring Effect on Text.