How to remove Shopify form powered by Hulksapp

How to remove Shopify form powered by Hulksapp

lossa
Excursionist
13 0 5

Hi anyone have any idea if i can remove the "Shopify form powered by Hulksapp" from the page?

I am using Dawn V15. Here is the link to the page of my website: 

https://www.theluxurydeal.com/en/pages/vendre-avec-nous

 

Thank you for your help 🙂 

 

Capture d’écran 2024-07-17 à 16.45.10.png

Replies 5 (5)

Asad-Mahmood
Trailblazer
156 33 38

Go to your online store -> edit code -> theme.liquid file and paste this script in the end of file

<script>
function hideElements() {
    var elements = document.getElementsByClassName('hulk-powered-wrapper text-right');
    for (var i = 0; i < elements.length; i++) {
        elements[i].style.display = "none";
    }
}
var observer = new MutationObserver(function(mutations) {
    mutations.forEach(function(mutation) {
        hideElements();
    });
});

var config = { childList: true, subtree: true };
observer.observe(document.body, config);
hideElements();

</script>
If my solution has been helpful, you can consider supporting me via Buy Me a Coffee.
Hire me: asadmahmood8470@gmail.com
WhatsApp





lossa
Excursionist
13 0 5

hi there, thank you for your help. I have copied what you suggested but the "powered by hulkapps" is still there as you can see : 

https://www.theluxurydeal.com/pages/vendre-avec-nous

 

Should I copy paste it somewhere else? 

 

The form on that page was made with the "hulkapp" app so when we are using the free version it leaves this sentence at the end of the form.  "powered by hulkapp". 

 

What do you suggest to do in order to remove it ? 

 

Thank you! 

Made4uo-Ribe
Shopify Partner
7781 1882 2308

Hi @lossa 

Do you mean remove this one? 

Made4uoRibe_0-1722802723726.png

If it is, check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

div.footer__content-bottom.scroll-trigger.animate--slide-in > div:nth-child(2) > div > small:nth-child(2) {
    display: none;
}

 

And Save. 

Result:

Made4uoRibe_1-1722802836356.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
lossa
Excursionist
13 0 5

hi there, thanks for your reply.  However this is not what I was willing to remove. I would like to remove the "Shopify Forms Powered by HulkApps" on the form that is on this page : https://www.theluxurydeal.com/en/pages/vendre-avec-nous

 

I have tried what the other user has suggested however it did not work... I am in real need of help. Watched many youtube videos, forums but seems like nothing works. 

Made4uo-Ribe
Shopify Partner
7781 1882 2308

Oh, i didnt see that. check this code it if work. If not you need to contact the app provider to remove this. 

Same Instruction. 

 

p.hulk-powered-wrapper.text-right {
    display: none !important;
}

 

And Save. 

Result:

Made4uoRibe_0-1722876225749.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.