• Resolved mtnerd

    (@mtnerd)


    When a visitor confirms their subscription, the subscription confirmation page appears. Unfortunately, it shows all the previous subscription confirmation messages as well. It’s rather a mess. Is there anyway to clean it out so that only one instance of the subscription confirmation message appears on the page?

    Thanks for your help.
    Debra

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

Viewing 1 replies (of 1 total)
  • Hi @mtnerd ,

    Go your theme customizer (dashboard->Appearance->customize->Additional CSS) and then paste these CSS codes –

    div[data-rsssl] .post {
        display: none;
    }
    
    div[data-rsssl] .post:first-of-type {
        display: block !important;
    }

    It should hide all the other messages except for the first one.

Viewing 1 replies (of 1 total)

The topic ‘Subscription Confirmation Page Formatting Problem’ is closed to new replies.