Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 142888

Logo still not displaying – Ongoing issue

$
0
0

Replies: 0

Hi

I’ve been trying to get help with my logo issue for many weeks now.

My original issue was posted at https://wordpress.org/support/topic/logo-wont-display/#post-9047559 – but no one seems to reply to that thread any more.

So can the theme owner please look at my code there and tell me where the issue lies – I have had it confirmed by my host that the logo is trying to load from ‘theme options’ rather than site Identity. This is an issue with the source code of the theme. I am simply trying to find out where that issue is. Which is why I pasted the code as seen again here;

This is from my child theme’s header.php, is there anything wrong with it?;

<!doctype html>
<!–[if lt IE 7 ]>
<html class=”ie ie6 ie-lt10 ie-lt9 ie-lt8 ie-lt7 no-js” lang=”en”> <![endif]–>
<!–[if IE 7 ]>
<html class=”ie ie7 ie-lt10 ie-lt9 ie-lt8 no-js” lang=”en”> <![endif]–>
<!–[if IE 8 ]>
<html class=”ie ie8 ie-lt10 ie-lt9 no-js” lang=”en”> <![endif]–>
<!–[if IE 9 ]>
<html class=”ie ie9 ie-lt10 no-js” lang=”en”> <![endif]–>
<!–[if gt IE 9]><!–>
<html class=”no-js” <?php language_attributes(); ?>><!–<![endif]–>
<!– the “no-js” class is for Modernizr. –>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=<?php bloginfo(‘charset’); ?>”/>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<?php $kyma_theme_options = kyma_theme_options(); ?>
<?php wp_head(); ?>
<meta name=”google-site-verification” content=”7n5Q5qvxsPOYpJ8mjGXOrfqq_MaqkqA8PlFHVYpu2Vg” />
<meta name=”msvalidate.01″ content=”96B513AC3EF921B6D2EF12A9C8A106EB” />
</head>
<?php $class = “”;
if ($kyma_theme_options[‘site_layout’] != “”) {
$class = ‘site_boxed ‘;
}
$class .= isset($kyma_theme_options[‘headercolorscheme’]) ? $kyma_theme_options[‘headercolorscheme’] : ”; ?>
<body <?php body_class(“menu_button_mode preloader3 menu_button_mode ” . $class); ?>>
<span id=”stickymenu”
style=”display:none;”><?php echo isset($kyma_theme_options[‘headersticky’]) ? esc_attr($kyma_theme_options[‘headersticky’]) : 1 ; ?></span>

<div id=”preloader”>
<div class=”spinner”>
<div class=”sk-dot1″></div>
<div class=”sk-dot2″></div>
<div class=”rect3″></div>
<div class=”rect4″></div>
<div class=”rect5″></div>
</div>
</div>
<div id=”main_wrapper”>
<header id=”site_header”>
<div class=”topbar <?php echo esc_attr($kyma_theme_options[‘topbarcolor’]); ?>”>
<!– class ( topbar_colored ) –>
<div class=”content clearfix”>
<?php if ($kyma_theme_options[‘contact_info_header’]) { ?>
<div class=”top_details clearfix f_left”><?php
if ($kyma_theme_options[‘contact_phone’]) {
?>
<span><i class=”fa fa-phone”></i><span
class=”title”><?php _e(‘Call Us :’, ‘kyma’) ?></span>“><?php echo esc_attr($kyma_theme_options[‘contact_phone’]); ?>
</span><?php
}
if ($kyma_theme_options[‘contact_email’]) {
?>
<span><i class=”fa fa-envelope-o”></i><span
class=”title”><?php _e(‘Email :’, ‘kyma’) ?></span>
“><?php echo sanitize_email($kyma_theme_options[‘contact_email’]); ?></span>
<?php } ?>
</div>
<?php } if ($kyma_theme_options[‘social_media_header’]) { ?>
<div class=”top-socials box_socials f_right”>
<?php if ($kyma_theme_options[‘social_facebook_link’] != ”) { ?>
” target=”_blank”>
<span class=”soc_name”><?php _e(‘Facebook’, ‘kyma’); ?></span>
<span class=”soc_icon_bg”></span>
<i class=”fa fa-facebook”></i>
<?php
}
if ($kyma_theme_options[‘social_facebook_link’] != ”) {
?>
” target=”_blank”>
<span class=”soc_name”><?php _e(‘Twitter’, ‘kyma’); ?></span>
<span class=”soc_icon_bg”></span>
<i class=”fa fa-twitter”></i>
<?php
}
if ($kyma_theme_options[‘social_google_plus_link’] != ”) {
?>
” target=”_blank”>
<span class=”soc_name”><?php _e(‘Google+’, ‘kyma’); ?></span>
<span class=”soc_icon_bg”></span>
<i class=”fa fa-google-plus”></i>
<?php
}
if ($kyma_theme_options[‘social_skype_link’] != ”) {
?>
“>
<span class=”soc_name”><?php _e(‘Skype’, ‘kyma’); ?></span>
<span class=”soc_icon_bg”></span>
<i class=”fa fa-skype”></i>
<?php
}
if ($kyma_theme_options[‘social_vimeo_link’] != ”) {
?>
” target=”_blank”>
<span class=”soc_name”><?php _e(‘Vimeo’, ‘kyma’); ?></span>
<span class=”soc_icon_bg”></span>
<i class=”fa fa-vimeo-square”></i>
<?php
}
if ($kyma_theme_options[‘social_youtube_link’] != ”) {
?>
” target=”_blank”>
<span class=”soc_name”><?php _e(‘YouTube’, ‘kyma’
); ?></span>
<span class=”soc_icon_bg”></span>
<i class=”fa fa-youtube”></i>
<?php
} ?>
</div><?php
} ?>
</div>
<!– End content –>
<span class=”top_expande not_expanded”>
<i class=”no_exp fa fa-angle-double-down”></i>
<i class=”exp fa fa-angle-double-up”></i>
</span>
</div>
<!– End topbar –>
<div id=”navigation_bar”
style=”<?php if (get_header_image()) : ?> background-image:url(‘<?php header_image();?>’); <?php endif; ?>”>
<div class=”content”>
<div id=”logo” <?php if ($kyma_theme_options[‘logo_layout’] == “right”) {
echo ‘style=”float:right;”‘;
} ?>>

title=”<?php echo esc_attr(get_bloginfo(‘name’, ‘display’)); ?>” rel=”home”>
<?php
if ($kyma_theme_options[‘upload_image_logo’]!=””) {
?>

alt=”<?php echo esc_attr(get_bloginfo(‘name’, ‘display’)); ?>”/>
<?php } else { ?>
<h3><?php echo esc_attr(get_bloginfo(‘name’)); ?></h3>
<?php } ?>

</div>
<nav id=”main_nav”>
<div id=”nav_menu”>
<span class=”mobile_menu_trigger”>
<span></span>
</span>
<?php wp_nav_menu(array(
‘theme_location’ => ‘primary’,
‘menu_class’ => ‘clearfix horizontal_menu’,
‘menu_id’ => ‘navy’,
‘fallback_cb’ => ‘kyma_fallback_page_menu’,
‘link_before’ => ‘<span>’,
‘link_after’ => ‘</span>’,
‘walker’ => new kyma_nav_walker(),
)
); ?>
</div>
</nav>
<!– End Nav –>
<div class=”clear”></div>
</div>
</div>
</header>
<!– End Main Header –>

This is the style css;

/*
Theme Name: Kyma Child Theme
Description: Kyma Child Theme
Template: kyma
Version: 1.0.0
*/

@import url(“../kyma/style.css”);

/* =Theme customization starts here
——————————————————- */
/* http://www.itij.co/sites/default/files/u2251/N.EU%20confirms%20flight%20delay%20compensation.SM_.jpg
http://utazz.ujszo.com/sites/default/files/photos/promoted/keses2.jpg
https://conversation.which.co.uk/wp-content/uploads/2010/08/airlinedelay_shutterstock_59317648.jpg
http://davidplusworld.com/wp-content/uploads/2011/11/Flight-delayed.jpg

http://lovefamilyholidays.co.uk/wp-content/uploads/2016/02/london-938880_1920.jpg
*/

.page-id-252 {
background-image: url(‘https://lovefamilyholidays.co.uk/wp-content/uploads/2016/02/london-938880_1920-2.jpg’) !important;
background-repeat: repeat !important;
background-position: top center !important;
}

}
.alignleft {
float: left;
margin-bottom: .5em;
margin-right: .5em;
}
.alignright {
float: right;
margin-bottom: .5em;
margin-left: .5em;
}
.page_title h1 {
display:none;
}
.advert-item span.advert-link {
text-align: center;
}
.wpcf7
{
background-color: #f7f7f7;
border: 2px solid orange;
padding: 25px !important;
}

This is home-service.php;

<?php $kyma_theme_options = kyma_theme_options();
if ($kyma_theme_options[‘home_service_enabled’] == 1){ ?>
<section class=”content_section bg_gray”>
<div class=”container”>
<div class=”main_title centered upper”><?php if ($kyma_theme_options[‘home_service_heading’] != “”){ ?>
<h2 id=”service_heading”><span class=”line”><span
class=”dot”></span></span><?php echo esc_attr($kyma_theme_options[‘home_service_heading’]);
} ?></h2>
</div>
<div class=”icon_boxes_con style1 clearfix”><?php
$col = 12 / (int)$kyma_theme_options[‘home_service_column’];
$color = array(”, ‘color1’, ‘color2’, ‘color3’);
for ($i = 1; $i <= 4; $i++) {
?>
<div class=”service col-md-<?php echo esc_attr($col); ?>”>
<div class=”service_box”>
<span class=”icon”>
” >
<i id=”service-icon-<?php echo $i; ?>” class=”<?php if ($kyma_theme_options[‘service_icon_’ . $i] != “”) { echo esc_attr($kyma_theme_options[‘service_icon_’ . $i] . ‘ ‘ . $color[$i – 1]); } ?>”></i>
</span>
” >
<div class=”service_box_con centered”>
<?php if ($kyma_theme_options[‘service_title_’ . $i] != “”) { ?>
<h3
id=”service-title-<?php echo $i; ?>”><?php echo esc_attr($kyma_theme_options[‘service_title_’ . $i]); ?></h3><?php
}
if ($kyma_theme_options[‘service_text_’ . $i] != “”) {
?>
<span id=”service-desc-<?php echo $i; ?>”
class=”desc”><?php echo esc_attr($kyma_theme_options[‘service_text_’ . $i]); ?></span><?php
}
if ($kyma_theme_options[‘service_link_’ . $i] != “”) {
?>

href=”<?php echo esc_url($kyma_theme_options[‘service_link_’ . $i]); ?>”
class=”ser-box-link”><span></span><?php _e(‘Read More’, ‘kyma’); ?>
<?php
} ?>
</div>

</div>
</div><?php
}
?>
</div>
</div>
</section>
<?php } ?>

Do any of these feature anything which will make this load from theme options rather than site identity?

I know I will probably get told off for starting a duplicate thread, but the old one appears to have been abandoned and this has been going on for weeks and weeks now. I need a resolution in order to stay with this theme.


Viewing all articles
Browse latest Browse all 142888

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>