btw_bartektw
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Collapsing Categories] open parent categoryHi, thanks for this plugin
One question. What can I do to see products included in first level category.
I have a situation: main category with one product, two subcategories with one product in every of them, all quantities is 3. Whatever I click I can not see products from main category.
Thank You for answer
Bartekin Your theme catalog:
wp-content/themes/YourTheme/functions.phpalso, You can edit this file by internal WordPress editor
menu path: Apperance – EditorIf something goes wrong with functions.php editing (You will get the error message on Your site)
remove Your function.php modification through some ftp client and editor (I’m using Total Commander or Notepad++ with ftp plugin)
…., read info at the top of function.php and try again ??
It have to workGood luck
Hi
in function.php put that code below
as You see, You can use it for every string on page and email also
in my case I have changed ‘subtotal’ to ‘Podsuma’ and ‘You are here’ to ‘Jeste? tutaj’
Regards
Bartek//string translate
add_filter(‘gettext’, ‘translate_reply’);
add_filter(‘ngettext’, ‘translate_reply’);
function translate_reply($translated) {
$translated = str_ireplace(‘You are here’, ‘Jeste? tutaj’, $translated);
$translated = str_ireplace(‘subtotal’, ‘Podsuma’, $translated);
return $translated;
}Nice …. but I have to ask.
When do You plan another version? ??