korchagina
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] The price block is not displayedThanks, the updating the event helped
These plugins are there and all the plugins are updated:
Event Tickets,
Event Tickets Plus,
The Events Calendar- This reply was modified 1 year, 4 months ago by korchagina.
Hi, it didn’t help
The problem may be related to the wptexturize function, which automatically replaces certain characters (such as quotes, dashes, and others) with their “typographically correct” counterparts. WordPress replaces the regular dash (-) with a long dash (—), which is displayed as an HTML entity. so the problem is not with the plugin.
Thanks, I’ll try to unsubscribe.
- This reply was modified 1 year, 4 months ago by korchagina.
Forum: Plugins
In reply to: [The Events Calendar] Translation issuesI have the same problem and it seems I still need to wait for the fix. As a temporary solution, I wrote such a function:
add_filter(‘tribe_get_cost’, function ($cost) {
if ($cost === ‘Free’) {
return ‘Бесплатные’;
}
return $cost;
});