Viewing 12 replies - 1 through 12 (of 12 total)
  • blackdjurix

    (@blackdjurix)

    Hi,

    I have read this report a while ago, since it have been reported 1 month ago and no reply. I thought that this bug have been fixed since it have updated four days ago. Until a few moment ago, I realized that the problem remains.

    Is there any way to fix this or would it need another update?

    Bestest regards.

    I get this with WordPress 4.3, Polylang 1.7.9 and Custom Contact Forms 6.8.2. As I am still evaluating the plugin, can’t say if there is data loss or something, but I can get easily receive the “Custom Contact Forms is experiencing issues. There is an issue with synchronizing data[…]” pop-up with a few clicks in the admin interface.
    Now I am a bit worried: I *need* to use Polylang but I am unsure if there will be some data loos in the future with CCF syncing issues.

    The same problems happens with xili-language, another multilingual plugin, very similar to Polylang

    I will take a look why this issue occurs ! be patient…

    unfortunately i have a deadline close so i try anything that works, for the moment it seems to work with WPGlobus

    be aware of the deep (not reversible?) modifications made by this recent Globus in post content table. And even if they don’t have best UX, other famous contact form plugins are very stable in multilingual context.

    M.

    the truth is i tried a lot of other forms plugins and they do worked well in multilingual context, but failed in the most important area for me: the ability to upload multiple image attachments to the server. for the mere contact form i use something different, with more straightforward functionality
    the site is for a photo contest which will start next week, it has to work now. architectural changes may get it for the next year edition.

    Just to keep lessons of experiences:
    I just identify the origin of the issue when ccf saving form settings

    CCF requires permalinks
    in admin side:
    CCF uses json approach and some urls are filtered by insertion of language tabs by multilingual plugins.
    I will prepare a filter to avoid this unwanted insertion 😉

    Cheers

    Awesome Michel! That’s a nice and responsive developer, for the next multilanguage website I will most likely go with xili

    the filter to add in your functions.php if xili-language is active :

    function xili_ccf_dont_insert_lang_tag_root ( $false, $url, $path, $orig_scheme, $blog_id ){
    	global $wp_query;
    	if ( isset( $wp_query->query_vars['post_type']) &&  $wp_query->query_vars['post_type'] == 'ccf_form' ) return true; // no insertion
    
    		return $false;
    }
    add_filter('xili_json_dont_insert_lang_tag_root', 'xili_ccf_dont_insert_lang_tag_root', 10, 5 ); // filter since XL 2.16.6

    Cheers

    Plugin Author Taylor Lovett

    (@tlovett1)

    Is this still a problem after 7.0?

    Plugin Author Taylor Lovett

    (@tlovett1)

    Hmm not able to reproduce this in 7.0.3

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘Polylang conflict?’ is closed to new replies.