• Resolved Ron

    (@donniepeters)


    Please note that the update you have posted uses code for Kanary and not Phosphor !!! This is causing the Theme to NOT work !!!!
    Please fix your Theme !
    From Phosphor 2.1.3 ; customizer.php

    <?php
    /**
     * Kanary Theme Customizer
     */
    
    /**
     * Add postMessage support for site title and description for the Theme Customizer.

    From Phosphor 2.0.3

    <?php
    /**
     * Phosphor Theme Customizer
     *
     * @package Phosphor
     */
    
    /**
     * Add postMessage support for site title and description for the Theme Customizer.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Ron

    (@donniepeters)

    Please note that I took the time and effort to search your Theme and found the use of the “Kanary” reference 184 times in 23 files !!!!!

    Clearly you messed up !! Please remove the update and don’t add until you have fix your careless coding.
    (If I sound mad… well… it is because I am)

    Thread Starter Ron

    (@donniepeters)

    Seriously ?? From BAD to WORSE !!!
    Version 2.1.4 now has 371 hits for the term “kanary” in 23 files !!!
    Is this Kanary or Phosphor ??? Cause it says Phosphor and that’s where you have been uploading your updates!
    You usually have a good reputation but your work on this is HORRIBLE !
    I have notified you 3 times of your errors yet you continue to ignore me or dismiss me as an idiot !
    Here is the proof!

    Bad Code

    Search "kanary" (371 hits in 23 files)
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\404.php (1 hit)
    	Line 23: 				<?php if (kanary_categorized_blog()) : // Only show the widget if site has multiple categories. ?>
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\assets\js\script.js (7 hits)
    	Line 3: 	$('.kanary-slider').each(function (index) {
    	Line 10: 			autoPlay: Boolean(kanary_slider_options.autoPlay),
    	Line 11: 			pagination: Boolean(kanary_slider_options.pagination),
    	Line 12: 			stopOnHover: Boolean(kanary_slider_options.stopOnHover),
    	Line 13: 			navigation: Boolean(kanary_slider_options.navigation),
    	Line 14: 			transitionStyle: ( kanary_slider_options.transitionStyle === '' ) ? false : kanary_slider_options.transitionStyle
    	Line 14: 			transitionStyle: ( kanary_slider_options.transitionStyle === '' ) ? false : kanary_slider_options.transitionStyle
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\content-search.php (2 hits)
    	Line 15: 				<?php kanary_posted_on(); ?>
    	Line 25: 		<?php kanary_entry_footer(); ?>
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\content-single.php (2 hits)
    	Line 6: 			<?php kanary_posted_on(); ?>
    	Line 24: 		<?php kanary_entry_footer(); ?>
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\content.php (1 hit)
    	Line 13: 					<?php kanary_posted_on(); ?>
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\footer.php (1 hit)
    	Line 20: 			<?php kanary_credits(); ?>
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\functions.php (20 hits)
    	Line 3:  * Kanary functions and definitions
    	Line 13: if (!function_exists('kanary_setup')) :
    	Line 21: 	function kanary_setup()
    	Line 27: 		 * If you're building a theme based on Kanary, use a find and replace
    	Line 28: 		 * to change 'kanary' to the name of your theme in all the template files
    	Line 30: 		load_theme_textdomain(kanary_get_theme_slug(), get_template_directory() . '/languages');
    	Line 71: endif; // kanary_setup
    	Line 72: add_action('after_setup_theme', 'kanary_setup');
    	Line 79: function kanary_widgets_init()
    	Line 92: add_action('widgets_init', 'kanary_widgets_init');
    	Line 97: function kanary_scripts()
    	Line 99: 	wp_enqueue_style('kanary-style', get_stylesheet_uri());
    	Line 101: 	wp_enqueue_style("kanary-fontawesome", get_stylesheet_directory_uri() . "/assets/libs/font-awesome/css/font-awesome.min.css", null, "4.3.0", "all");
    	Line 103: 	wp_register_script("kanary-owl-carousel", get_template_directory_uri() . '/assets/libs/owlcarousel/owl-carousel/owl.carousel.min.js', array('jquery'), '1.3.2', true);
    	Line 106: 	wp_localize_script("kanary-owl-carousel", 'kanary_slider_options', $theme_settings['slider']);
    	Line 106: 	wp_localize_script("kanary-owl-carousel", 'kanary_slider_options', $theme_settings['slider']);
    	Line 108: 	wp_enqueue_script("kanary-script", get_template_directory_uri() . '/assets/js/script.js', array('jquery'), '1', true);
    	Line 110: 	wp_enqueue_script('kanary-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), '20130115', true);
    	Line 117: add_action('wp_enqueue_scripts', 'kanary_scripts');
    	Line 157: require kanary_get_theme_overrides_path();
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\header.php (4 hits)
    	Line 20: <?php kanary_social_links(); ?>
    	Line 59: 							'fallback_cb'    => 'kanary_dropdown_pages',
    	Line 60: 							'items_wrap'     => kanary_dropdown_nav_wrapper(),
    	Line 61: 							'walker'         => new Kanary_Walker_Nav_Menu_Dropdown()
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\inc\custom-header.php (21 hits)
    	Line 18:  * @uses kanary_header_style()
    	Line 19:  * @uses kanary_admin_header_style()
    	Line 20:  * @uses kanary_admin_header_image()
    	Line 22: function kanary_custom_header_setup()
    	Line 24: 	add_theme_support('custom-header', apply_filters('kanary_custom_header_args', array(
    	Line 30: 		'wp-head-callback'       => 'kanary_header_style',
    	Line 31: 		'admin-head-callback'    => 'kanary_admin_header_style',
    	Line 32: 		'admin-preview-callback' => 'kanary_admin_header_image',
    	Line 36: add_action('after_setup_theme', 'kanary_custom_header_setup');
    	Line 38: if (!function_exists('kanary_header_style')) :
    	Line 42: 	 * @see kanary_custom_header_setup().
    	Line 44: 	function kanary_header_style()
    	Line 80: endif; // kanary_header_style
    	Line 82: if (!function_exists('kanary_admin_header_style')) :
    	Line 86: 	 * @see kanary_custom_header_setup().
    	Line 88: 	function kanary_admin_header_style()
    	Line 114: endif; // kanary_admin_header_style
    	Line 116: if (!function_exists('kanary_admin_header_image')) :
    	Line 120: 	 * @see kanary_custom_header_setup().
    	Line 122: 	function kanary_admin_header_image()
    	Line 137: endif; // kanary_admin_header_image
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\inc\customizer.php (8 hits)
    	Line 3:  * Kanary Theme Customizer
    	Line 11: function kanary_customize_register($wp_customize)
    	Line 18: add_action('customize_register', 'kanary_customize_register');
    	Line 23: function kanary_customize_preview_js()
    	Line 25: 	wp_enqueue_script('kanary_customizer', get_template_directory_uri() . '/assets/js/customizer.js', array('customize-preview'), '20130508', true);
    	Line 28: add_action('customize_preview_init', 'kanary_customize_preview_js');
    	Line 30: function kanary_register_custom_control_assets()
    	Line 36: add_action('init', 'kanary_register_custom_control_assets');
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\inc\extras.php (32 hits)
    	Line 14: function kanary_body_classes($classes)
    	Line 22: 	$effective_layout = sanitize_html_class(kanary_get_effective_layout());
    	Line 38: add_filter('body_class', 'kanary_body_classes');
    	Line 46: function kanary_post_classes($classes)
    	Line 53: add_filter('post_class', 'kanary_post_classes');
    	Line 58: function kanary_head()
    	Line 81: add_action('wp_head', 'kanary_head');
    	Line 91: 	function kanary_wp_title($title, $sep)
    	Line 116: 	add_filter('wp_title', 'kanary_wp_title', 10, 2);
    	Line 124: 	function kanary_render_title()
    	Line 131: 	add_action('wp_head', 'kanary_render_title');
    	Line 137: function kanary_user_css()
    	Line 142: 		<?php echo kanary_minify_css( esc_html($theme_settings['general']['custom_css']) ); ?>
    	Line 147: add_action('wp_head', 'kanary_user_css', 99);
    	Line 152: function kanary_customization_css()
    	Line 155: 	$styles = apply_filters('kanary_customization_css_styles', array_merge($theme_settings['styling'], $theme_settings['fonts']));
    	Line 166: 		<?php echo kanary_minify_css( esc_html($css) ); ?>
    	Line 171: add_action('wp_head', 'kanary_customization_css', 10);
    	Line 179: function kanary_minify_css($css)
    	Line 192: function kanary_enqueue_google_fonts()
    	Line 200: 		if (strpos($key, 'font_family') !== false && array_key_exists($item['value'], kanary_supported_google_fonts())) {
    	Line 217: 		wp_enqueue_style('kanary-google-fonts', $url . implode('|', $fonts));
    	Line 221: add_action('wp_enqueue_scripts', 'kanary_enqueue_google_fonts');
    	Line 226: function kanary_get_effective_layout()
    	Line 249: 		$post_meta = get_post_meta($post->ID, 'kanary_options', true);
    	Line 272: function kanary_dropdown_nav_wrapper()
    	Line 278: function kanary_dropdown_pages()
    	Line 280: 	$walker_page = new Kanary_Walker_Page_Dropdown();
    	Line 289: 		kanary_dropdown_nav_wrapper(),
    	Line 296: function kanary_get_theme_overrides_path()
    	Line 298: 	return get_template_directory() . '/overrides/' . kanary_get_theme_slug() . '.php';
    	Line 301: function kanary_get_theme_slug()
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\inc\jetpack.php (2 hits)
    	Line 11: function kanary_jetpack_setup()
    	Line 19: add_action('after_setup_theme', 'kanary_jetpack_setup');
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\inc\nav-walker.php (1 hit)
    	Line 3: class Kanary_Walker_Nav_Menu_Dropdown extends Walker_Nav_Menu
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\inc\options-framework.php (1 hit)
    	Line 6: class Kanary_Options_Framework
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\inc\options-panel.php (21 hits)
    	Line 3: function kanary_options_panel_init()
    	Line 5: 	$options_panel = new Kanary_Options();
    	Line 11: add_action('init', 'kanary_options_panel_init', 0);
    	Line 12: add_action('customize_preview_init', 'kanary_options_panel_init');
    	Line 20: function kanary_supported_os_fonts()
    	Line 42: function kanary_supported_google_fonts()
    	Line 73: class Kanary_Options extends Kanary_Options_Framework
    	Line 73: class Kanary_Options extends Kanary_Options_Framework
    	Line 78: 		parent::__construct("kanary_theme_options");
    	Line 84: 			'general' => __('Kanary General', 'phosphor'),
    	Line 85: 			'home'    => __('Kanary Homepage', 'phosphor'),
    	Line 86: 			'slider'  => __('Kanary Slider', 'phosphor'),
    	Line 87: 			'layouts' => __('Kanary Layout', 'phosphor'),
    	Line 88: 			'styling' => __('Kanary Styling', 'phosphor'),
    	Line 89: 			'fonts'   => __('Kanary Fonts', 'phosphor'),
    	Line 90: 			'social'  => __('Kanary Social', 'phosphor'),
    	Line 91: 			'footer'  => __('Kanary Footer', 'phosphor')
    	Line 94: 		return apply_filters('kanary_setting_sections', $settings_sections);
    	Line 100: 		$fonts = array_merge(kanary_supported_os_fonts(), kanary_supported_google_fonts());
    	Line 100: 		$fonts = array_merge(kanary_supported_os_fonts(), kanary_supported_google_fonts());
    	Line 521: 		return apply_filters('kanary_setting_fields', $setting_fields);
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\inc\page-walker.php (1 hit)
    	Line 3: class Kanary_Walker_Page_Dropdown extends Walker_PageDropdown
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\inc\template-tags.php (37 hits)
    	Line 68: if (!function_exists('kanary_posted_on')) :
    	Line 72: 	function kanary_posted_on()
    	Line 95: if (!function_exists('kanary_entry_footer')) :
    	Line 99: 	function kanary_entry_footer()
    	Line 105: 			if ($categories_list && kanary_categorized_blog()) {
    	Line 126: function kanary_archive_title()
    	Line 173: add_filter('get_the_archive_title', 'kanary_archive_title');
    	Line 189: 		$title = kanary_archive_title();
    	Line 237: function kanary_categorized_blog()
    	Line 239: 	if (false === ($all_the_cool_cats = get_transient('kanary_categories'))) {
    	Line 252: 		set_transient('kanary_categories', $all_the_cool_cats);
    	Line 256: 		// This blog has more than 1 category so kanary_categorized_blog should return true.
    	Line 259: 		// This blog has only 1 category so kanary_categorized_blog should return false.
    	Line 265:  * Flush out the transients used in kanary_categorized_blog.
    	Line 267: function kanary_category_transient_flusher()
    	Line 273: 	delete_transient('kanary_categories');
    	Line 276: add_action('edit_category', 'kanary_category_transient_flusher');
    	Line 277: add_action('save_post', 'kanary_category_transient_flusher');
    	Line 279: function kanary_available_val($array, $index)
    	Line 293: function kanary_credits()
    	Line 304: 		$theme_urls = array('https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/', 'https://wpgurus.com/kanary/', 'https://www.wpgurus.com/kanary/', 'https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/');
    	Line 304: 		$theme_urls = array('https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/', 'https://wpgurus.com/kanary/', 'https://www.wpgurus.com/kanary/', 'https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/');
    	Line 304: 		$theme_urls = array('https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/', 'https://wpgurus.com/kanary/', 'https://www.wpgurus.com/kanary/', 'https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/');
    	Line 304: 		$theme_urls = array('https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/', 'https://wpgurus.com/kanary/', 'https://www.wpgurus.com/kanary/', 'https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/');
    	Line 304: 		$theme_urls = array('https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/', 'https://wpgurus.com/kanary/', 'https://www.wpgurus.com/kanary/', 'https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/');
    	Line 304: 		$theme_urls = array('https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/', 'https://wpgurus.com/kanary/', 'https://www.wpgurus.com/kanary/', 'https://wpgurus.net/kanary/', 'https://www.wpgurus.net/kanary/');
    	Line 306: 		$formats = apply_filters('kanary_credit_formats', $formats);
    	Line 307: 		$anchors = apply_filters('kanary_credit_anchors', $anchors);
    	Line 308: 		$secondary_anchors = apply_filters('kanary_credit_secondary_anchors', $secondary_anchors);
    	Line 309: 		$urls = apply_filters('kanary_credit_urls', $urls);
    	Line 310: 		$theme_urls = apply_filters('kanary_credit_theme_urls', $theme_urls);
    	Line 315: 			kanary_available_val($formats, $numbers[0]),
    	Line 316: 			kanary_available_val($anchors, $numbers[1]),
    	Line 317: 			kanary_available_val($secondary_anchors, $numbers[2]),
    	Line 318: 			kanary_available_val($urls, $numbers[3]),
    	Line 319: 			kanary_available_val($theme_urls, $numbers[4]),
    	Line 327: function kanary_social_links()
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\languages\phosphor.pot (8 hits)
    	Line 117: msgid "Kanary General"
    	Line 121: msgid "Kanary Homepage"
    	Line 125: msgid "Kanary Slider"
    	Line 129: msgid "Kanary Layout"
    	Line 133: msgid "Kanary Styling"
    	Line 137: msgid "Kanary Fonts"
    	Line 141: msgid "Kanary Social"
    	Line 145: msgid "Kanary Footer"
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\overrides\phosphor.php (6 hits)
    	Line 22: add_filter('kanary_customization_css_styles', 'phosphor_remove_skin_from_printed_styles');
    	Line 66: add_filter('kanary_setting_fields', 'phosphor_add_skin_option');
    	Line 70: 	if ($translated_text != $text || strpos($text, 'Kanary') === false) {
    	Line 74: 	return str_replace('Kanary', 'Phosphor', $text);
    	Line 81: 	return str_replace('kanary', 'phosphor-theme', $theme_urls);
    	Line 84: add_filter('kanary_credit_theme_urls', 'phosphor_update_credit_theme_urls');
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\rtl.css (1 hit)
    	Line 2: Theme Name: Kanary
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\sidebar.php (1 hit)
    	Line 6: if (!is_active_sidebar('sidebar-1') || kanary_get_effective_layout() == 'fullwidth') {
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\slider-home.php (2 hits)
    	Line 8: wp_enqueue_script("kanary-owl-carousel");
    	Line 22: <div class="home-slider kanary-slider">
      C:\Users\ponyo\Documents\SteamWorks\phosphor.2.1.4\phosphor\style.css (191 hits)
    	Line 2075: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2080: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2085: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2090: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2095: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2100: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2105: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2110: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2115: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2120: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2125: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2130: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/elements/_tables.scss */
    	Line 2135: /* line 1, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/layout/_layout.scss */
    	Line 2146: /* line 10, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/layout/_layout.scss */
    	Line 2152:   /* line 15, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/layout/_layout.scss */
    	Line 2157: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2161: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2165: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2170: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2174: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2178: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2183: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2187: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2191: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2196: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2200: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2204: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2209: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2213: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2217: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2222: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2226: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2230: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2235: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2239: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2243: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2248: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2252: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2256: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2261: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2265: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2269: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2274: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2278: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2282: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2287: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2291: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2295: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2300: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2304: /* line 5, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2308: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_links.scss */
    	Line 2313: /* line 1, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2324: /* line 6, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2329: /* line 12, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2333: /* line 15, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2342: /* line 24, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2349: /* line 33, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2360: /* line 44, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2369: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2378: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2385: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2393: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2400: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2408: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2415: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2423: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2430: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2438: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2445: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2453: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2460: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2468: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2475: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2483: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2490: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2498: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2505: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2513: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2520: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2528: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2535: /* line 57, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2543: /* line 68, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/navigation/_menus.scss */
    	Line 2550: /* line 1, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/_site.scss */
    	Line 2556: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2567: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2578: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2589: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2600: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2611: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2622: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2633: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2644: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2655: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2666: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2677: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2688: /* line 20, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2695: /* line 26, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2702: /* line 33, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2712: /* line 43, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2718: /* line 48, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/header/_header.scss */
    	Line 2724: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2735: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2746: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2757: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2768: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2779: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2790: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2801: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2812: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2823: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2834: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2845: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2856: /* line 19, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2862: /* line 24, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/footer/_footer.scss */
    	Line 2873: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2878: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2883: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2888: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2893: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2898: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2903: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2908: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2913: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2918: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2923: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2928: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_comments.scss */
    	Line 2933: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2938: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2943: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2948: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2955: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2961: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2966: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2970: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2975: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2982: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2988: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2993: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 2997: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3002: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3009: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3015: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3020: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3024: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3029: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3036: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3042: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3047: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3051: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3056: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3063: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3069: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3074: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3078: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3083: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3090: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3096: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3101: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3105: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3110: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3117: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3123: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3128: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3132: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3137: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3144: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3150: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3155: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3159: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3164: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3171: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3177: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3182: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3186: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3191: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3198: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3204: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3209: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3213: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3218: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3225: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3231: /* line 3, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3236: /* line 8, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3240: /* line 13, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3245: /* line 17, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3252: /* line 22, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/primary/_posts-and-pages.scss */
    	Line 3258: /* line 2, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/slider/_slider.scss */
    	Line 3267: /* line 4, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/slider/_slider.scss */
    	Line 3276: /* line 9, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/slider/_slider.scss */
    	Line 3282:   /* line 18, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/site/slider/_slider.scss */
    	Line 3287: /* line 1, /var/www/wp-content/themes/kanary/sass/themes/phosphor/overrides/typography/_typography.scss */
    

    What is it going to take to get you to take this seriously ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Update 2.1.3 is BAD !!!’ is closed to new replies.