kaggdesign
Forum Replies Created
-
Forum: Reviews
In reply to: [hCaptcha for WP] Excellent PluginThank you for your kind review. We are happy to help!
Forum: Plugins
In reply to: [Cyr-To-Lat] Product Feed PRO conflict?Closed as having no response for a week.
Forum: Plugins
In reply to: [hCaptcha for WP] Disable hCaptcha in frontend except for login pageThankyou for your response, we are happy to be helpful. You can leave your review here if you wish.
Concerning prefetch – it is not a big deal at all. It does nothing if no resources are loaded. Anyway, to remove prefetch and styles on all pages except login and some other page, you can use the following code.
function hcap_block_inline_styles() {
if ( is_page( 'contact' ) ) {
return;
}
$hcaptcha = hcaptcha();
remove_action( 'wp_head', [ $hcaptcha, 'print_inline_styles' ] );
remove_filter( 'wp_resource_hints', [ $hcaptcha, 'prefetch_hcaptcha_dns' ], 10, 2 );
}
add_action( 'wp_head', 'hcap_block_inline_styles', 0 );Forum: Plugins
In reply to: [Cyr-To-Lat] Doesn’t work with Traditional ChineseВторое сообщение вообще не фатальная ошибка, это известный глюк WPML, и с ним надо идти в поддержку этого платного плагина. К тому, что у них таблица в базе не существует (а должна бы) мы точно не имеем никакого отношения.
В сообщении
Backend fatal error: PHP Fatal error:
в стеке вызовов нет cyr2lat, там WooCommerce и тема woodmart. Возможно, cyr2lat на хуке неправильно возвращает слаг таксономии продукта.Но зачем это вам? Плагин вам не поможет. Он не поддерживает вашу кодировку. Какой результат вы хотите увидеть, если нам удастся обнаружить, в чем конкретно проблема? Ваши таксономии продукта и атрибуты не будут транслитерированы в любом случае.
Мы не можем пока предположить, когда удастся добавить поддержку zh_HK. Работа с китайским языком трудоемкая, а поддержку и доработку плагина мы осуществляем бесплатно, в своё свободное время.
Мы постараемся помочь, если ошибка возникнет при работе с локалью zh_CN.
Forum: Plugins
In reply to: [hCaptcha for WP] PHP Fatal errorThank you for the message. How to reproduce the issue?
Please deactivate all plugins one by one and change theme to a standard one. This will help to identify the culprit.
Forum: Plugins
In reply to: [Cyr-To-Lat] We have the following problem with the Cyrillic on the profilesThank you for preparing a testing environment. I left there Divi and Cyr2Lat only, and I saw bug on it. However, it is floating. And sometimes I see it, sometimes not. For instance, right now I cannot see it.
Trying to guess, I copied your database to my local machine – and locally I was unable to see the problem at all.
Frankly speaking, I do not know how to constantly reproduce and debug the issue. I am afraid it does not worth time spent on it. I hope you understand me.
Forum: Plugins
In reply to: [Cyr-To-Lat] Doesn’t work with Traditional Chinese“меня смущает, не то, что с вашим плагином url автоматически не прописываются”
Плагин не прописывает “автоматически” никакие url. Он заменяет url при сохранении страницы в админке. На фронте он ничего такого не делает.
Язык страницы, которую вы привели (и сайта в целом) – “zh-HK”. Мы не поддерживаем эту кодировку. Плагин вообще ничего не должен делать на вашем сайте.
Forum: Plugins
In reply to: [Cyr-To-Lat] Doesn’t work with Traditional ChineseПлагин cyr2lat не работает на фронте, только в админке. Есть, правда исключения, вроде транслитерации WooCommerce атрибутов.
- This reply was modified 3 weeks, 1 day ago by kaggdesign.
Forum: Plugins
In reply to: [Cyr-To-Lat] Doesn’t work with Traditional ChineseНичего не понятно – в чём ошибка? Какая ошибка?
А то, что весь дизайн слетает – это потому, что стили не грузятся из-за фатальной php ошибки на сайте. Откройте dev tools в браузере – увидите там 500.
Покажите debug.log с сообщением о php fatal error.
Forum: Plugins
In reply to: [Cyr-To-Lat] We have the following problem with the Cyrillic on the profilesThank you for providing additional information. I do not see this issue with Divi theme. You are using a non-standard theme “Seven Season Hotel & SPA Theme 1.0.0”. Can you send it to my email [email protected] for testing?
Forum: Plugins
In reply to: [Cyr-To-Lat] We have the following problem with the Cyrillic on the profilesHello @simeon987,
Could you clarify which page you are talking about? I have tested and see that when site language is Bulgarian, and user language is English, the admin page with Divi settings
/wp-admin/admin.php?page=et_divi_options
is in English. So, all good for me.Can you share the Cyr2Lat System Info here?
Forum: Plugins
In reply to: [hCaptcha for WP] Block inline style via filterApologies, I overlooked the contact page mentioning. The code should be like that then.
function hcap_block_inline_styles() {
if ( is_page( 'contact' ) ) {
return;
}
remove_action( 'wp_head', [ hcaptcha(), 'print_inline_styles' ] );
}
add_action( 'wp_head', 'hcap_block_inline_styles', 0 );You should use your page slug instead of
'contact'
.- This reply was modified 3 weeks, 2 days ago by kaggdesign.
Forum: Plugins
In reply to: [hCaptcha for WP] Block inline style via filterHi @joe16,
Please add the following filter to block inline styles everywhere except login pages:
function hcap_block_inline_styles() {
remove_action( 'wp_head', [ hcaptcha(), 'print_inline_styles' ] );
}
add_action( 'wp_head', 'hcap_block_inline_styles', 0 );Forum: Plugins
In reply to: [hCaptcha for WP] hCaptcha not showing on WordPress lost password formThank you, @joe16, for your kind review!
Forum: Plugins
In reply to: [Cyr-To-Lat] Doesn’t work with Traditional ChineseHi @servicesportal,
Thank you for your message. We do not support traditional Chinese so far. The plugin settings page shows that the supported locale is zh_CN, which is simplified Chinese.To avoid any doubts, please share here information from the System Info settings page.