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

    (@geminilabs)

    1. Install the Code Snippets plugin
    2. Use one of the following snippets:

    Replace the <h3> tags with <p> tags

    add_filter( 'site-reviews/review/build/after', function( $fields ) {
         $fields['title'] = str_replace( 'h3>', 'p>', $fields['title'] );
         return $fields;
    });

    Replace the <h3> tags with <strong> tags

    add_filter( 'site-reviews/review/build/after', function( $fields ) {
         $fields['title'] = str_replace( 'h3>', 'strong>', $fields['title'] );
         return $fields;
    });

    Remove the <h3> tags completely

    add_filter( 'site-reviews/review/build/after', function( $fields ) {
         $fields['title'] = str_replace( ['<h3>','</h3>'], '', $fields['title'] );
         return $fields;
    });
    Thread Starter john9999

    (@john9999)

    Ehi there,

    thank you very much for your prompt reply.
    Quite clear. We are working on it.
    Amazing plugin and amazing support.
    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Heading Tags in plugin reviews’ is closed to new replies.