Before you ask please READ THIS

How to remove page title

edited January 2014 in Superior Posts: 66
Hi i want to remove the name of the page from the <?php a13_title_bar(); ?>

How can i achieve that?

Im using the child theme

Thanks

Comments

  • AirAir
    Posts: 10,970
    Do you want to delete it on all pages?
    Will CSS solution satisfy you?

    With regards.
  • No, not displaying it via css wont be a solution, because is an SEO issue to have more than 1 H1, and because i want to have long H1, i would be forced to name the page as the H1, that being very inneficient

    Well, i would like to conserve it in some pages, but because i think its not possible, i thought of manuallly inserting the H1 later in those pages that are using it at the moment

    Thanks for your help!!!
  • AirAir
    Posts: 10,970
    If you will wait for version 1.5(we are waiting for approval on Themeforest, should be available in few hours) you will see something like this in advance/utilities.php~1546
    echo '<h1 class="page-title">';
                //woocommerce page
                if($shop){
                    woocommerce_page_title();
                }
                else{
                    echo $title;
                }
                echo '</h1>';
    and you can remove it.

    With regards.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!