• Resolved Anny Px

    (@annypaix)


    Hello, i want to remove “Exit mobile version” Text in the fooder, I saw here another forum with the same topic I added this command in the css but it didn’t change anything:

    #amp-mobile-version-switcher {
    display: none;
    }`

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Milind More

    (@milindmore22)

    Hello @annypaix

    Thank you for the support topic, It seems you are using JNews theme which has its custom AMP templates to serve the AMP pages.

    However, you are using a Legacy theme so adding the CSS in the customizer setting might not work on AMP pages.

    Can you please try adding the following code to your active themes functions.php file using FTP or the File tool of cPanel

    add_action( 'amp_post_template_css', function ( $amp_template ) {
    	// only CSS here please...
    	?>
    	#amp-mobile-version-switcher {
             display: none;
            }
    	<?php
    } );

    Let me know if that works for you.

    Thread Starter Anny Px

    (@annypaix)

    yes the change worked,
    now i wanted to understand why i’m having problem with the total poll plugin, could you see?

    or how could I remove it from the AMP version?

    https://prnt.sc/yltM9a423l1Z`

    Plugin Support Milind More

    (@milindmore22)

    @annypaix Please create a new support topic for different issue so that we can handle the case separately

    I’ll mark this as resolved Open a new support topic if you face further issues, also feel free to leave a plugin review, we would love to hear your feedback.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove “Exit mobile version” Text’ is closed to new replies.