• Resolved DougW

    (@dougw)


    Hi

    Is it possible to remove the wording…

    Difficulty level 2
    Word directions: any, including diagonal and backwards
    List of words that should be found: visible before found

    Thank you
    DW

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ccprog

    (@ccprog)

    Sorry, I didn’t see this question earlier – I suspect the forum uprade swallowed up my notification…

    There is no direct way to remove the level description, but you could hide it via CSS. Place a file crosswordsearch.css into the base folder of your active theme with the content:

    .crw-level { display: none; }

    This will hide the paragraph for both build and solve areas. Please note that this will not disable the level functionality, but only hide the explanation/selction element.

    If you want to hide it only for solve areas, the CSS rule would be:

    p + .crw-level { display: none; }

    If you want to hide it only for build areas, the CSS rule would be:

    form + .crw-level { display: none; }

    I hope this helps.

    Thread Starter DougW

    (@dougw)

    Hi

    Thank you very much, that worked.

    Doug

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove descriptive words from search page’ is closed to new replies.