• Resolved guezs

    (@guezs)


    Things that I found while trying to make the plugin work:

    For internationalization (special characters and others), encode the texts.

    I think this should be fixed in a next version. Example:

    In update_posts()

    $args = array( ‘post_title’ => utf8_encode($course[‘fullname’]),
    ‘post_name’ => utf8_encode($course[‘shortname’]),
    ‘post_content’ => utf8_encode($course[‘summary’]),
    ‘post_status’ => $post_status
    );

    That worked for me while trying to make the sync work.

    https://wordpress.org/plugins/moowoodle/

The topic ‘Special characters’ is closed to new replies.