-
AuthorPosts
-
May 31, 2016 at 11:33 am #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)
June 1, 2016 at 12:57 pm #641437Hey 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,
AndyJune 7, 2016 at 1:42 pm #644042thanks for your answer… i want to change the content of the H1 headline. I cant find it..Can you help please?
best regards
Chris
June 7, 2016 at 2:09 pm #644063Hi,
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,
AndyJune 8, 2016 at 8:40 am #644609Hi,
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
June 8, 2016 at 12:38 pm #644775Hi,
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,
AndyJune 10, 2016 at 3:41 pm #646251hey, yes take a look (user details are in the private content)
Thanks
June 11, 2016 at 12:45 am #646435Hi,
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,
AndyJune 14, 2016 at 7:58 pm #648225so… 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
June 15, 2016 at 9:07 am #648481i 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.
June 17, 2016 at 5:28 am #649561Hi,
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,
IsmaelJune 17, 2016 at 6:50 am #649606Hi Ismael,
thanks for your answer. I want to change the content of the h1 headline…How can i do that?
best regards
Chris
June 17, 2016 at 7:20 am #649623Hi!
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!
BasilisJune 17, 2016 at 7:46 am #649627i 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
June 17, 2016 at 5:05 pm #649890Hi,
go to Enfold->Shop Options->Shop Description
and adjust it as needed.Best regards,
AndyJune 20, 2016 at 10:51 am #650724thanks… that was it…
June 21, 2016 at 12:40 am #651146Hi,
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 -
AuthorPosts
- The topic ‘change woocommerce shop overview site ?’ is closed to new replies.