• Resolved Affinity Design

    (@shadowinflux)


    Hi Alex,

    This plugin is fantastic! Functions well. Saving me big bucks compared to other offerings.

    I’m wondering if its possible to remove the “Start button” and separator lines that appear on the parent page.

    Is there a CSS code that can be used remove this?

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Affinity Design

    (@shadowinflux)

    I have solved this!!! For future user with the same inquiry. Just add the following code to your themes “Custom CSS field” or page builders “Custom CSS feild” if they have one. ( I am useing elementor)

    This will hide the “Click to start here button” //

    .pure-button-primary { 
        visibility: hidden; }
    .pure-button { 
        visibility: hidden; }

    This will clear any separator mark up by your theme //

    hr {
        clear: both;
        visibility: hidden;
    }
    
    Plugin Author Alex Furr

    (@alexfurr)

    Hi – apologies for the delayed reply, been away on holiday.
    Your CSS would certainly work, but may remove buttons in other areas of the site.
    A more specific class would be

    .ptracker-start-button { 
        visibility: hidden; }
    

    Any issues let me know….
    Alex

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove “Start Button” on parent page’ is closed to new replies.