natewerewolf
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] sends email but returns errorHi, I know you switch to other solution. But for those who might come across this problem, it can simply because you activate the ‘debug option’ in Easy SMTP.
So if that is set, the server return some extra information like
Server …. (start with ‘S’)
before the actual json
{“message”:”Your message has been sent successfully”}And the js cannot parse the response in this case. That’s why there is no message display. So remember to switch off the debug option
Hi Chouby, thank you so much for your support !!!
I think i have solved the second problem. My code used pll_get_post to get the id:
get_page(pll_get_post($id));
This, however cause the problem mentioned above (which is cannot get the page id). And when i try to put in the optional Language parameter, it works.
get_page(pll_get_post($id,$lang));
I guess it has the same root cause of the first one ? The language is not detected ??Anyway, really appreciate your support. Will looking for your future release. Really useful plugin ??
Hi Chouby,
I have created my own theme but encounter the similar issue. https://hoovit.com/hedgespa/wordpress/?p=asdas
This issue only occur if the post/cat is string, which does not generate a 404 …There are 2 problems with the page:
1. wp_nav_menu fall back to wp_page_menu and display all pages in 2 languages.
2. within the theme, I used get_page, that also breaks, not sure how … This is how it should look
https://hoovit.com/hedgespa/wordpress/Can I know if there are any way to fix it ?