Micha?
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Translating BreadcrumbsI’m glad I could help.
Forum: Themes and Templates
In reply to: [Customizr] Translated missing wordsHi,
try to rename
fr_FR.mo
tocustomizr-fr_FR.mo
(the same with .po but this is not necessary) and copy to the folderwp-content/languages/themes
.Regards
Micha?Forum: Themes and Templates
In reply to: [Customizr] Translating BreadcrumbsHi,
If you use child theme you have two ways for save your translation files from deleting during upgrade the theme.
First way (simpler)
1. Rename your files:
mr.mo
->customizr-mr.mo
mr.po
->customizr-mr.po
2. copy the files here:
wp-content/languages/themes
Second way (if you want to have all your work in the child folder)
1. Create or edit the filefunctions.php
in the folderwp-content/themes/your_child_theme
and add this code:add_action( 'after_setup_theme', 'my_child_theme_setup' ); function my_child_theme_setup() { load_child_theme_textdomain( 'customizr', get_stylesheet_directory() . '/inc/lang' ); }
For creating/editing use some program like Notepad++ with option “UTF-8 without BOM”.
2. copy your files
mr.mo
andmr.po
here:
wp-content/themes/your_child_theme/inc/lang
Try both ways looking at the “Home” textstring. It is possible you will see this string in your language using the first way. Sometimes translations works differently depending on the location of po/mo files.
Regards
Micha? MaciejewskiPS. I forgot – you can also try to rename
mr.*o
tocustomizr-mr.*o
in the folderwp-content/themes/your_child_theme/inc/lang
PS.2 read also this.
PS.3 if you want to replace the string “Home” with the Font Awesome icon, read this. (It’s about another theme, but Customizr is Font Awesome-ready I suppose.
- This reply was modified 7 years, 2 months ago by Micha?.
- This reply was modified 7 years, 2 months ago by Micha?.
- This reply was modified 7 years, 2 months ago by Micha?.
- This reply was modified 7 years, 2 months ago by Micha?.
- This reply was modified 7 years, 2 months ago by Micha?.
- This reply was modified 7 years, 2 months ago by Micha?.
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Untranslatable stringsHi,
Thank you very much. Only one thing: in the line 1497 (ver. 3.12.1) now we have
<?php _e('Do not use CSS for button styles'); ?>
should be:
<?php _e( "Do not use CSS for button styles", $this->hook ); ?>
Regards
Micha?Hi Gareth,
in the file class-plugin-usage-tracker.php ver. 2.3.2 I see (in all places, listed in the first post) textdomains others than ‘uk-cookie-consent’. Is this correct?
Regards,
Micha?Forum: Plugins
In reply to: [Max Mega Menu] Translating problems with ver 2.3.5Thank you.
An email posted through your site’s form.
Regards
Micha?- This reply was modified 7 years, 8 months ago by Micha?.
OK, I’ll be waiting, thank you!
Regards
Micha?Forum: Plugins
In reply to: [Hueman Addons] Customizer in multi-user installationsIt’s OK now! Thank you very much.
Forum: Themes and Templates
In reply to: [Hueman] More flexible post-bylineOK, thank you.
Forum: Plugins
In reply to: [Hueman Addons] Customizer in multi-user installationsSorry, forgot – I use the newest FF.
Forum: Themes and Templates
In reply to: [Ignite] Customizing the first breadcrumbThank you again Ben ??
Now some css can show the Home icon from FontAwesome:
.item-home {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}.bread-home:before {
content: “\f015”;
}Code above is from FontAwesome.
Leaving empty string:
‘New Text’ –> ”
shows only the Home icon.
Forum: Plugins
In reply to: [Easy Google Fonts] Offering a few adjustmentsThank you very much.
MMI’m sorry. I don’t know how I could be so stupid. Maybe tired. Wrong plugin! Not the YARPP – wp-Typography. Sorry. But the subject is still valid.
Forum: Themes and Templates
In reply to: [Ignite] Breadcrumbs vs. sidebarWorks great! Thank you Ben, also for the speed of your reaction ??
Forum: Themes and Templates
In reply to: [Ignite] Breadcrumbs vs. sidebarThis is good, but not for home page, where breadcrumbs aren’t displayed.
Maybe breadcrumbs must be displayed always, but on the homepage with visibility:hidden? Don’t know how to code this.
Thank you anyway ??