Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #640834

    Hi,

    i use the archive-product.php template-file to design the shop overview page. But in this file i cant change the h1 headline. i Think you use a hook to define this h1 headline on this page. Can you please say me how can i change the H1 headline on the following site? (look to private section)

    #641437

    Hey Chris_85,

    you can change it via css using this code inside of Quick CSS field:

    #av_product_description h1 {
    font-family: 'Helvetica';
    font-size: 10px;
    }
    

    Adjust it as needed.

    Best regards,
    Andy

    #644042

    thanks for your answer… i want to change the content of the H1 headline. I cant find it..Can you help please?

    best regards

    Chris

    #644063

    Hi,

    I don’t get what you mean. If you want to change the H1 content of your headline, then just edit it inside your backend. Simply choose a different title.

    Best regards,
    Andy

    #644609

    Hi,

    when you look on this page: http://www.auto-ribbe.de/de/fahrzeuge/neu-jahres-und-gebrauchtwagen/ You can see the h1 headline. But in the backend i didnt found a place where i can change it. It is the woocomerce shop overview page. In the Backend unter pages it is no possible to change the h1. Where can i do this?

    best regards

    Chris

    #644775

    Hi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • the URL to the login screen
    • a valid username (with full administration capabilities)
    • as well as a password for that username

    Best regards,
    Andy

    #646251

    hey, yes take a look (user details are in the private content)

    Thanks

    #646435

    Hi,

    not sure where this headline is coming from, but we can handle theme related issue only here in this forum. Activate a default WP theme to check if this headline stays or not and let us know about your results. Maybe you’re using any template files.

    Best regards,
    Andy

    #648225

    so… ich checked all the woocommerce template files. The product-archive.php is the template for this site: http://www.auto-ribbe.de/de/fahrzeuge/neu-jahres-und-gebrauchtwagen/ But in this template i cant change the h1 headline. Also the support from woocommerce said it must be a theme thing… So please can you check where the h1 from this site is comming from?

    best regards

    Chris

    #648481

    i think the h1 headline comes from the php file config.php in the folder config-woocommerce, right?

    update:

    i found the php code (in the config.php) for the headline for the shop overview page:

    $output .='<div class="container">';
    	$output .='<main class="template-page content av-content-full alpha units">';
    	if($description) $output .= "<h1>".$description."</h1>";
    	$output .='</main></div></div></div>';
    	
    	return $output;
    }

    But what is the description? Where can i find it in wordpress?
    can i change “description” in “title” or something else?

    • This reply was modified 8 years, 5 months ago by Chris_85.
    #649561

    Hi,

    Are you trying to change the h1 tag to something else? Please add this in the functions.php file:

    add_filter('avf_title_args','avia_title_args_woopage_mod', 10, 4);
    function avia_title_args_woopage_mod($args)
    {
    	if(is_shop())
    	{
    		$args['heading'] = "h2";
    	}
    
    	return $args;
    }

    Adjust the heading value.

    Best regards,
    Ismael

    #649606

    Hi Ismael,

    thanks for your answer. I want to change the content of the h1 headline…How can i do that?

    best regards

    Chris

    #649623

    Hi!

    Can you define what you need by content?
    The content of the headline is the title of the product, so you have to edit and change it from there.
    IS that correct?

    Let us know please exactly where the issue is located or you need to do, so we can be able and provide some informations

    Cheers!
    Basilis

    #649627

    i want to change the content (Neu- Jahres und Gebrauchtwagen) of the H1 headline on the shop-overview-page: http://www.auto-ribbe.de/de/fahrzeuge/neu-jahres-und-gebrauchtwagen/

    But in the wordpress backend there is no way to change it. Also in the Woocommerce Template for this site i dit not found a way.
    But i found a php code in the enfold Theme for that (look above). How can i change the headline?

    best regards

    Chris

    #649890

    Hi,

    go to Enfold->Shop Options->Shop Description
    and adjust it as needed.

    Best regards,
    Andy

    #650724

    thanks… that was it…

    #651146

    Hi,

    glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Best regards,
    Andy

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘change woocommerce shop overview site ?’ is closed to new replies.