|
Page 1 of 1 |
|
Posted: Sat, 3rd May 2014 22:01 Post subject: Php Opencart theme |
|
 |
Hi, I need to edit Opencart theme. The search bar and the cart bar now are floating somewhere in the middle of the header. I need them to be on the right side of the main menu. Could somebody modify it? I'll send you the theme if you need more code.
Here is the header code:
Spoiler: |
Code: |
<!DOCTYPE html>
<html dir="<?php echo $direction; ?>" lang="<?php echo $lang; ?>">
<head>
<meta charset="UTF-8" />
<?php if($this->config->get('marketshop_responsive_design')== 1) { ?>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<?php } else { ?>
<meta name="viewport" content="width=1220">
<?php } ?>
<title><?php echo $title; ?></title>
<base href="<?php echo $base; ?>" />
<?php if ($description) { ?>
<meta name="description" content="<?php echo $description; ?>" />
<?php } ?>
<?php if ($keywords) { ?>
<meta name="keywords" content="<?php echo $keywords; ?>" />
<?php } ?>
<?php if ($icon) { ?>
<link href="<?php echo $icon; ?>" rel="icon" />
<?php } ?>
<?php foreach ($links as $link) { ?>
<link href="<?php echo $link['href']; ?>" rel="<?php echo $link['rel']; ?>" />
<?php } ?>
<link rel="stylesheet" type="text/css" href="catalog/view/theme/marketshop/stylesheet/stylesheet.css" />
<link rel="stylesheet" type="text/css" href="catalog/view/theme/marketshop/stylesheet/flexslider.css" />
<?php if($this->config->get('marketshop_search_auto_complete')== 1) { ?>
<link rel="stylesheet" type="text/css" href="catalog/view/theme/marketshop/stylesheet/jquery.autocomplete.css" />
<?php } ?>
<?php foreach ($styles as $style) { ?>
<link rel="<?php echo $style['rel']; ?>" type="text/css" href="<?php echo $style['href']; ?>" media="<?php echo $style['media']; ?>" />
<?php } ?>
<?php if($this->config->get('marketshop_responsive_design')== 1) { ?>
<link rel="stylesheet" type="text/css" href="catalog/view/theme/marketshop/stylesheet/responsive2.css" />
<?php } ?>
<?php if ($direction == 'rtl') { ?>
<link rel="stylesheet" type="text/css" href="catalog/view/theme/marketshop/stylesheet/stylesheet-rtl.css" />
<?php } ?>
<?php if($this->config->get('marketshop_responsive_design')== 1) { ?>
<?php if ($direction == 'rtl') { ?>
<link rel="stylesheet" type="text/css" href="catalog/view/theme/marketshop/stylesheet/responsive-rtl.css" />
<?php } ?>
<?php } ?>
<script type="text/javascript" src="catalog/view/javascript/jquery/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="catalog/view/javascript/jquery/ui/jquery-ui-1.8.16.custom.min.js"></script>
<link rel="stylesheet" type="text/css" href="catalog/view/javascript/jquery/ui/themes/ui-lightness/jquery-ui-1.8.16.custom.css" />
<script type="text/javascript" src="catalog/view/javascript/common.js"></script>
<script type="text/javascript" src="catalog/view/theme/marketshop/js/jquery.easing-1.3.min.js"></script>
<script type="text/javascript" src="catalog/view/theme/marketshop/js/jquery.flexslider.js" ></script>
<script type="text/javascript" src="catalog/view/theme/marketshop/js/custom.js"></script>
<script type="text/javascript" src="catalog/view/theme/marketshop/js/cloud_zoom.js"></script>
<?php if($this->config->get('marketshop_search_auto_complete')== 1) { ?>
<?php if (isset($this->request->get['route']) && $this->request->get['route'] != 'affiliate/tracking') { ?>
<script src="catalog/view/theme/marketshop/js/jquery.autocomplete.js" type="text/javascript"></script>
<?php } ?>
<?php if (isset($this->request->get['route']) != 'affiliate/tracking') { ?>
<script src="catalog/view/theme/marketshop/js/jquery.autocomplete.js" type="text/javascript"></script>
<?php } ?>
<script type="text/javascript">
$(document).ready(function() {
$("#filter_name").autocomplete("getdata.php?lan=<?php echo $_SESSION['language']; ?>", {
width: 260,
matchContains: true,
selectFirst: true
});
});
</script>
<?php } ?>
<?php foreach ($scripts as $script) { ?>
<script type="text/javascript" src="<?php echo $script; ?>"></script>
<?php } ?>
<?php
if($this->config->get('marketshop_status')== 1) {
if($this->config->get('marketshop_title_font')!='' || $this->config->get('marketshop_body_font')!='' || $this->config->get('marketshop_top_bar_font')!='' || $this->config->get('marketshop_secondary_titles_font')!='' || $this->config->get('marketshop_footer_titles_font')!='' || $this->config->get('marketshop_main_menu_font') != '' ) {
$regfonts = array('Arial', 'Verdana', 'Helvetica', 'Lucida Grande', 'Trebuchet MS', 'Times New Roman', 'Tahoma', 'Georgia' );
if (in_array($this->config->get('marketshop_title_font'), $regfonts)==false) { ?>
<link href='//fonts.googleapis.com/css?family=<?php echo $this->config->get('marketshop_title_font') ?>:300,400,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<?php }
if (in_array($this->config->get('marketshop_body_font'), $regfonts)==false) { ?>
<link href='//fonts.googleapis.com/css?family=<?php echo $this->config->get('marketshop_body_font') ?>:300,400,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<?php }
if (in_array($this->config->get('marketshop_main_menu_font'), $regfonts)==false) { ?>
<link href='//fonts.googleapis.com/css?family=<?php echo $this->config->get('marketshop_main_menu_font') ?>:300,400,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<?php }
if (in_array($this->config->get('marketshop_top_bar_font'), $regfonts)==false) { ?>
<link href='//fonts.googleapis.com/css?family=<?php echo $this->config->get('marketshop_top_bar_font') ?>:300,400,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<?php }
if (in_array($this->config->get('marketshop_secondary_titles_font'), $regfonts)==false) { ?>
<link href='//fonts.googleapis.com/css?family=<?php echo $this->config->get('marketshop_secondary_titles_font') ?>:300,400,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<?php }
if (in_array($this->config->get('marketshop_footer_titles_font'), $regfonts)==false) { ?>
<link href='//fonts.googleapis.com/css?family=<?php echo $this->config->get('marketshop_footer_titles_font') ?>:300,400,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<?php }
}
?>
<style type="text/css">
<?php if($this->config->get('marketshop_responsive_design')== 2) { ?>
.wrapper-box{width:1220px;}
.main-wrapper, #footer .fpart-inner{width:1170px;}
.wrapper-box .htop .main-wrapper{width:1220px;}
<?php } ?>
body {
<?php if($this->config->get('marketshop_background_color')!='') {
?> background-color: <?php echo $this->config->get('marketshop_background_color');
?>;
<?php
}
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
$path_image = $this->config->get('config_ssl') . 'image/';
} else {
$path_image = $this->config->get('config_url') . 'image/';
}
if($this->config->get('marketshop_custom_image')!='') { ?>
background-image: url("<?php echo $path_image . $this->config->get('marketshop_custom_image') ?>"); ?>; background-position: top center; background-repeat: no-repeat;
<?php
}
else if($this->config->get('marketshop_custom_pattern')!='') { ?>
background-image: url("<?php echo $path_image . $this->config->get('marketshop_custom_pattern') ?>"); ?>;
<?php
}
else if($this->config->get('marketshop_pattern_overlay')!='none') { ?>
background-image: url("catalog/view/theme/marketshop/image/patterns/<?php echo $this->config->get('marketshop_pattern_overlay'); ?>.png");
<?php
}
else {
?> background-image: none;
<?php
}
?>
}
<?php if($this->config->get('marketshop_theme_color')!='') { ?>
#header #cart .heading h4, .pagination .links b, .nivo-directionNav .nivo-nextNav:hover, .nivo-directionNav .nivo-prevNav:hover, #back-top a:hover, .flex-control-paging li a.flex-active, .nivo-controlNav a.active, .flex_slider .flex-direction-nav .flex-prev:hover, .flex_slider .flex-direction-nav .flex-next:hover {background-color: <?php echo $this->config->get('marketshop_theme_color');?>;}
.pagination .links a:hover{color: <?php echo $this->config->get('marketshop_theme_color'); ?>;}
.pagination .links b, #header #cart .content{border-color: <?php echo $this->config->get('marketshop_theme_color'); ?>;}
#header #cart.active .heading a span:after{border-bottom-color:<?php echo $this->config->get('marketshop_theme_color'); ?>;}
<?php
}
if($this->config->get('marketshop_body_text_color')!='') {?>
body {color: <?php echo $this->config->get('marketshop_body_text_color'); ?>;}
<?php
}
if($this->config->get('marketshop_general_links_color')!='') {?>
a, a b, .articleHeader span a {color: <?php echo $this->config->get('marketshop_general_links_color'); ?>;}
<?php
}
if($this->config->get('marketshop_general_links_hover_color')!='') {?>
a:hover, a b:hover, .category .tabs li a:hover, .sitemap li a:hover, .breadcrumb a:hover, .login-content .right a:hover, .box-category a:hover, .list-item a:hover, #blogArticle .articleHeader h1 a:hover, #blogCatArticles .articleHeader h3 a:hover, .tags-update .tags a:hover, .articleHeader span a:hover {color: <?php echo $this->config->get('marketshop_general_links_hover_color'); ?>;}
<?php
}
if($this->config->get('marketshop_heading_color')!='') {?>
.welcome, #container h1{color: <?php echo $this->config->get('marketshop_heading_color'); ?>;}
<?php
}
if($this->config->get('marketshop_secondary_heading_color')!='') {?>
#container h2, .box .box-heading, .product-tab .htabs a, .product-tab .tabs li a{color: <?php echo $this->config->get('marketshop_secondary_heading_color'); ?>;}
<?php
}
if($this->config->get('marketshop_secondary_heading_border_color')!='') {?>
#container h2, .box .box-heading, .product-tab .htabs a, .product-tab .tabs li.active a, .product-tab .tabs, .category .tabs li.active a{border-color: <?php echo $this->config->get('marketshop_secondary_heading_border_color'); ?>;}
/*===== TOP BAR =====*/
<?php
}
if($this->config->get('marketshop_top_bar_bg_color')!='') {?>
#header .htop{background-color:<?php echo $this->config->get('marketshop_top_bar_bg_color'); ?>;}
<?php
}
if($this->config->get('marketshop_top_bar_link_color')!='') {?>
#header .links a, #language span a, #currency span a, #language, #currency, #header #welcome a{color:<?php echo $this->config->get('marketshop_top_bar_link_color'); ?>;}
<?php
}
if($this->config->get('marketshop_top_bar_link_color')!='') {?>
#language span b, #currency span b, #header .links > div.wrap_custom_block a b{border-top-color:<?php echo $this->config->get('marketshop_top_bar_link_color'); ?>;}
<?php
}
if(($this->config->get('marketshop_top_bar_link_separator_style')!='') && ($this->config->get('marketshop_top_bar_link_separator_color')!='')) {?>
#header .links > a, #language, #currency, #header #welcome a, #header .links .wrap_custom_block > a{border-left:1px <?php echo $this->config->get('marketshop_top_bar_link_separator_style')?> <?php echo $this->config->get('marketshop_top_bar_link_separator_color')?>}
<?php
}
if(($this->config->get('marketshop_top_bar_link_separator_style')!='') && ($this->config->get('marketshop_top_bar_link_separator_color')!='')) {?>
#header .links{border-right:1px <?php echo $this->config->get('marketshop_top_bar_link_separator_style')?> <?php echo $this->config->get('marketshop_top_bar_link_separator_color')?>}
<?php
}
if($this->config->get('marketshop_top_bar_sub_link_color')!='') {?>
#language ul li a, #currency ul li a, #currency ul li a b{color:<?php echo $this->config->get('marketshop_top_bar_sub_link_color'); ?>;}
<?php
}
if($this->config->get('marketshop_top_bar_sub_link_hover_color')!='') {?>
#language ul li a:hover, #currency ul li a:hover{color:<?php echo $this->config->get('marketshop_top_bar_sub_link_hover_color'); ?>;}
/*===== MAIN MENU =====*/
<?php
}
if(($this->config->get('marketshop_menu_bg_color')!='') && ($this->config->get('marketshop_menu_bg_color_status') ==1)) { ?>
#menu {background-color: <?php echo $this->config->get('marketshop_menu_bg_color'); ?>;}
<?php
}
if($this->config->get('marketshop_menu_bg_color_hover')!='') {?>
#menu > ul > li:hover > a {background-color: <?php echo $this->config->get('marketshop_menu_bg_color_hover'); ?>;}
<?php
}
if($this->config->get('marketshop_menu_link_color')!='') {?>
#menu > ul > li > a {color: <?php echo $this->config->get('marketshop_menu_link_color'); ?>;}
<?php
}
if($this->config->get('marketshop_menu_link_hover_color')!='') {?>
#menu > ul > li:hover > a {color: <?php echo $this->config->get('marketshop_menu_link_hover_color'); ?>;}
<?php
}
if(($this->config->get('marketshop_menu_link_separator_size')!='') && ($this->config->get('marketshop_menu_link_separator_style')!='') && ($this->config->get('marketshop_menu_link_separator_color')!='') && ($this->config->get('marketshop_menu_link_separator_status') ==1)) {?>
#menu > ul > li + li{border-left:<?php echo $this->config->get('marketshop_menu_link_separator_size')?>px <?php echo $this->config->get('marketshop_menu_link_separator_style')?> <?php echo $this->config->get('marketshop_menu_link_separator_color')?>}
<?php
}
if(($this->config->get('marketshop_menu_link_border_top_size')!='') && ($this->config->get('marketshop_menu_link_border_top_style')!='') && ($this->config->get('marketshop_menu_link_border_top_color')!='') && ($this->config->get('marketshop_menu_link_border_top_status') ==1)) {?>
#menu{border-top:<?php echo $this->config->get('marketshop_menu_link_border_top_size')?>px <?php echo $this->config->get('marketshop_menu_link_border_top_style')?> <?php echo $this->config->get('marketshop_menu_link_border_top_color')?>}
<?php
}
if(($this->config->get('marketshop_menu_link_border_top_status') == 2)) {?>
#menu{border-top:none;}
<?php
}
if(($this->config->get('marketshop_menu_link_border_bottom_size')!='') && ($this->config->get('marketshop_menu_link_border_bottom_style')!='') && ($this->config->get('marketshop_menu_link_border_bottom_color')!='') && ($this->config->get('marketshop_menu_link_border_bottom_status') == 1)) {?>
#menu{border-bottom:<?php echo $this->config->get('marketshop_menu_link_border_bottom_size')?>px <?php echo $this->config->get('marketshop_menu_link_border_bottom_style')?> <?php echo $this->config->get('marketshop_menu_link_border_bottom_color')?>}
<?php
}
if(($this->config->get('marketshop_menu_link_border_bottom_status') == 2)) {?>
#menu{border-bottom:none;}
<?php
}
if($this->config->get('marketshop_sub_menu_background_color')!='') {?>
#menu > ul > li.categories_hor > div, #menu > ul > li.categories > div, #menu > ul > li.categories_hor > div .submenu, #menu > ul > li.categories > div > .column > div, #menu > ul > li > div, #menu .submenu{background-color:<?php echo $this->config->get('marketshop_sub_menu_background_color'); ?>;}
<?php
}
if($this->config->get('marketshop_sub_menu_top_border_color')!='') {?>
#menu > ul > li.categories_hor > div, #menu > ul > li.categories > div, #menu > ul > li.categories_hor > div .submenu, #menu > ul > li.categories > div > .column > div, #menu > ul > li > div, #menu .submenu{border-color:<?php echo $this->config->get('marketshop_sub_menu_top_border_color'); ?>;}
<?php
}
if($this->config->get('marketshop_sub_menu_top_border_color')!='') {?>
#menu > ul > li.sub:hover > a:after{border-bottom-color:<?php echo $this->config->get('marketshop_sub_menu_top_border_color'); ?>;}
<?php
}
if($this->config->get('marketshop_sub_menu_heading_text_color')!='') {?>
#menu > ul > li.categories_hor > div > .column > a{color:<?php echo $this->config->get('marketshop_sub_menu_heading_text_color'); ?>;}
<?php
}
if(($this->config->get('marketshop_sub_menu_heading_text_separator_color')!='') && ($this->config->get('marketshop_sub_menu_heading_text_separator_style')!='')) {?>
#menu > ul > li.categories_hor > div > .column > a{border-bottom:1px <?php echo $this->config->get('marketshop_sub_menu_heading_text_separator_style')?> <?php echo $this->config->get('marketshop_sub_menu_heading_text_separator_color')?>
}
<?php
}
if($this->config->get('marketshop_sub_menu_link_color')!='') {?>
#menu > ul > li.categories > div > .column > a, #menu > ul > li div > ul > li > a {color: <?php echo $this->config->get('marketshop_sub_menu_link_color'); ?>;}
<?php
}
if($this->config->get('marketshop_sub_menu_link_hover_color')!='') {?>
#menu > ul > li.categories > div > .column:hover > a, #menu > ul > li div > ul > li > a:hover, #menu > ul > li.categories_hor > div > .column:hover > a {
color: <?php echo $this->config->get('marketshop_sub_menu_link_hover_color'); ?>;}
<?php
}
if(($this->config->get('marketshop_sub_menu_link_separator_color')!='') && ($this->config->get('marketshop_sub_menu_link_separator_style')!='')) {?>
#menu > ul > li.categories > div > .column + .column, #menu > ul > li > div > ul li + li, #menu > ul > li.categories > div > .column:hover > div ul li + li {border-top:1px <?php echo $this->config->get('marketshop_sub_menu_link_separator_style')?> <?php echo $this->config->get('marketshop_sub_menu_link_separator_color')?>}
/*===== SLIDE BLOCKS =====*/
<?php
}
if($this->config->get('marketshop_custom_block_bg_color')!='') {?>
.custom_side_block_icon{background-color: <?php echo $this->config->get('marketshop_custom_block_bg_color'); ?>;}
<?php
}
if($this->config->get('marketshop_custom_block_bg_color')!='') {?>
#custom_side_block{border-color: <?php echo $this->config->get('marketshop_custom_block_bg_color'); ?>;}
/*===== FOOTER =====*/
<?php
}
if($this->config->get('marketshop_footer_bg_color')!='') {?>
#footer .fpart-first {background-color: <?php echo $this->config->get('marketshop_footer_bg_color'); ?>;}
<?php
}
if($this->config->get('marketshop_footer_titles_color')!='') {?>
#footer h3 {color: <?php echo $this->config->get('marketshop_footer_titles_color'); ?>;}
<?php
}
if($this->config->get('marketshop_footer_text_color')!='') {?>
#footer .fpart-first {color: <?php echo $this->config->get('marketshop_footer_text_color'); ?>;}
<?php
}
if($this->config->get('marketshop_footer_link_color')!='') {?>
#footer .fpart-first a {color: <?php echo $this->config->get('marketshop_footer_link_color'); ?>;}
<?php
}
if($this->config->get('marketshop_footer_link_hover_color')!='') {?>
#footer .fpart-first a:hover {color: <?php echo $this->config->get('marketshop_footer_link_hover_color'); ?>;}
<?php
}
if($this->config->get('marketshop_footer_second_bg_color')!='') {?>
#footer .fpart-second {background-color: <?php echo $this->config->get('marketshop_footer_second_bg_color'); ?>;}
<?php
}
if($this->config->get('marketshop_footer_second_text_color')!='') {?>
#footer .fpart-second {color: <?php echo $this->config->get('marketshop_footer_second_text_color'); ?>;}
<?php
}
if($this->config->get('marketshop_footer_second_link_color')!='') {?>
#footer .fpart-second a {color: <?php echo $this->config->get('marketshop_footer_second_link_color'); ?>;}
<?php
}
if($this->config->get('marketshop_footer_second_link_hover_color')!='') {?>
#footer .fpart-second a:hover {color: <?php echo $this->config->get('marketshop_footer_second_link_hover_color'); ?>;}
<?php
}
if(($this->config->get('marketshop_footer_second_separator_color')!='') && ($this->config->get('marketshop_footer_second_separator_style')!='')) {
?>#footer #powered {border-bottom:<?php echo $this->config->get('marketshop_footer_second_separator_size')?>px <?php echo $this->config->get('marketshop_footer_second_separator_style')?> <?php echo $this->config->get('marketshop_footer_second_separator_color')?>}
/*===== PRICE =====*/
<?php
}
if($this->config->get('marketshop_price_color')!='') {?>
.box-product .price, .product-info .price, .product-grid .price, .slider_pprice, .product-list .price {color: <?php echo $this->config->get('marketshop_price_color'); ?>;}
<?php
}
if($this->config->get('marketshop_old_price_color')!='') {?>
.box-product .price-old, .product-info .price-old, .product-grid .price-old, .product-list .price-old {color: <?php echo $this->config->get('marketshop_old_price_color'); ?>;}
<?php
}
if($this->config->get('marketshop_new_price_color')!='') {?>
.box-product .price-new, .product-grid .price-new, .product-list .price-new {color: <?php echo $this->config->get('marketshop_new_price_color'); ?>;}
<?php
}
if($this->config->get('marketshop_tax_price_color')!='') {?>
.product-info .price-tax, .product-grid .price .price-tax, .product-list .price-tax {color: <?php echo $this->config->get('marketshop_tax_price_color'); ?>;}
<?php
}
if($this->config->get('marketshop_saving_percentage_bg_color')!='') {?>
.saving{background-color: <?php echo $this->config->get('marketshop_saving_percentage_bg_color'); ?>;}
<?php
}
if($this->config->get('marketshop_saving_percentage_text_color')!='') {?>
.saving {color: <?php echo $this->config->get('marketshop_saving_percentage_text_color'); ?>;}
/*===== BUTTON =====*/
<?php
}
if($this->config->get('marketshop_button_bg_color')!='') {?>
a.button, input.button {background-color: <?php echo $this->config->get('marketshop_button_bg_color'); ?>;}
<?php
}
if($this->config->get('marketshop_button_bg_hover_color')!='') {?>
a.button:hover, input.button:hover {background-color: <?php echo $this->config->get('marketshop_button_bg_hover_color'); ?>;}
<?php
}
if($this->config->get('marketshop_button_text_color')!='') {?>
a.button, input.button {color: <?php echo $this->config->get('marketshop_button_text_color'); ?>;}
<?php
}
if($this->config->get('marketshop_button_text_hover_color')!='') {?>
a.button:hover, input.button:hover {color: <?php echo $this->config->get('marketshop_button_text_hover_color'); ?>;}
/*===== Exclusive BUTTONS =====*/
<?php
}
if($this->config->get('marketshop_excl_button_bg_color')!='') {?>
.product-info .cart #button-cart {background-color: <?php echo $this->config->get('marketshop_excl_button_bg_color'); ?>;}
<?php
}
if($this->config->get('marketshop_excl_button_bg_hover_color')!='') {?>
.product-info .cart #button-cart:hover {background-color: <?php echo $this->config->get('marketshop_excl_button_bg_hover_color'); ?>;}
<?php
}
if($this->config->get('marketshop_excl_button_text_color')!='') {?>
.product-info .cart #button-cart {color: <?php echo $this->config->get('marketshop_excl_button_text_color'); ?>;}
<?php
}
if($this->config->get('marketshop_excl_button_text_hover_color')!='') {?>
.product-info .cart #button-cart:hover {color: <?php echo $this->config->get('marketshop_excl_button_text_hover_color'); ?>;}
/*===== AddToCart BUTTONS =====*/
<?php
}
if($this->config->get('marketshop_cart_button_bg_color')!='') {?>
.box-product > .flexslider ul li .cart input, .box-product > .flexslider ul li .cart a, .product-grid .cart input, .product-list .cart input {background-color: <?php echo $this->config->get('marketshop_cart_button_bg_color'); ?>;}
<?php
}
if($this->config->get('marketshop_cart_button_bg_hover_color')!='') {?>
.box-product > .flexslider ul li .cart input:hover, .box-product > .flexslider ul li .cart a:hover, .product-grid .cart input:hover, .product-list .cart input:hover {background-color: <?php echo $this->config->get('marketshop_cart_button_bg_hover_color'); ?>;
}
<?php
}
if($this->config->get('marketshop_cart_button_text_color')!='') {?>
.box-product > .flexslider ul li .cart input, .box-product > .flexslider ul li .cart a, .product-grid .cart input, .product-list .cart input {color: <?php echo $this->config->get('marketshop_cart_button_text_color');?>;}
<?php
}
if($this->config->get('marketshop_cart_button_text_hover_color')!='') {?>
.box-product > .flexslider ul li .cart input:hover, .box-product > .flexslider ul li .cart a:hover, .product-grid .cart input:hover, .product-list .cart input:hover {color: <?php echo $this->config->get('marketshop_cart_button_text_hover_color');?>;}
/*===== FONTS =====*/
<?php
}
if ($this->config->get('marketshop_body_font') != '' ) {
$fontpre = $this->config->get('marketshop_body_font');
$font = str_replace("+", " ", $fontpre); ?>
body{font-family:<?php echo $font ?>;}
<?php
}
if($this->config->get('marketshop_title_font')!='') {
$fontpre = $this->config->get('marketshop_title_font');
$font = str_replace("+", " ", $fontpre); ?>
.welcome, #container h1{font-family:<?php echo $font ?>;}
<?php
}
if($this->config->get('marketshop_title_font_size')!='') {?>
.welcome, #container h1 {font-size:<?php echo $this->config->get('marketshop_title_font_size');?>;}
<?php
}
if($this->config->get('marketshop_title_font_weight')!='') {?>
.welcome, #container h1{font-weight:<?php echo $this->config->get('marketshop_title_font_weight');?>;}
<?php
}
if($this->config->get('marketshop_title_font_uppercase')!='') {?>
.welcome, #container h1 {text-transform:<?php echo $this->config->get('marketshop_title_font_uppercase');?>;}
<?php
}
if($this->config->get('marketshop_main_menu_font')!='') {
$fontpre = $this->config->get('marketshop_main_menu_font');
$font = str_replace("+", " ", $fontpre); ?>
#menu {font-family:<?php echo $font ?>;}
<?php
}
if($this->config->get('marketshop_main_menu_font_size')!='') {?>
#menu > ul > li > a {font-size:<?php echo $this->config->get('marketshop_main_menu_font_size');?>;}
<?php
}
if($this->config->get('marketshop_main_menu_font_weight')!='') {?>
#menu > ul > li > a {font-weight:<?php echo $this->config->get('marketshop_main_menu_font_weight');?>;}
<?php
}
if($this->config->get('marketshop_main_menu_font_uppercase')!='') {?>
#menu > ul > li > a {text-transform:<?php echo $this->config->get('marketshop_main_menu_font_uppercase');?>;}
<?php
}
if($this->config->get('marketshop_top_bar_font')!='') {
$fontpre = $this->config->get('marketshop_top_bar_font');
$font = str_replace("+", " ", $fontpre); ?>
#header .htop {font-family:<?php echo $font ?>;}
<?php
}
if($this->config->get('marketshop_top_bar_font_size')!='') {?>
#header #welcome a, #header .links a, #language span a, #currency span a, #header .links .wrap_custom_block > a {font-size:<?php echo $this->config->get('marketshop_top_bar_font_size');?>;}
<?php
}
if($this->config->get('marketshop_top_bar_font_weight')!='') {?>
#header #welcome a, #header .links a, #language span a, #currency span a, #header .links .wrap_custom_block > a {font-weight:<?php echo $this->config->get('marketshop_top_bar_font_weight');?>;}
<?php
}
if($this->config->get('marketshop_top_bar_font_uppercase')!='') {?>
#header #welcome a, #header .links a, #language span a, #currency span a, #header .links .wrap_custom_block > a {text-transform:<?php echo $this->config->get('marketshop_top_bar_font_uppercase');?>;}
<?php
}
if($this->config->get('marketshop_secondary_titles_font')!='') {
$fontpre = $this->config->get('marketshop_secondary_titles_font');
$font = str_replace("+", " ", $fontpre);
?>#container h2, .box .box-heading, .product-tab .htabs a, .product-tab .tabs li a, .welcome{font-family:<?php echo $font ?>;}
<?php
}
if($this->config->get('marketshop_secondary_titles_font_size')!='') {?>
#container h2, .box .box-heading, .product-tab .htabs a, .product-tab .tabs li a, .welcome {font-size:<?php echo $this->config->get('marketshop_secondary_titles_font_size');?>;}
<?php
}
if($this->config->get('marketshop_secondary_titles_font_weight')!='') {?>
#container h2, .box .box-heading, .product-tab .htabs a, .product-tab .tabs li a, .welcome{font-weight:<?php echo $this->config->get('marketshop_secondary_titles_font_weight');?>;}
<?php
}
if($this->config->get('marketshop_secondary_titles_font_uppercase')!='') {?>
#container h2, .box .box-heading, .product-tab .htabs a, .product-tab .tabs li a, .welcome {text-transform:<?php echo $this->config->get('marketshop_secondary_titles_font_uppercase');?>;}
<?php
}
if($this->config->get('marketshop_footer_titles_font')!='') {
$fontpre = $this->config->get('marketshop_footer_titles_font');
$font = str_replace("+", " ", $fontpre); ?>
#footer h3{font-family:<?php echo $font ?>;}
<?php
}
if($this->config->get('marketshop_footer_titles_font_size')!='') {?>
#footer h3{font-size:<?php echo $this->config->get('marketshop_footer_titles_font_size');?>;}
<?php
}
if($this->config->get('marketshop_footer_titles_font_weight')!='') {?>
#footer h3{font-weight:<?php echo $this->config->get('marketshop_footer_titles_font_weight');?>;}
<?php
}
if($this->config->get('marketshop_footer_titles_font_uppercase')!='') {?>
#footer h3{text-transform:<?php echo $this->config->get('marketshop_footer_titles_font_uppercase');?>;}
<?php
}
if ($this->config->get('marketshop_custom_css') != '') {
echo htmlspecialchars_decode($this->config->get('marketshop_custom_css'));
}
?>
<?php if($this->config->get('marketshop_responsive_design')== 1) { ?>
@media screen and (max-width:800px) {
<?php }
if($this->config->get('marketshop_top_bar_bg_color')!='') {?>
.left-top{background-color:<?php echo $this->config->get('marketshop_top_bar_bg_color'); ?>;}
<?php }
if($this->config->get('marketshop_menu_link_color')!='') {?>
#menu > span {color: <?php echo $this->config->get('marketshop_menu_link_color'); ?>;}
<?php }
if($this->config->get('marketshop_menu_link_color')!='') {?>
#menu > span:before{border-bottom-color: <?php echo $this->config->get('marketshop_menu_link_color'); ?>;}
<?php }
if($this->config->get('marketshop_menu_link_color')!='') {?>
#menu > span:after{border-top-color: <?php echo $this->config->get('marketshop_menu_link_color'); ?>;}
<?php }
if(($this->config->get('marketshop_menu_link_border_bottom_size')!='') && ($this->config->get('marketshop_menu_link_border_bottom_style')!='') && ($this->config->get('marketshop_menu_link_border_bottom_color')!='') && ($this->config->get('marketshop_menu_link_border_bottom_status') ==1)) {?>
#menu > ul{border-top:<?php echo $this->config->get('marketshop_menu_link_border_bottom_size')?>px <?php echo $this->config->get('marketshop_menu_link_border_bottom_style')?> <?php echo $this->config->get('marketshop_menu_link_border_bottom_color')?>}<?php } ?>
}
<?php } ?>
</style>
<?php if ($stores) { ?>
<script type="text/javascript"><!--
$(document).ready(function() {
<?php foreach ($stores as $store) { ?>
$('body').prepend('<iframe src="<?php echo $store; ?>" style="display: none;"></iframe>');
<?php } ?>
});
//--></script>
<?php } ?>
<?php echo $google_analytics; ?>
</head>
<body>
<?php if($this->config->get('marketshop_layout_style')== 1) { ?><div class="wrapper-wide"><?php } ?>
<?php if($this->config->get('marketshop_layout_style')== 2) { ?><div class="wrapper-box"><?php } ?>
<?php if($this->config->get('marketshop_header_style')== 1) { ?><div id="header" ><?php } ?>
<?php if($this->config->get('marketshop_header_style')== 2) { ?><div id="header" class="style2"><?php } ?>
<?php if($this->config->get('marketshop_header_style')== 3) { ?><div id="header" class="style3"><?php } ?>
<div class="htop">
<div class="main-wrapper">
<span class="drop-icon"></span>
<div class="left-top">
<?php echo $language; ?>
<?php echo $currency; ?>
<?php $language = (int)$this->config->get('config_language_id');?>
<div class="links">
<?php if($this->config->get('marketshop_custom_link1_top')== 1) {
$marketshop_custom_link1_top_title = $this->config->get('marketshop_custom_link1_top_title');
if((isset($marketshop_custom_link1_top_title[$language]) && $marketshop_custom_link1_top_title[$language] != '')) { ?>
<a href="<?php echo $this->config->get('marketshop_custom_link1_top_url'); ?>" target="<?php echo $this->config->get('marketshop_target_link1_top'); ?>">
<?php echo $marketshop_custom_link1_top_title[$language]; ?></a>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_link2_top')== 1) {
$marketshop_custom_link2_top_title = $this->config->get('marketshop_custom_link2_top_title');
if((isset($marketshop_custom_link2_top_title[$language]) && $marketshop_custom_link2_top_title[$language] != '')) { ?>
<a href="<?php echo $this->config->get('marketshop_custom_link2_top_url'); ?>" target="<?php echo $this->config->get('marketshop_target_link2_top'); ?>">
<?php echo $marketshop_custom_link2_top_title[$language]; ?></a>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_link3_top')== 1) {
$marketshop_custom_link3_top_title = $this->config->get('marketshop_custom_link3_top_title');
if((isset($marketshop_custom_link3_top_title[$language]) && $marketshop_custom_link3_top_title[$language] != '')) { ?>
<a href="<?php echo $this->config->get('marketshop_custom_link3_top_url'); ?>" target="<?php echo $this->config->get('marketshop_target_link3_top'); ?>">
<?php echo $marketshop_custom_link3_top_title[$language]; ?></a>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_block_top_status')== 1) {
$marketshop_custom_block_top_title = $this->config->get('marketshop_custom_block_top_title');
$marketshop_custom_block_top_content = $this->config->get('marketshop_custom_block_top_content');
if(isset($marketshop_custom_block_top_title[$language]) && $marketshop_custom_block_top_title[$language]!= '') { ?>
<div class="wrap_custom_block"><a><?php echo $marketshop_custom_block_top_title[$language]; ?><b></b></a>
<div class="custom_block">
<ul>
<li><?php echo html_entity_decode($marketshop_custom_block_top_content[$language], ENT_QUOTES, 'UTF-8'); ?></li>
</ul>
</div>
</div>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_block2_top_status')== 1) {
$marketshop_custom_block2_top_title = $this->config->get('marketshop_custom_block2_top_title');
$marketshop_custom_block2_top_content = $this->config->get('marketshop_custom_block2_top_content');
if(isset($marketshop_custom_block2_top_title[$language]) && $marketshop_custom_block2_top_title[$language]!= '') { ?>
<div class="wrap_custom_block"><a><?php echo $marketshop_custom_block2_top_title[$language]; ?><b></b></a>
<div class="custom_block">
<ul>
<li><?php echo html_entity_decode($marketshop_custom_block2_top_content[$language], ENT_QUOTES, 'UTF-8'); ?></li>
</ul>
</div>
</div>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_wishlist_top_link')== 1) { ?><a href="<?php echo $wishlist; ?>" id="wishlist-total"><?php echo $text_wishlist; ?></a><?php } ?>
<?php if($this->config->get('marketshop_account_top_link')== 1) { ?><a href="<?php echo $account; ?>"><?php echo $text_account; ?></a><?php } ?>
<?php if($this->config->get('marketshop_checkout_top_link')== 1) { ?><a href="<?php echo $checkout; ?>"><?php echo $text_checkout; ?></a><?php } ?>
</div>
</div>
<div id="welcome">
<?php if (!$logged) { ?>
<?php echo $text_welcome; ?>
<?php } else { ?>
<?php echo $text_logged; ?>
<?php } ?>
</div>
</div></div>
<div class="main-wrapper">
<div class="header-row">
<?php if ($logo) { ?>
<div id="logo"><a href="<?php echo $home; ?>"><img src="<?php echo $logo; ?>" title="<?php echo $name; ?>" alt="<?php echo $name; ?>" /></a></div>
<?php } ?>
<div id="search">
<div class="button-search"></div>
<input type="text" name="search" id="filter_name" placeholder="<?php echo $text_search; ?>" value="<?php echo $search; ?>" />
</div>
<?php echo $cart; ?>
<div class="clear"></div>
</div>
<div id="menu">
<span>
<?php if($this->config->get('marketshop_status')== 1) {
$marketshop_mobile_menu_title = $this->config->get('marketshop_mobile_menu_title'); { ?>
<?php echo $marketshop_mobile_menu_title[$language]; ?>
<?php } ?><?php } ?>
</span>
<ul>
<?php if($this->config->get('marketshop_home_page_link')== 1) { ?>
<li><a title="<?php echo $text_home; ?>" href="<?php echo $home; ?>"><?php echo $text_home; ?></a></li>
<?php } ?>
<?php if ($categories) {?>
<?php if($this->config->get('marketshop_top_menu')== 1) {?>
<?php foreach ($categories as $category) { ?>
<li><a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
<?php if ($category['children']) { ?>
<div>
<?php for ($i = 0; $i < count($category['children']);) { ?>
<ul>
<?php $j = $i + ceil(count($category['children']) / $category['column']); ?>
<?php for (; $i < $j; $i++) { ?>
<?php if (isset($category['children'][$i])) { ?>
<li>
<?php
if(count($category['children'][$i]['children_level2'])>0){
?>
<a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?>
<?php
echo "<span>›</span></a>";
}
else
{
?>
<a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?></a>
<?php
}
?>
<?php if ($category['children'][$i]['children_level2']) { ?>
<div class="submenu">
<ul>
<?php for ($wi = 0; $wi < count($category['children'][$i]['children_level2']); $wi++) { ?>
<li>
<a href="<?php echo $category['children'][$i]['children_level2'][$wi]['href']; ?>" ><?php echo $category['children'][$i]['children_level2'][$wi]['name']; ?>
</a>
</li>
<?php } ?>
</ul>
</div>
<?php } ?>
</li>
<?php } ?>
<?php } ?>
</ul>
<?php } ?>
</div>
<?php } ?>
</li>
<?php } ?>
<?php } ?>
<?php if($this->config->get('marketshop_top_menu')== 2) {?>
<li class="categories">
<?php if($this->config->get('marketshop_status')== 1) {
$marketshop_menu_categories_title = $this->config->get('marketshop_menu_categories_title');
if((isset($marketshop_menu_categories_title[$language]) && $marketshop_menu_categories_title[$language] != '')) { ?>
<a><?php echo $marketshop_menu_categories_title[$language]; ?></a>
<?php } ?><?php } ?>
<div>
<?php foreach ($categories as $category) { ?>
<div class="column">
<?php
if(count($category['children'])>0){
?>
<a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?>
<?php
echo "<span>›</span></a>";
}
else
{
?>
<a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
<?php
}
?>
<?php if ($category['children']) { ?>
<div>
<?php for ($i = 0; $i < count($category['children']);) { ?>
<ul>
<?php $j = $i + ceil(count($category['children']) / $category['column']); ?>
<?php for (; $i < $j; $i++) { ?>
<?php if (isset($category['children'][$i])) { ?>
<li>
<?php
if(count($category['children'][$i]['children_level2'])>0){
?>
<a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?>
<?php
echo "<span>›</span></a>";
}
else
{
?>
<a href="<?php echo $category['children'][$i]['href']; ?>" ><?php echo $category['children'][$i]['name']; ?></a>
<?php
}
?>
<?php if ($category['children'][$i]['children_level2']) { ?>
<div class="submenu">
<ul>
<?php for ($wi = 0; $wi < count($category['children'][$i]['children_level2']); $wi++) { ?>
<li>
<a href="<?php echo $category['children'][$i]['children_level2'][$wi]['href']; ?>" ><?php echo $category['children'][$i]['children_level2'][$wi]['name']; ?>
</a>
</li>
<?php } ?>
</ul>
</div>
<?php } ?>
</li>
<?php } ?>
<?php } ?>
</ul>
<?php } ?>
</div>
<?php } ?>
</div>
<?php } ?>
</div>
</li>
<?php } ?>
<?php if($this->config->get('marketshop_top_menu')== 3) {?>
<li class="categories_hor">
<?php if($this->config->get('marketshop_status')== 1) {
$marketshop_menu_categories_title = $this->config->get('marketshop_menu_categories_title');
if((isset($marketshop_menu_categories_title[$language]) && $marketshop_menu_categories_title[$language] != '')) { ?>
<a><?php echo $marketshop_menu_categories_title[$language]; ?></a>
<?php } ?><?php } ?>
<div>
<?php foreach ($categories as $category) { ?>
<div class="column">
<a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
<?php if ($category['children']) { ?>
<div>
<?php for ($i = 0; $i < count($category['children']);) { ?>
<ul>
<?php $j = $i + ceil(count($category['children']) / $category['column']); ?>
<?php for (; $i < $j; $i++) { ?>
<?php if (isset($category['children'][$i])) { ?>
<li>
<?php
if(count($category['children'][$i]['children_level2'])>0){
?>
<a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?>
<?php
echo "<span>›</span></a>";
}
else
{
?>
<a href="<?php echo $category['children'][$i]['href']; ?>" ><?php echo $category['children'][$i]['name']; ?></a>
<?php
}
?>
<?php if ($category['children'][$i]['children_level2']) { ?>
<div class="submenu">
<ul>
<?php for ($wi = 0; $wi < count($category['children'][$i]['children_level2']); $wi++) { ?>
<li>
<a href="<?php echo $category['children'][$i]['children_level2'][$wi]['href']; ?>" ><?php echo $category['children'][$i]['children_level2'][$wi]['name']; ?>
</a>
</li>
<?php } ?>
</ul>
</div>
<?php } ?>
</li>
<?php } ?>
<?php } ?>
</ul>
<?php } ?>
</div>
<?php } ?>
</div>
<?php } ?>
</div>
</li>
<?php } ?>
<?php } ?>
<?php if($this->config->get('marketshop_menu_brands')== 1) { ?>
<li class="menu_brands">
<?php if($this->config->get('marketshop_status')== 1) {
$marketshop_menu_brands_title = $this->config->get('marketshop_menu_brands_title');
if((isset($marketshop_menu_brands_title[$language]) && $marketshop_menu_brands_title[$language] != '')) { ?>
<a><?php echo $marketshop_menu_brands_title[$language]; ?></a>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_brands_display_style')== 1) { ?>
<div>
<?php if ($manufacturers) { ?>
<ul>
<?php $counter = 0; foreach ($manufacturers as $manufacturer) { ?>
<li><a href="<?php echo $manufacturer['href']; ?>"><?php echo $manufacturer['name']; ?></a></li>
<?php $counter++; } ?>
</ul>
<?php } ?>
</div>
<?php } ?>
<?php if($this->config->get('marketshop_brands_display_style')== 2) { ?>
<?php if($this->config->get('marketshop_brands_per_row')== 1) { ?><div class="brands_logo6"><?php } ?>
<?php if($this->config->get('marketshop_brands_per_row')== 2) { ?><div class="brands_logo8"><?php } ?>
<?php if($this->config->get('marketshop_brands_per_row')== 3) { ?><div class="brands_logo10"><?php } ?>
<?php if ($manufacturers) { ?>
<?php $counter = 0; foreach ($manufacturers as $manufacturer) { ?>
<div>
<a href="<?php echo $manufacturer['href']; ?>"><img src="<?php echo $manufacturer['image']; ?>" title="<?php echo $manufacturer['name']; ?>" alt="<?php echo $manufacturer['name']; ?>" /></a>
</div>
<?php $counter++; } ?>
<?php } ?>
</div>
<?php } ?>
<?php if($this->config->get('marketshop_brands_display_style')== 3) { ?>
<?php if($this->config->get('marketshop_brands_per_row')== 1) { ?><div class="brands_logo6"><?php } ?>
<?php if($this->config->get('marketshop_brands_per_row')== 2) { ?><div class="brands_logo8"><?php } ?>
<?php if($this->config->get('marketshop_brands_per_row')== 3) { ?><div class="brands_logo10"><?php } ?>
<?php if ($manufacturers) { ?>
<?php $counter = 0; foreach ($manufacturers as $manufacturer) { ?>
<div>
<a href="<?php echo $manufacturer['href']; ?>"><img src="<?php echo $manufacturer['image']; ?>" title="<?php echo $manufacturer['name']; ?>" alt="<?php echo $manufacturer['name']; ?>" /></a>
<a href="<?php echo $manufacturer['href']; ?>"><?php echo $manufacturer['name']; ?></a>
</div>
<?php $counter++; } ?>
<?php } ?>
</div>
</li>
<?php } ?>
<?php } ?>
<?php if($this->config->get('marketshop_custom_link1')== 1) {
$marketshop_custom_link1_title = $this->config->get('marketshop_custom_link1_title');
if((isset($marketshop_custom_link1_title[$language]) && $marketshop_custom_link1_title[$language] != '')) { ?>
<li><a href="<?php echo $this->config->get('marketshop_custom_link1_url'); ?>" target="<?php echo $this->config->get('marketshop_target_link1'); ?>">
<?php echo $marketshop_custom_link1_title[$language]; ?></a>
</li>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_link2')== 1) {
$marketshop_custom_link2_title = $this->config->get('marketshop_custom_link2_title');
if((isset($marketshop_custom_link2_title[$language]) && $marketshop_custom_link2_title[$language] != '')) { ?>
<li><a href="<?php echo $this->config->get('marketshop_custom_link2_url'); ?>" target="<?php echo $this->config->get('marketshop_target_link2'); ?>">
<?php echo $marketshop_custom_link2_title[$language]; ?></a>
</li>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_link3')== 1) {
$marketshop_custom_link3_title = $this->config->get('marketshop_custom_link3_title');
if((isset($marketshop_custom_link3_title[$language]) && $marketshop_custom_link3_title[$language] != '')) { ?>
<li><a href="<?php echo $this->config->get('marketshop_custom_link3_url'); ?>" target="<?php echo $this->config->get('marketshop_target_link3'); ?>">
<?php echo $marketshop_custom_link3_title[$language]; ?></a>
</li>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_link4')== 1) {
$marketshop_custom_link4_title = $this->config->get('marketshop_custom_link4_title');
if((isset($marketshop_custom_link4_title[$language]) && $marketshop_custom_link4_title[$language] != '')) { ?>
<li><a href="<?php echo $this->config->get('marketshop_custom_link4_url'); ?>" target="<?php echo $this->config->get('marketshop_target_link4'); ?>">
<?php echo $marketshop_custom_link4_title[$language]; ?></a>
</li>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_link5')== 1) {
$marketshop_custom_link5_title = $this->config->get('marketshop_custom_link5_title');
if((isset($marketshop_custom_link5_title[$language]) && $marketshop_custom_link5_title[$language] != '')) { ?>
<li><a href="<?php echo $this->config->get('marketshop_custom_link5_url'); ?>" target="<?php echo $this->config->get('marketshop_target_link5'); ?>">
<?php echo $marketshop_custom_link5_title[$language]; ?></a>
</li>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_block_status')== 1) {
$marketshop_custom_block_title = $this->config->get('marketshop_custom_block_title');
$marketshop_custom_block_content = $this->config->get('marketshop_custom_block_content');
if(isset($marketshop_custom_block_title[$language]) && $marketshop_custom_block_title[$language]!= '') { ?>
<li class="wrap_custom_block"><a><?php echo $marketshop_custom_block_title[$language]; ?></a>
<div class="custom_block">
<ul>
<li><?php echo html_entity_decode($marketshop_custom_block_content[$language], ENT_QUOTES, 'UTF-8'); ?></li>
</ul>
</div>
</li>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_block2_status')== 1) {
$marketshop_custom_block2_title = $this->config->get('marketshop_custom_block2_title');
$marketshop_custom_block2_content = $this->config->get('marketshop_custom_block2_content');
if(isset($marketshop_custom_block2_title[$language]) && $marketshop_custom_block2_title[$language]!= '') { ?>
<li class="wrap_custom_block"><a><?php echo $marketshop_custom_block2_title[$language]; ?></a>
<div class="custom_block">
<ul>
<li><?php echo html_entity_decode($marketshop_custom_block2_content[$language], ENT_QUOTES, 'UTF-8'); ?></li>
</ul>
</div>
</li>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_custom_block3_status')== 1) {
$marketshop_custom_block3_title = $this->config->get('marketshop_custom_block3_title');
$marketshop_custom_block3_content = $this->config->get('marketshop_custom_block3_content');
if(isset($marketshop_custom_block3_title[$language]) && $marketshop_custom_block3_title[$language]!= '') { ?>
<li class="wrap_custom_block"><a><?php echo $marketshop_custom_block3_title[$language]; ?></a>
<div class="custom_block">
<ul>
<li><?php echo html_entity_decode($marketshop_custom_block3_content[$language], ENT_QUOTES, 'UTF-8'); ?></li>
</ul>
</div>
</li>
<?php } ?><?php } ?>
<?php if($this->config->get('marketshop_my_account')== 1) { ?>
<li><a><?php echo $text_account; ?></a>
<div>
<ul>
<li><a href="<?php echo $account; ?>"><?php echo $text_account; ?></a></li>
<li><a href="<?php echo $order; ?>"><?php echo $text_order; ?></a></li>
<li><a href="<?php echo $wishlist; ?>" id="wishlist-total"><?php echo $text_wishlist; ?></a></li>
<li><a href="<?php echo $newsletter; ?>"><?php echo $text_newsletter; ?></a></li>
</ul>
</div>
</li>
<?php } ?>
<?php if($this->config->get('marketshop_information_page')== 1) {
if ($informations) { ?>
<li><a><?php echo $text_information; ?></a>
<div>
<ul>
<?php foreach ($informations as $information) { ?>
<li><a href="<?php echo $information['href']; ?>"><?php echo $information['title']; ?></a></li>
<?php } ?>
</ul>
</div>
</li>
<?php } ?>
<?php } ?>
<?php if($this->config->get('marketshop_contact_us')== 1) { ?>
<?php } ?>
</ul>
</div>
</div>
</div>
<div class="main-wrapper">
<div id="container">
<?php if ($error) { ?>
<div class="warning"><?php echo $error ?><img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>
<?php } ?>
<div id="notification"></div>
|
|
|
|
Back to top |
|
 |
Page 1 of 1 |
All times are GMT + 1 Hour |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB 2.0.8 © 2001, 2002 phpBB Group
|
|
 |
|