Can you describe your Polylang settings in detail please?
Are you using the most recent EM version?
Thread Starter
maxoud
(@maxoud)
WordPress, Events Maker, Polylang – everything is up-to-date.
1. I’ve made a clean WordPress install with Events Maker and Polylang plugins enabled.
2. Created required pages under Events Maker -> Settings -> Display.
3. Created two languages, EN (default) and RU.
No other default settings were altered.
Also, I’ve tried to Hide URL language information for default language in Polylang’s URL modifications settings but it does not have an impact on the issue.
Can you reach us via our support forum here: https://dfactory.eu/support/forum/events-maker/
We’d need some more details.
I am also having issues with Polylang and this plugin, Breadcrumbs are turned off in my theme, yet the plugin is enabling them (navigation breadcrumb-navigation). My site is not using breadcrumbs and am unsure why this plugin is throwing up one. I tried to turn off things via the template but it appears the template is calling something different…
File: archive-event.php Line:12
if ( ! defined( ‘ABSPATH’ ) )
exit; // exit if accessed directly
get_header( ‘events’ );
Thank you for any suggestions!
OC
It’s not the right way to do it.
You could replace the template function responsible for displaying breadcrumbs like this:
function em_breadcrumb() {
return '';
}
or (better) remove the trigger:
function df_add_and_remove_actions() {
remove_action( 'em_before_main_content', 'em_breadcrumb', 20 );
}
add_action( 'wp', 'df_add_and_remove_actions' );
Thanks for the reply, I have been unable to ascertain where this code can be added or modified. Am I to modify the theme I am using, Events maker plugin or an Events maker them file?
This plugin for some reason is the only plugin I have seen that activates this breadcrumbs function.
The theme has an option to disable breadcrumbs (maybe this is not applicable to plugins?) Yet also the formatting entered is different as well…

I am using Spa and Salon 1.0.7 Author Rara Theme
Author URI http://raratheme.com/
Theme URI http://raratheme.com/wordpress-themes/spa-and-salon/
-
This reply was modified 8 years, 11 months ago by
Oclair.
-
This reply was modified 8 years, 11 months ago by
Oclair.
-
This reply was modified 8 years, 11 months ago by
Oclair. Reason: ww.wp.xz.cn is primitive getting out stone tools
aah! I figured out breadcrumb.php was printing it up!
Have a nice one!
Just add the code above to functions.php of your theme. No need to modify plugin files as it gets overwritten when you update the plugin.
isn’t that the same for updating the theme?
if it’s not a custom build theme then yes, it’s the same.
then there are other ways to do it, using a plugin – for example https://pl.ww.wp.xz.cn/plugins/code-snippets/