kaggdesign
Forum Replies Created
-
Forum: Plugins
In reply to: [Cyr-To-Lat] delete everything related to this pluginHey @mstudioeu,
Could you show an example? Sometimes slugs are transliterated on the fly.
Do you see the issue when the plugin is deactivated?
- This reply was modified 3 hours, 45 minutes ago by kaggdesign.
- This reply was modified 3 hours, 45 minutes ago by kaggdesign.
Forum: Plugins
In reply to: [Cyr-To-Lat] Problem with WooCommerceCould you explain the sequence how to reproduce the issue in 100% of cases? It is hard to fix otherwise.
Forum: Plugins
In reply to: [Cyr-To-Lat] Doesn’t work with SerbianThis plugin does not perform translation of anything. It does not influence to blog post dates (whatever is it), Woo shop and any other texts on the site.
The plugin performs transliteration of slugs. It means that if you create a post on your site with the name
свет
, its slug will becomesvet
, and post will be accessible by the linkhttps://yousite.com/svet
. it won’t be translated toworld
.Also, no content of the
свет
post will be translated from Serbian to any language.Forum: Plugins
In reply to: [hCaptcha for WP] Hcaptcha forces scroll on loadThank you, @lukascech for the confirmation. I will be pleased if you leave a review here.
Many thanks.
Forum: Plugins
In reply to: [hCaptcha for WP] Hcaptcha forces scroll on loadI have fixed the issue. Please check 4.12-RC3 version and let me know.
Forum: Plugins
In reply to: [hCaptcha for WP] Check Site Config doesn’t do anythingI use Google Workspace (Business) for my domain kagg.eu. I communicate with many people and never got claims from recipients.
I do not know how to help, sorry.
Forum: Plugins
In reply to: [hCaptcha for WP] Check Site Config doesn’t do anythingIt is the same email address I gave you. It looks like you have serious problems with your local machine. Your messages to forum are blocked. You cannot see my emails.
It seems you should invite a specialists to clean up the system from potential viruses and tune up email.
Forum: Plugins
In reply to: [hCaptcha for WP] Check Site Config doesn’t do anythingHello,
I just wanted to let you know that I responded to you yesterday. Have you been able to seen my email?
Forum: Plugins
In reply to: [PageSpeed Module] still active?Plugin works and seems not requiring any major updates. If you have PageSpeed module installed with your Apache or Nginx, you still can use this plugin.
Forum: Plugins
In reply to: [hCaptcha for WP] Hcaptcha forces scroll on loadI tried to reproduce it locally, but no luck.
Can you re-create a test page? You can turn off hCaptcha on your
kontakt
page following the instruction.In your case, you should add the following filter.
/**
* Filters the protection status of a form.
*
* @param string $value The protection status of a form.
* @param string[] $source The source of the form (plugin, theme, WordPress Core).
* @param int|string $form_id Form id.
*
* @return bool
*/
function hcap_protect_form_filter( $value, $source, $form_id ) {
if ( ! in_array( 'kadence-blocks/kadence-blocks.php', $source, true ) ) {
return $value;
}
if ( 7 !== $form_id ) {
return $value;
}
return false;
}
add_filter( 'hcap_protect_form', 'hcap_protect_form_filter', 10, 3 );This filter will block hCaptcha on
kontakt
page but let it work on any other test page.Forum: Plugins
In reply to: [hCaptcha for WP] Check Site Config doesn’t do anythingThank you for confirmation. My email is [email protected] but if you do not plan to share sensitive info, it is better to continue here. Other people are also reading forum and they can get something helpful from our discussion.
Forum: Plugins
In reply to: [hCaptcha for WP] Hcaptcha forces scroll on loadThank you for reporting. First of all, the WordPress plugin does nothing with scrolling. It may be a side effect of the hCaptcha API script, but I do not have access to its code and just use it as is in the plugin.
The EASY finding is valuable. I will try to reproduce the issue, and report it to hcaptcha.com.
P.S. Could you create a similar page to see the effect? Thanks.
- This reply was modified 1 week, 6 days ago by kaggdesign.
Forum: Plugins
In reply to: [hCaptcha for WP] Check Site Config doesn’t do anythingCan you provide a video with the sequence of your steps?
Forum: Plugins
In reply to: [hCaptcha for WP] Not showing in contact form 7Did you turn on switches on the Integrations page?
Forum: Plugins
In reply to: [hCaptcha for WP] Check Site Config doesn’t do anythingThank you for confirmation, I am closing this ticket as resolved. So far. And keep fingers crossed ??