Thread Starter
Sergiy
(@se8pro)
and there is no option to disable the use of font-awesome from the module (for example, when it is already used in the site template)
optimization of loading and site load
Hello @se8pro,
We apologies for the inconvenience.
1) We acknowledged your issue and added it to our pipeline for the next release, but for now, you can add custom translated text in the “Home Text” field.
2) You can revoke the use of font-awesome by doing modifications. Please add the following code in the functions.php file in your activated theme.
add_action( 'wp_enqueue_scripts', 'fbc_dequeue_font_awesome', 11 );
function fbc_dequeue_font_awesome() {
wp_dequeue_style( 'flexy-breadcrumb-font-awesome' );
}
Feel free to reach us if the issue still persists.
Regards,
Thread Starter
Sergiy
(@se8pro)
thanks for the answer
and when checking in https://search.google.com/structured-data/testing-tool/ writes 1 error: Specify the name or item.name property
Hello @se8pro,
Thank you for writing to us.
We are glad to inform you that we have resolved this issue in the recent update of Flexy Breadcrumb v1.1.4, so please update.
Feel free to reach out for further assistance.
Regards,
Thread Starter
Sergiy
(@se8pro)
We are glad to inform you that we have resolved this issue in the recent update of Flexy Breadcrumb v1.1.4, so please update.
Feel free to reach out for further assistance.
Yes, I am using the latest version. I understood what was the reason (item.name) – when I do not write the text in the “Home text” field.
Ok, I’ll wait for the update when this field is multilingual. thanks
Thread Starter
Sergiy
(@se8pro)
who needs it faster, you can do it with a small fix:
replacing on line 149 with:
flexy-breadcrumb/includes/class-flexy-breadcrumb-trail.php
//echo esc_attr($fbc_front_text);
esc_html_e('Home', 'flexy-breadcrumb');
And, on search page and multipage..
Home > … > … > Search: …
Home > … > …. > Page 2
Home > … > …. > Page 3
Home > … > …. > Page 4
…
…
i cannot translate “Search:” to Turkish “Arama:” and, “Page” to Turkish “Sayfa”..
i use Loco Translate.. There is only “Home” ?? not “Search” and “Page”.. maybe others i dont see.
-> flexy-breadcrumb/includes/class-flexy-breadcrumb-trail.php
on line 731:
esc_html__('Page', 'flexy-breadcrumb')
on line 752 and 755:
('Search: ', 'flexy-breadcrumb')
on line 707:
esc_html__('Error 404', 'flexy-breadcrumb')
-
This reply was modified 4 years, 11 months ago by
Simuzer.
-
This reply was modified 4 years, 11 months ago by
Simuzer.
Dear @simuzer & @se8pro,
Thank you for your feedback and suggestion. Please note that we will fix this issue in the next release.
Regards,
Thread Starter
Sergiy
(@se8pro)
Since the update of the module has not yet been released (to support WPML + polylang translations), and who needs to quickly fix the translation of the main text for several languages through the polylang module, here is an option:
replacing on line 149 with:
flexy-breadcrumb/includes/class-flexy-breadcrumb-trail.php
//echo esc_attr($fbc_front_text);
$my_lang = pll_current_language();
if ( $my_lang == 'uk' ) {
echo "Text home ukr";
}
elseif ( $my_lang == 'ru' ) {
echo "Text home rus";
}
else {
echo "Text home eng";
}