Joys66
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Countdown not showingIn the latest Eduma update, the bug has been fixed.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Countdown not showingHi
Temporarily solved the problem. Disabled JS in the main theme that uses moment.js , changed it and re-enabled it in the child theme. Everything works.
And what is the version of moment.is used in your plugin?Forum: Plugins
In reply to: [Video Conferencing with Zoom] Countdown not showingIMHO Problem is in the Theme “Eduma”
(http://test.art-storona.ru/wp-content/themes/eduma/assets/js/main.min.js?ver=4.3.0
moment.js (2.6.0) included in main.js)
How to get out of this situation?Forum: Plugins
In reply to: [Video Conferencing with Zoom] Countdown not showingHi Deepen
Thanks for the help
The JS error in the console has disappeared. But the countdown is not shown (Forum: Plugins
In reply to: [OpenTickets Community Edition] Woocommerce categories not showingLoushou, Thanks !!!
Several times I made the tracing in the debugger PHP. And in my opinion NGG incorrectly parses the handler, and then restores the query string.
Two screenshots from debuger:
1 wordpress installed in subdir /wp http://prntscr.com/8tpgyf2 and in root http://prntscr.com/8tphjl
It is seen that for further processing the given query string with a double slash. And it is likely that Polylang does not know what to do with it.
If you guys feel that there is no error, I will knock on the door to the authors of the plugin Polylang ))) (Sorry for my English)@photocrati, another note for your developers.
If wordpress instaling in subdir f.e. http://mysite.com/subdir/ In this case, the problem does not occur.
Thanks!Forum: Plugins
In reply to: [OpenTickets Community Edition] Woocommerce categories not showingI know about shortcode. But this only partially solves the problem. There are links to the product category, which is generated automatically on the product page. And bread crumbs…
Forum: Plugins
In reply to: [OpenTickets Community Edition] Woocommerce categories not showingHi!
My pluginsOpenTickets Community Edition Quadshot Software LLC – 1.13.2
WooCommerce WooThemes – 2.4.7Completely agree that modifying core plugin it the wrong way. But unfortunately to migrate to WPML too late for me ((
Forum: Plugins
In reply to: [Polylang] Polylang and Nextgen galleryVery glad I was able to help you!
IMHO bug in function edd_currency_filter() formatting.php
line 157 default : line 158 $formatted = $price . ' ' . $currency;must be
line 157 default : line 158 $formatted = $price . ' ' . $symbol;// function.php my theme function edd_add_my_currency_symbol($symbol,$currency) { if (!empty($currency) && $currency=='UAH') $symbol=' grn'; return $symbol; } function pippin_extra_edd_currencies( $currencies ) { $currencies['UAH'] = 'Ukrainian hryvnia'; return $currencies; } add_filter('edd_currencies', 'pippin_extra_edd_currencies'); add_filter( 'edd_currency_symbol','edd_add_my_currency_symbol',10 ,2 );Hi!
Of course, the UAH currency was added via this filter.
But the problem is that if the currency is not in this listcase "GBP" : case "BRL" : case "EUR" : case "USD" : case "AUD" : case "CAD" : case "HKD" : case "MXN" : case "SGD" : case "JPY" :will execute the default code.
default : $formatted = $price . ' ' . $currency;// 100 UAH not 100 smb
Or am I wrong?
Forum: Plugins
In reply to: [Polylang] Polylang and Nextgen gallery