Page title problem with WP e-Commerce
-
I use the WP e-Commerce shopping cart plugin.
For example in the Products menü (“Termékek” in hungarian)/ Mineral jewelry (“Ãsvány ékszerek”) / Bracelets (“KarkötÅ‘k”) as the name of the page displays the first name of the product. It’s quiet disturbing.
See this link (picture):
http://web.t-online.hu/aczeltamas01/Graphene_Theme.html
Earlier version of the Graphene Theme that was not in it.
Does anyone have any idea?
To roll back to the previous version title settings, https://forum.graphene-theme.com/graphene-support/meta-title-tags-being-rewritten#post-18587
I looked at what you recommended, but I don’t know exactly what should I do.
Where to insert it?
/**
* Disable the theme's title modification feature
*/
function my_remove_filter(){
remove_filter( 'wp_title', 'graphene_title' );
}
add_action( 'init', 'my_remove_filter' );http://web.t-online.hu/aczeltamas01/Graphene_Theme.html
Please tell me exactly what I need to modify.
Thanks in advance!
Add this to your child theme’s
functions.phpfile. Not in parent theme’sfunctions.phpfile.<?php
/**
* Disable the theme's title modification feature
*/
function my_remove_filter(){
remove_filter( 'wp_title', 'graphene_title' );
}
add_action( 'init', 'my_remove_filter' );
?>There will be no child theme by default. You have to setup one manually.
Customisation using a child theme – http://wiki.khairul-syahir.com/graphene-theme/wiki/Customisation_using_a_child_theme
Many thanks for your help!
I have succesfully created a graphene child theme.
I inserted that you wrote to me to the child theme’s function.php, see the picture:
http://web.t-online.hu/aczeltamas01/Graphene_Theme.html
But the problem still exists.
Any idea?
Clear browser cache and, if you are using a caching plugin, flush them too.
I cleared all of the browser cahce, and switch off all of the plugins.
But the problem is same.
I use only this plugins: sidebar login, wpsc-simple-shipping, and wp e-Commerce.
Just to clarify what I want:
The products/product subcategory page not display the subcategory name, but display the first product name of the subcategory.
I would like to display the subcategory name on the subcategory page.
Viewing 10 posts - 1 through 10 (of 12 total)
- 1
- 2
- You must be logged in to reply to this topic.
