• Resolved oliverlehne

    (@oliverlehne)


    Hi there,

    i was searching for a smart and lightweight comparison table and found your free plugin. The comparison table widget almost suits my personal needs but i would like to disable the row with the prices. I guess i need some php code for that, but unfortunately i am an amateur in programming… Maybe you guys can help me out with finding a nice solution.

    Thank you very much!

Viewing 1 replies (of 1 total)
  • Plugin Contributor Hardik Sharma

    (@hardiksharma)

    Hi @oliverlehne,
    You don’t need any PHP code. You can do this by given below CSS. If you have added a feature heading then add this CSS to the widget.

    tbody tr:nth-child(2) .eae-ct-plan {
        display: none !important;
    }
    

    If you have not added feature heading then use this css.

    tbody tr:nth-child(2){
        display: none !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Comparison Table: Disable Price Row’ is closed to new replies.