• Resolved drevovoni

    (@drevovoni)


    Hello,

    Is there any way to display some other text in PWB dropdown? There is “Brands” on the first position. I want to rewrite it, but have no clue how to do so.

    Thanks for answering

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

Viewing 1 replies (of 1 total)
  • Plugin Contributor titodevera

    (@titodevera)

    Hi drevovoni,

    You can use the pwb_dropdown_placeholder filter hook, adds the following code to your functions.php:

    
    /**
     *  Allows you to customize the dropdown widget placeholder (>= 1.7.4)
     */
    add_filter('pwb_dropdown_placeholder', function( $text ){
      return 'PWB rocks!';
    });
    

    Regards

    ??

Viewing 1 replies (of 1 total)
  • The topic ‘How to replace “Brands” text in dropdown’ is closed to new replies.