How To

Magento 2: Check if the Current URL is HomePage

Hello Magento Friends,

Today I am going to explain How to Check if the Current URL is HomePage in Magento 2.

If you are not sure whether a current page is a homepage or not, this article will guide you to check the current URL in Magento 2.

Steps to Check if the Current URL is HomePage in Magento 2:

Step 1: Use the below code in your block class

app\code\Vendor\Extension\Block\Homepage.php

<?php
namespace Vendor\Extension\Block;
class Homepage extends \Magento\Framework\View\Element\Template
{
   protected $logo; 
   public function __construct(
       \Magento\Backend\Block\Template\Context $context,
       \Magento\Theme\Block\Html\Header\Logo $logo,
       array $data = []
    )
   {  
       $this->logo = $logo;
       parent::__construct($context, $data);
   }
 
   // Check if current url is home page or not
    public function isHomePage()
    { 
       return $this->logo->isHomePage();
    }
}
?>

Step 2: Declare function in template (.phtml) file

app\code\Vendor\Extension\view\frontend\templates\ homepage.phtml

<?php

if ($block->isHomePage())
{
     echo “Hii ! This is Home Page.”;
}

?>

Conclusion:

This way simply you can Check if the Current URL is HomePage in Magento 2. Learn How to Configure Store URLs in Magento 2. In case of any difficulty, let me know via the comment part. Share the article and stay in touch with us for more Magento solutions.

Happy Coding!

Click to rate this post!
[Total: 3 Average: 5]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate 🎖️ Certified Magento Developer👨‍💻. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.🏏

Recent Posts

How to Integrate ChatGPT with Laravel Application?

In this guide, we'll explore how to integrate ChatGPT, an AI-powered chatbot, with a Laravel…

15 hours ago

What are Net Sales? How to Calculate Your Net Sales?

In the world of business, understanding financial metrics is crucial for making informed decisions and…

3 days ago

Magento 2 Extensions Digest April 2024 (New Release & Updates)

Welcome to the MageComp Monthly Digest, where we bring you the latest updates, releases, and…

3 days ago

The ABCs of Geofencing: Definition, Features and Uses

In this era, businesses are always on the lookout for ways to engage with their…

4 days ago

How to Delete Product Variant in a Shopify Remix App using GraphQL Mutations?

Managing a Shopify store efficiently involves keeping your product catalog organized. This includes removing outdated…

5 days ago

6 Innovative Tools Revolutionizing E-Commerce Operations

E-commerce has transformed the way consumers shop for products and services and interact with businesses.…

7 days ago