Create a HTML page for the append Script for appending the code For each object with content need to be filled. Thank you.
Author: Arun T
How do post data from a form to a PHP file using Ajax
Create a PHP file for creating the form write js script for Ajax request Create rma-submit.php file $post_data will receive all the values sent from the form Thank you.
MetaSlider PHP Code Intgeration on wordpress
As per the requirement, we have analyzed and researched the implementation of Meta Slider in the Thermogard WordPress website. By including the PHP code in the theme file, we can test it out and see how well it works with the website’s current theme. It takes around an hour to complete. If the implementation does… Continue reading MetaSlider PHP Code Intgeration on wordpress
Using Rest API Disable the listing of products of the subcategories on the parent category in magento2
There is Rest API to create and update the categories in Magento. Using one attribute we can disable and enable showing the products of sub-categories on the parent category page in magento2That can be done using This will disable the listing of products on parent category. This will enable the listing of products in the… Continue reading Using Rest API Disable the listing of products of the subcategories on the parent category in magento2
Using Rest API how to set page layout for categories in magento2
There is Rest API to create and update the categories in the Magento.USe using one attribute we can change the layout of the category PLP listing.That can be done using Using this the page layout will in 3 column structure for the Product listing section on the category page Thank you.
How to align two contents in the same horizontal line in DOM pdf on magento2
Solution The advanced CSS are not supported in the DOM pdf creator extension in magento2.So we have to find an alternative method to show the contents in the same horizontal line. So for this, we can use a table structure. The structure should be Through this, we can align contents horizontally on the same line… Continue reading How to align two contents in the same horizontal line in DOM pdf on magento2
How to update multiple invoices array.
Solution We can use the foreach to update the multiple invoices array. On the constructor use the function On the execute function foreach each invoice and set the value. So through this, we can update multiple invoices. Thank you.
The visible function from the knockout template to knockout js
The way to link the visible function from the template and js file Thank you.
On the checkout get the customer’s details on the js file
The customer data can be received on the js file using the method ‘Magento_Customer/js/model/customer’ Using this we can fetch the customer data on the checkout js. Thank you.
Disable shipping block on the cart
To disable the shipping block on the cart summary. Override the checkout_cart_index.xml file to theme or extension. After body add these lines Using the componentDisabled attribute we can pass true or false to enable and disable the shipping method block from the cart summary. Thank you.