To disable the notification message on the order success page.On the Success.phtml file add these script Thank you.
Author: Arun T
Stripe configuration in a page
When we need to place stripe payment on the custom as well as the checkout page we need to configure the stripe on the page. Simplest way to configure a stripe on a page is It will dispay a stripe payment button on page. While click on the button stripe payment popup will display and… Continue reading Stripe configuration in a page
Big post Integration with Magento2.4.5
Based on the customer’s requirements we have checked the possibility to add integrate Bigpost with Magento2.4.5 We have analyzed the request to integrate Bigpost with Magento2.4.5 and we can implement this feature in the website. We understand from the information that the feature to display shipping cost/freight cost is available on three pages such as… Continue reading Big post Integration with Magento2.4.5
Enable temporarily disabled admin account
Sometimes our admin account will be disabled when we try several times with the wrong credentials. So to enable this account we could use the commands.php bin/magento admin:user:unlock ADMINUSERNAME Thank you.
Add google analytics code in magento2
To add google analytics code in Magento2Log in to Magento Backend On the Admin sidebar, go to Stores > Settings > Configuration. In the left panel, expand Sales and choose Google API. Expand the Google Analytics section and do the following: Set Enable to Yes. Enter your Google Analytics Account Number. If you want to conduct A/B testing and other performance tests on your content, set Content Experiments to Yes. When complete, click Save Config.
KC and TFS website, change of freight services – TransFreight
The freight cost configuration to the Magento with an external API provider TransFreight.
Remove the bestseller products in Magento
The bestseller products are saved on the basis of yearly, monthly, or daily basis. So if we would need to remove those products, then we could remove it from the tables.The best-seller tables are sales_bestsellers_aggregated_yearlysales_bestsellers_aggregated_monthlysales_bestsellers_aggregated_daily By truncating of these tables we could remove the best seller products
How to manage custom attribuets in magento2
To manage the custom attributes,Go to the magento stores->products section. There can add new attributes needed fro the product and will able to magento. The type of the attribute also able to manage from there Thank you.
Add featured product in magento2
Default Magento don’t have a featured product section so we will use the custom filed for the management of featured product. Using custom extension will create a featured field in the magento2 backend product section and using it value the feature list will be created. Thank you.
How to set up new products in magento2
Setup the new products There is an option on the Magento to set the new products. Then programmatically will fetch the new products collection on the frontend and list the new products data. Thank you.