I
I
ivansalyga2018-09-26 22:47:52
WordPress
ivansalyga, 2018-09-26 22:47:52

How do I replace the Font Awesome icon with text that can be linked to a translation file?

if ( wp_is_mobile() && $wr_nitro_options['wc_archive_mobile_sidebar'] ) {
      echo '<a href="javascript:void(0);" class="wc-show-sidebar bts-40 nitro-line btb mgl10"><i class="fa fa-sliders" aria-hidden="true"></i></a>';
    }

How to replace fa fa-sliders with Filter text linked to wr-nitro language file?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
Pavel Chesnokov, 2018-09-27
@cesnokov

if ( wp_is_mobile() && $wr_nitro_options['wc_archive_mobile_sidebar'] ) {
      echo '<a href="javascript:void(0);" class="wc-show-sidebar bts-40 nitro-line btb mgl10">' . __( 'Filter', 'TextDomain' ) . '</a>';
}

TextDomain - unique translation identifier

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question