• Hi there! Great plugin!

    I would like to only use the toggler on my pages. Everything else messes up my course layout and design, and I really only need the toggler and to be able to see the progress of users. Is there a way to disable all other buttons/menus from showing up? I feel comfortable editing code if you give me exact instructions :-).

    Also, not related, but is there a way to clear all stats so all users/pages go back to zero progress in the User and Page summary.

    Thank you very much! Cheers, Neta

    https://wordpress.org/plugins/progress-tracker/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Alex Furr

    (@alexfurr)

    Hi,

    Glad you’re finding it useful!

    You can remove the button nav with the following CSS:

    div#ptrackerNav {
        display: none;
    }

    Do use a CSS plugin or add it to your theme. Let me know if you need more help with that.
    You can remove the quick jump menu from the Progress Tracker settings page.

    At the moment you can’t clear the stats page but thats a great idea so wil add it to the next release.

    Thread Starter nt249

    (@nt249)

    Hi Alex! thanks so much for the reply and sorry for the delay in getting back to you!

    I am using Divi so there is a built-in CSS area. I put the code in after the rest of my CSS but nothing happened. So I removed the rest of the code and left only the code you gave me and then it did work! It’s very little code, can you help me understand what is conflicting (see the code below)? Also, the option to remove the quick jump is available, but I want to move the subpage list that is on the parent page and there is no option for that (just choosing the top or bottom position). Lastly, I also wanted the “Click here to start” button removed. Like I said 🙂 I really ONLY want the toggler on each page, NOTHING else (I mean the percentage progress bar can remain but nothing else other than the toggler). SOOO sorry to bother you with this, I understand if you can’t help!

    #footer-info {display:none;}
    :not(.et_pb_fullwidth_section).et_pb_section {
    padding-top: 25px !important;
    padding-bottom: 25px
    #main-header { display:none; }
    #page-container {
    padding-top:0px !important;
    margin-top:-1px !important
    }
    div#ptrackerNav {
    display: none;
    }

    Plugin Author Alex Furr

    (@alexfurr)

    Hi,

    I’ve no idea why there would be a conflict with the other CSS, there doesn’t appear to anything that should cause it to fail.

    Basically, to hide anything you need to identify the element that its in, typically a div element. THen apply the display:none css.

    So to remove the mini menu on the page page add this:

    div#learningObjectSubPageMenu {
        display: none;
    }

    you could trying adding

    div#ptrackerNav {
        display: none !important;
    }

    to the CSS which may work – simply adding the ‘important’ bit can override other styles that are interfering.

    Alex

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Disable all buttons/menus except the Completed Toggler one’ is closed to new replies.