omichon
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Edit post blank after activating PolylangUpdate : problem has vanished with 3.0.1 update ??
Forum: Plugins
In reply to: [Polylang] Edit post blank after activating PolylangI finally rolled back to Polylang 2.9.2. All is working again as expecting.
Obviously, Polylang v3 introduced some issue.Forum: Plugins
In reply to: [Polylang] Edit post blank after activating PolylangI was hoping that updating to WP 5.7 would fix it, but so far…no luck ??
Forum: Plugins
In reply to: [Polylang] Edit post blank after activating PolylangThank you for your reply. I hope all get in order soon, then ??
Forum: Plugins
In reply to: [Polylang] Edit post blank after activating PolylangHi,
Have you found what the problem was or got some support from the dev ?
I experience the exact same issue (with a different theme) since I updated Polylang to v3 :\Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 send me a copy multilingualI changed the previous code like this :
function my_wpcf7_use_mail_2_or_not( $additional_mail, $cf ) { $cf = WPCF7_Submission::get_instance(); if ( $cf ) { $posted_data = $cf->get_posted_data(); } if ( "" == $posted_data['send_copy'][0] ) $additional_mail = array(); return $additional_mail; }
Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 send me a copy multilingualJust had to try harder. All is fine again ??
Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 send me a copy multilingualThanks for the link. I was able to point out the issue from reading it, but I am unable to adapt the new code to my function. I am just a real newbie to php ??
Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 send me a copy multilingualThe code from my previous post doesn’t work anymore because of some changes in v3.9 (WPCF7_ContactForm object no longer has a posted_data property.). Any help to adapt this code for v3.9 would be welcome.
Thanks in advance.Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 send me a copy multilingualI finally find a way to do it with this code :
function my_wpcf7_use_mail_2_or_not( $additional_mail, $cf ) { if ( "" == $cf->posted_data['send_copy'][0] ) $additional_mail = array(); return $additional_mail; }
That was quite simple, but not that much for the newbie I am.
Forum: Plugins
In reply to: [Polylang] how to get the 'page_portfolio_welcome_text' translated ?I finally figured out how to do that. I just had to disable Custom fields synchronization.
Really great plugin, even for a WordPress newbie ??