How to remove effect by Dakaas tag on the bottom left of the screen

Solved

How to remove effect by Dakaas tag on the bottom left of the screen

thesummeracai
Tourist
7 0 2

Hi everyone, is there any way to remove the "effect by Dakaas" tag on the bottom left of the screen? Appreciate the help!

 

Website link: https://thesummeracai.com 

 

Screenshot 2024-09-25 212344.png

Accepted Solution (1)

Moeed
Shopify Partner
5346 1445 1730

This is an accepted solution.

Hey @thesummeracai 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
div#dakaasmark {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1727270977653.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 2 (2)

Moeed
Shopify Partner
5346 1445 1730

This is an accepted solution.

Hey @thesummeracai 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
div#dakaasmark {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1727270977653.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


Digiteon
Excursionist
10 2 1

To remove the "Effect by Dakaas" tag from your Shopify store, you can add the following code snippet to your footer.liquid file. Here’s how:

  1. Go to Online Store > Themes in your Shopify admin.

  2. Click on Actions > Edit code for your active theme.

  3. Open the footer.liquid file (found under Sections or Snippets).

  4. Look for the line that includes the "Effect by Dakaas" text. It might look something like this:

 

<div class="effect-by-dakaas">Effect by Dakaas</div>

 

 

You can either remove this line or comment it out by wrapping it with comment tags like so:

 

 

{% comment %}
<div class="effect-by-dakaas">Effect by Dakaas</div>
{% endcomment %}

 

 

Save the changes and preview your store to confirm the tag is gone.