- Company
- About Us
- Career
Core Values
Fueling businesses with sustained digital capabilities, resilient products.
Team
Fueling businesses with sustained digital capabilities, resilient products.
Join our team
Fueling businesses with sustained digital capabilities, resilient products, and next-gen solutions.
- Services
- Mobile Apps
- Web Development
- AI & ML
- QA
Hire Dedicated Developers
Fueling businesses with sustained digital capabilities, resilient products, and next-gen solutions.
-
- Mobile
- Backend
- Frontend
- Database
- Design Tools
- JS Frameworks
- PHP Frameworks
- Python
Hire Dedicated Developers
Fueling businesses with sustained digital capabilities, resilient products, and next-gen solutions.
- Solution
- Product
- Business verticals
- Digital Marketing Tools
Join our Team
Fueling businesses with sustained digital capabilities, resilient products, and next-gen solutions.
- Insight
- RFQ
- Blog
- Contact Us
Magento
As Magento says don't change the core files, so there are two ways you can change core files and for Block/Helper/Model classes. Definations:- Override : When we use design fallback mechanism then we are doing override Rewrite : When we rewrite magento Core classes in our class then we are doing rewrite. Example of Override : If i need to…
Magento
Overwrite module phtml file and re-write in own theme Magento 2
Some day ago I am facing one issue in magento 2 with overwrite module's PHTML file in my custom theme, So here is the solution , Steps, Copy the Phtml file from module (For module location On template path hint) go to MAGENTO_ROOT/app/design/frontend/VENDOR/YOUR_THEME/MODULE_NAME/templates/filename.phtml Here MODULE_NAME is your module name from you copy the phtml file In my case its Magento_Search.…
Magento Uncategorized
Error after Magento 2 upgrade command
After firing this command from your terminal "php bin/magento setup:upgrade" If you get blank screen or your website crash and you get error in your log file, then just follow below steps to solve the issue. Here the simple steps are Delete the "di" folder located in var directory via cpanel or FTP Log into your terminal via ssh access…
Codeigniter General Magento MySQL PHP SEO Wordpress
N ideas to increase performance of website – Part 2
N ideas to increase performance of website - Part 2 The Ultimate Guide to Website Speed Optimization: On-Page and Off-Page Techniques Website speed is crucial for user experience and SEO. A fast-loading site improves engagement, reduces bounce rates, and ranks higher on search engines. This guide breaks down essential on-page and off-page optimization techniques to supercharge your website’s performance. On-Page…
Codeigniter General Magento MySQL PHP SEO Wordpress
N ideas to increase performance of website – Part 1
N Ideas to Increase Website Performance – Part 1 [caption id="attachment_24687" align="alignnone" width="696"] N ideas to increase performance of website – Part 1[/caption] Website speed matters. Fast-loading sites perform better across the board, offering a superior user experience, higher conversions, more engagement, and even better search rankings. Mobile traffic makes site speed even more important. After all, no one wants…
Uncategorized
HTML6 OverView
Section 1 - Introduction HTML5 was a great leap forward for web developers. It gave us all kinds of hip new tags like <header>, <nav> and <footer>. It also gave us slick new JavaScript APIs like drag and drop, local Storage, and relocation. Still, there is a void that HTML5 has yet to fill and that void is truly semantic…
JQuery PHP Wordpress
Make your WordPress Theme Retina Ready
How to Make Your WordPress Theme Retina-Ready [caption id="attachment_24771" align="aligncenter" width="664"] How to Create a WordPress Retina Ready Theme[/caption] Is your WordPress website ready for high-resolution displays? With retina displays becoming the standard on phones, tablets, and laptops, ensuring your WordPress theme supports these crystal-clear screens is crucial for user experience. Why Your WordPress Theme Needs Retina Support Retina display…
PHP
APC PHP Cache
APC stands for Alternative PHP Cache, and is a free open-source opcode (operation code) caching plugin for PHP. With APC setup on your server, your PHP script executions can be optimized to run more efficiently, by cutting down on needless dynamic PHP executions. Usage: STEP 1: Make a class say named “apc_caching.php” and place it in “classes” folder for…
Magento PHP
How to manage Session in Magento
Session in Magento can be implemented and managed by one of the following way File system. Database. Memcached. tmpfs Filesystem. Out of these 4 options, 2 options are available while installing Magento from which File system is by default selected. How to Add, Retrieve and Delete (unset) a Magento session? Add. Syntax to add Magento session Mage::getSingleton(‘{{type}}/session’) ->set{{SESSION_NAME}}(‘VALUE’); For e.g.…