Перейти до вмісту
Пошук в
  • Детальніше...
Шукати результати, які ...
Шукати результати в ...

Как убрать верхнюю строку в шаблоне


Dozent

Recommended Posts

Имеется шаблон http://themeforest.net/item/mediacenter-responsive-opencart-template/full_screen_preview/13264316

 

Подскажите пожалуйста как убрать верхнюю строчку Home  Contact us My Account

 

 вот header.tpl

 

if($this->registry->has('theme_options') == false) {
header("location: themeinstall/index.php");
exit;
}

$theme_options = $this->registry->get('theme_options');
$config = $this->registry->get('config');
$page_direction = $theme_options->get( 'page_direction' );

require_once( DIR_TEMPLATE.$config->get('config_template')."/lib/module.php" );
$modules = new Modules($this->registry);
?>











get( 'responsive_design' ) != '0') { ?>














if( $theme_options->get( 'font_status' ) == '1' ) {
$lista_fontow = array();
if( $theme_options->get( 'body_font' ) != '' && $theme_options->get( 'body_font' ) != 'standard' && $theme_options->get( 'body_font' ) != 'Arial' && $theme_options->get( 'body_font' ) != 'Georgia' && $theme_options->get( 'body_font' ) != 'Times New Roman' ) {
$font = $theme_options->get( 'body_font' );
$lista_fontow[$font] = $font;
}

if( $theme_options->get( 'categories_bar' ) != '' && $theme_options->get( 'categories_bar' ) != 'standard' && $theme_options->get( 'categories_bar' ) != 'Arial' && $theme_options->get( 'categories_bar' ) != 'Georgia' && $theme_options->get( 'categories_bar' ) != 'Times New Roman' ) {
$font = $theme_options->get( 'categories_bar' );
if(!isset($lista_fontow[$font])) {
$lista_fontow[$font] = $font;
}
}

if( $theme_options->get( 'headlines' ) != '' && $theme_options->get( 'headlines' ) != 'standard' && $theme_options->get( 'headlines' ) != 'Arial' && $theme_options->get( 'headlines' ) != 'Georgia' && $theme_options->get( 'headlines' ) != 'Times New Roman' ) {
$font = $theme_options->get( 'headlines' );
if(!isset($lista_fontow[$font])) {
$lista_fontow[$font] = $font;
}
}

if( $theme_options->get( 'footer_headlines' ) != '' && $theme_options->get( 'footer_headlines' ) != 'standard' && $theme_options->get( 'footer_headlines' ) != 'Arial' && $theme_options->get( 'footer_headlines' ) != 'Georgia' && $theme_options->get( 'footer_headlines' ) != 'Times New Roman' ) {
$font = $theme_options->get( 'footer_headlines' );
if(!isset($lista_fontow[$font])) {
$lista_fontow[$font] = $font;
}
}

if( $theme_options->get( 'page_name' ) != '' && $theme_options->get( 'page_name' ) != 'standard' && $theme_options->get( 'page_name' ) != 'Arial' && $theme_options->get( 'page_name' ) != 'Georgia' && $theme_options->get( 'page_name' ) != 'Times New Roman' ) {
$font = $theme_options->get( 'page_name' );
if(!isset($lista_fontow[$font])) {
$lista_fontow[$font] = $font;
}
}

if( $theme_options->get( 'button_font' ) != '' && $theme_options->get( 'button_font' ) != 'standard' && $theme_options->get( 'button_font' ) != 'Arial' && $theme_options->get( 'button_font' ) != 'Georgia' && $theme_options->get( 'button_font' ) != 'Times New Roman' ) {
$font = $theme_options->get( 'button_font' );
if(!isset($lista_fontow[$font])) {
$lista_fontow[$font] = $font;
}
}

if( $theme_options->get( 'custom_price' ) != '' && $theme_options->get( 'custom_price' ) != 'standard' && $theme_options->get( 'custom_price' ) != 'Arial' && $theme_options->get( 'custom_price' ) != 'Georgia' && $theme_options->get( 'custom_price' ) != 'Times New Roman' ) {
$font = $theme_options->get( 'custom_price' );
if(!isset($lista_fontow[$font])) {
$lista_fontow[$font] = $font;
}
}

foreach($lista_fontow as $font) {
echo '';
echo "\n";
}
}
?>

'catalog/view/theme/'.$config->get( 'config_template' ).'/css/bootstrap.css',
'catalog/view/theme/'.$config->get( 'config_template' ).'/css/animate.css',
'catalog/view/theme/'.$config->get( 'config_template' ).'/css/stylesheet.css',
'catalog/view/theme/'.$config->get( 'config_template' ).'/css/menu.css',
'catalog/view/theme/'.$config->get( 'config_template' ).'/css/owl.carousel.css',
'catalog/view/theme/'.$config->get( 'config_template' ).'/css/font-awesome.min.css',
'catalog/view/theme/'.$config->get( 'config_template' ).'/css/icheck.css',
'catalog/view/theme/'.$config->get( 'config_template' ).'/css/filter_product.css'
);

//RTL
if($page_direction[$config->get( 'config_language_id' )] == 'RTL'){
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/css/rtl.css';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/css/bootstrap_rtl.css';
}

// Responsvie
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/css/responsive.css';

// Full screen background slider
if($config->get( 'full_screen_background_slider_module' ) != '') $lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/css/jquery.vegas.css';

// Category wall
if($config->get( 'category_wall_module' ) != '') $lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/css/category_wall.css';

// Wide width
if($theme_options->get( 'page_width' ) == 1 || $theme_options->get( 'page_width' ) == '') $lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/css/wide-grid.css';

// Normal width
if($theme_options->get( 'page_width' ) == 3) $lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/css/standard-grid.css';

if($theme_options->get( 'colors_status' ) != '1') {
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/css/colors/default.css';
}

echo $theme_options->compressorCodeCss( $config->get( 'config_template' ), $lista_plikow, $theme_options->get( 'compressor_code_status' ), HTTP_SERVER );

// Custom colors, fonts and backgrounds
include('catalog/view/theme/'.$config->get( 'config_template' ).'/css/custom_colors.php'); ?>

get( 'custom_code_css_status' ) == 1) { ?>














get( 'page_width' ) == 2 && $theme_options->get( 'max_width' ) > 900) { ?>




$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/jquery-2.1.1.min.js';
if(file_exists('catalog/view/javascript/mf/jquery-ui.min.js')) $lista_plikow[] = 'catalog/view/javascript/mf/jquery-ui.min.js';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/jquery-migrate-1.2.1.min.js';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/jquery.easing.1.3.js';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/bootstrap.min.js';
// $lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/twitter-bootstrap-hover-dropdown.js';
if($theme_options->get( 'lazy_loading_images' ) != '0') $lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/echo.min.js';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/common.js';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/tweetfeed.min.js';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/bootstrap-notify.min.js';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/jquery.matchHeight.min.js';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/icheck.min.js';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/wow.min.js';

// Specials countdown
if($theme_options->get( 'display_specials_countdown' ) == '1') {
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/jquery.plugin.min.js';
$lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/jquery.countdown.min.js';
}

// Banner module
if($config->get( 'banner_module' ) != '') $lista_plikow[] = 'catalog/view/theme/'.$config->get( 'config_template' ).'/js/jquery.cycle2.min.js';

echo $theme_options->compressorCodeJs( $config->get( 'config_template' ), $lista_plikow, $theme_options->get( 'compressor_code_status' ), HTTPS_SERVER ); ?>

if($config->get( 'full_screen_background_slider_module' ) != '') { ?>



if($theme_options->get( 'fixed_header' ) == 1) { ?>





get( 'quick_search_autosuggest' ) != '0') { ?>
















get( 'custom_code_javascript_status' ) == 1) { ?>







get( 'widget_facebook_status' ) == 1) { ?>


 




 




get( 'widget_twitter_status' ) == 1) { ?>



get( 'widget_custom_status' ) == 1) { ?>


 


get( 'config_language_id' ); ?>
get( 'widget_custom_content' ); ?>



 



get( 'quick_view' ) == 1) { ?>



get( 'fixed_header' ) == 1) { ?>



$popup = $modules->getModules('popup');
if( count($popup) ) {
foreach ($popup as $module) {
echo $module;
}
} ?>

$header_notice = $modules->getModules('header_notice');
if( count($header_notice) ) {
foreach ($header_notice as $module) {
echo $module;
}
} ?>

$cookie = $modules->getModules('cookie');
if( count($cookie) ) {
foreach ($cookie as $module) {
echo $module;
}
} ?>
 



if($theme_options->get( 'header_type' ) == 2) {
include('catalog/view/theme/'.$config->get('config_template').'/template/common/header/header_02.tpl');
} else {
include('catalog/view/theme/'.$config->get('config_template').'/template/common/header/header_01.tpl');
}
?>

Змінено користувачем Dozent
Надіслати
Поділитися на інших сайтах


 

 

if($theme_options->get( 'header_type' ) == 2) {

include('catalog/view/theme/'.$config->get('config_template').'/template/common/header/header_02.tpl');

} else {

include('catalog/view/theme/'.$config->get('config_template').'/template/common/header/header_01.tpl');

}

?>

открыть файл в зависимости от того что выбрано и удалить <div id="top-bar"...> тратата </div>

 

или топором, catalog/view/theme/mediacenter/css/stylesheet.css

строка 557 добавить dispay: none;

Змінено користувачем vise
  • +1 1
Надіслати
Поділитися на інших сайтах


Створіть аккаунт або увійдіть для коментування

Ви повинні бути користувачем, щоб залишити коментар

Створити обліковий запис

Зареєструйтеся для отримання облікового запису. Це просто!

Зареєструвати аккаунт

Вхід

Уже зареєстровані? Увійдіть тут.

Вхід зараз
  • Зараз на сторінці   0 користувачів

    • Ні користувачів, які переглядиють цю сторінку
×
×
  • Створити...

Important Information

На нашому сайті використовуються файли cookie і відбувається обробка деяких персональних даних користувачів, щоб поліпшити користувальницький інтерфейс. Щоб дізнатися для чого і які персональні дані ми обробляємо перейдіть за посиланням . Якщо Ви натиснете «Я даю згоду», це означає, що Ви розумієте і приймаєте всі умови, зазначені в цьому Повідомленні про конфіденційність.