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

Published
Categorized as Magento

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.

Published
Categorized as Magento

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

Published
Categorized as Magento

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.

Published
Categorized as Magento

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.

Published
Categorized as Magento