What is my magento admin login url
May 13, 2022
Run the following command to see Magento admin login url php bin/magento info:adminuri You can also view the Admin URI in <your Magento install dir>/app/etc/env.php…. Read More →
May 13, 2022
Run the following command to see Magento admin login url php bin/magento info:adminuri You can also view the Admin URI in <your Magento install dir>/app/etc/env.php…. Read More →
May 13, 2022
Object Manager Method to get date of tomorrow in magento2 : $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $objDate = $objectManager->create(‘\Magento\Framework\Stdlib\DateTime\DateTime’); $date = $objDate->date(‘Y-m-d’); $nextdate = $objDate->date(‘Y-m-d’, strtotime($date.” +1… Read More →
May 13, 2022
Magento 2 log : Replacement for Mage::log method protected $logger; public function __construct(\Psr\Log\LoggerInterface $logger) { $this->logger = $logger; } //Show $this->logger->info($message); $this->logger->debug($message); In magento2… Read More →
May 13, 2022
WordPress author page Linking to Author Pages from Posts <p>Written by: <?php the_author_posts_link(); ?></p> List of Authors with Links <h2>List of authors:</h2> <ul> <?php wp_list_authors(); ?> </ul>… Read More →
May 13, 2022
The Loop <?php if ( have_posts() ) { while ( have_posts() ) { the_post(); <!– Test if the current post is in category 3. –>… Read More →
How to Disable Gutenberg and Keep the Classic Editor in WordPress Install and activate the Classic Editor plugin. Go to the Settings » Writing page… Read More →
Understanding jQuery Integration in Magento 2 Magento 2 has revolutionized eCommerce development by implementing a sophisticated JavaScript framework that leverages jQuery and RequireJS for enhanced… Read More →
May 12, 2022
jQuery remains a cornerstone for enhancing frontend interactivity in eCommerce platforms, and its seamless integration within Magento 2 empowers developers to build dynamic user experiences… Read More →
Unix zip directory but excluded specific subdirectories Use the following code on terminal zip -r myarchive.zip dir1 -x “dir1/ignoreDir1/” “dir1/ignoreDir2/“
Understanding the Magento 2 SessionHandler::read() Warning Error The SessionHandler::read() warning error is one of the most frequently encountered issues when developers migrate, install, or configure… Read More →