peterforensys
Forum Replies Created
-
@chouby Hello! In the meantime I figured out the conflict. I had time and I made a test site and I installed plugins on it one by one. In this way I figured out that Polylang is conflicting with VikBooking plugin.
So to reproduce the problem you need to make these steps:
– Install Polylang and VikBooking to a clean WordPress site
– Go to languages, settings, URL modifications and press “save changes” there
– Then if you go back to the front end you will see blank pages at least on one of the two languages (if you have two languages in polylang)The biggest problem I don’t see any error messages even though debugging is enabled on the site. I think I will write to VikBooking as well to look into this.
Thanks,
PeterForum: Plugins
In reply to: [Polylang] The plugin blanks my pages – PolylangI have the same problem. I already reported it more than 2 months ago.
https://ww.wp.xz.cn/support/topic/pages-are-broken-in-primary-language-temporary-solution-resaving-permalinks/
I hope they will fix it soon.
For now I use this code to regenerate permalinks every hour so my site never goes down more than 1 hour:// Flush permalinks every hour
add_action(‘my_hourly_event’, ‘do_this_hourly’);function my_activation() {
if ( !wp_next_scheduled( ‘my_hourly_event’ ) ) {
wp_schedule_event(time(), ‘hourly’, ‘my_hourly_event’);
}
}add_action(‘wp’, ‘my_activation’);
function do_this_hourly( $hard = false ) {
global $wp_rewrite;
$wp_rewrite->flush_rules( $hard );
}I added the code in Code Snippets plugin with PHP Snippet and Run everywhere settings.
The problem for me that I don’t get 404. The pages are blank but it’s not because of 404 errors. Now I use this code to regenerate permalinks every hour so my site never goes down more than 1 hour:
// Flush permalinks every hour
add_action(‘my_hourly_event’, ‘do_this_hourly’);function my_activation() {
if ( !wp_next_scheduled( ‘my_hourly_event’ ) ) {
wp_schedule_event(time(), ‘hourly’, ‘my_hourly_event’);
}
}add_action(‘wp’, ‘my_activation’);
function do_this_hourly( $hard = false ) {
global $wp_rewrite;
$wp_rewrite->flush_rules( $hard );
}
I added the code in Code Snippets plugin with PHP Snippet and Run everywhere settings.Forum: Plugins
In reply to: [Polylang] Portfolio pages have 404 error because of polylangI also have similar problems but with single pages. I hope they will look at it soon.
I have the same problem. Its not a cache issue. Editors can’t edit the forms in Elementor. 🙁 They just have no rights to do it by default.
After updating to PolyLang 3.4.4 the issue still exists 🙁
@web13 we have very similar problem thats for sure. But for me my pages are blank and I don’t even get an 404 error like you. The blank pages have “200 OK” status codes for me.
Anyway, I hope Polylang is looking into this asap.Any news about this bug? Can you at least confirm this bug or give me possible solutions?
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] How to translate [cmplz-cookies]Hi!
It works, thank you! But the functionality of some cookies are still in my primary language (hungarian) instead of romanian: https://ibb.co/K5Wd3R5I guess this is because these cookies have no romanian translations yet and they fall back to my the primary language which is hungarian.
It would even be good for me if these informations were in English.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] How to translate [cmplz-cookies]Hi!
Yeah the link I provided is not good. Currently this is where you can see the romainian version of our cookie policy page: https://dev.autosafety.hu/ro/informare-despre-cookie-uri/
This is our staging site. (On our live site the romanian language is not available yet, only for admins.)Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] How to translate [cmplz-cookies]Here you are:
Cookie purposes translation (EN – RO):
Functional – Funcțional
Marketing/Tracking – Marketing/Urmărire
Preferences – Preferințe
Statistics (anonymous) – Statistici (anonim)
Statistics – Statistici
But the function of the cookies is still not in romanian most of the time, they fallback to my primary language instead. Like at Google Analytics cookies I showed here: https://ibb.co/DzFDK7s or even at Complianz cookies: https://ibb.co/9vV21FMForum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] How to translate [cmplz-cookies]Hello!
I did it but nothing has changed. 🙁Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] How to translate [cmplz-cookies]Hi!
I’m not a native speaker but my site has a romanian language version so I need these strings to appear in romanian language, or at least in english language, but not in my primary language (hungarian) as now. But these strings like statistics are so basic that Google Translate can translate it perfectly. So if it is good for you, I can help with the translations of these basic words at least. But no, I am not a native speaker (Although my mom knows romanian language well 🙂 )I forgot to mention I tried to use this shortcode on “Order on-hold email” email. And on top of that If I do not edit it but just enable the template of Order on-hold email, the direct bank transfer instructions are not sent anyway, so something is broken I think with this.
Forum: Plugins
In reply to: [Loco Translate] Custom does not overwrite authorHi! Just an extra info: I deleted the author located translation and now the custom located translation is working. This is the fastest solution I guess but still not the best as there is a chance that next time when I update VikBooking the author located translation comes back and I need to check this on every update and delete it.