What's your biggest current challenge? Have your say in Community Polls along the right column.

How can i remove powered by rivo in newsletter popup

How can i remove powered by rivo in newsletter popup

mohammadismail
Shopify Partner
6 0 0

Hello I am trying to remove powered by rivo from newsletter popup (First time visit) from shopify but cannot remove either from rivo app and from liquid if anybody can assist?

 

 

Screenshot_20231006_154850_Chrome.jpg

Replies 9 (9)

Artzen_tech
Shopify Partner
552 113 112

Hello @mohammadismail 
Its Artzen Technologies! We will be happy to help you today.


Please send your store url


Let me know if need further assistance
Regards,
Artzen Technologies

If helpful, please Like and Accept this Solution to help others
Artzen Technologies | A Shopify Development Agency
WhatsApp - 9877983930

Book FREE CONSULTATION who want to migrate to Shopify or want to start an eCommerce business with Shopify
mohammadismail
Shopify Partner
6 0 0

meowmine.myshopify.com

Password is admin

NadiaAnthony
Shopify Partner
76 11 17

Navigate to Online Store > Themes > [...] > Edit Code. Find the theme.css file in the Assets folder. Scroll all the way to the bottom/end of all the CSS code and make a new line. Add the following: 

.powered_by_rivo {
  display: none !important;
  opacity: 0 !important;
}

Unless you find the App provides a space for custom CSS. Then you can add it there.

I help brands bridge the gap between complicated code and clear communication.
mohammadismail
Shopify Partner
6 0 0

Hello Thank You.. but I added new line on theme.css but it didn't worked and still showing...

Artzen_tech
Shopify Partner
552 113 112

You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code.

Go Assets folder -> theme.liquid file.

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

<style>
#ba-widget-105751-modal .powered_by_rivo {
    display: none;
}
</style>
If helpful, please Like and Accept this Solution to help others
Artzen Technologies | A Shopify Development Agency
WhatsApp - 9877983930

Book FREE CONSULTATION who want to migrate to Shopify or want to start an eCommerce business with Shopify
mohammadismail
Shopify Partner
6 0 0

Hi I have added the above mentioned code in body in theme.css and its still not working..

Artzen_tech
Shopify Partner
552 113 112

Add this script code instead of first css code

 

<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function() {
    var iframe = $('#ba-widget-iframe');

    iframe.on('load', function() {
        var iframeDocument = iframe[0].contentDocument || iframe[0].contentWindow.document;
        var elementToHide = iframeDocument.querySelector('.powered_by_rivo');
        if (elementToHide) {
            $(elementToHide).hide(); // Use jQuery to hide the element
        }
    });
});
</script>

 

If helpful, please Like and Accept this Solution to help others
Artzen Technologies | A Shopify Development Agency
WhatsApp - 9877983930

Book FREE CONSULTATION who want to migrate to Shopify or want to start an eCommerce business with Shopify

Moeed
Shopify Partner
6359 1723 2084

Hey @mohammadismail 

 

Could you please provide your Store URL and, if applicable, the Password too? Your cooperation is greatly appreciated!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


mohammadismail
Shopify Partner
6 0 0

https://meowmine.myshopify.com/  

Password admin