Добрый день! Возникла проблема, прошу помочь.
CMS : WordPress
Редактирования в : PHP + CSS
Иконку подтягивает с : Font Awesome
Сама проблема: нужно поставить рядом этих двух иконок еще одну с ссылок
Вот что нашел в php (файл header.php) :
<div class="container header-1">
<div class="top-logo">
<?php if (get_theme_mod( 'dreamla_site_logo' )) : ?>
<a href="<?php echo esc_url(home_url()); ?>/"><img src="<?php echo esc_url(get_theme_mod('dreamla_site_logo')); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>
<?php else : ?>
<a href="<?php echo esc_url(home_url()); ?>/"><img src="<?php echo get_template_directory_uri(); ?>/assets/img/site-logo.png" alt="<?php bloginfo( 'name' ); ?>" /></a>
<?php endif; ?>
</div>
<div id="top-bar">
<div class="menu-mobile"></div>
<div class="navbar-left">
<?php if( is_active_sidebar('hidden-sidebar') ) { ?>
<div class="hidden-sidebar-button">
<a href="#" class="open-hidden-sidebar">
<span class="bar-1"></span>
<span class="bar-2"></span>
<span class="bar-3"></span>
</a>
</div>
<?php } ?>
</div>
<div id="nav-wrapper">
<?php
if (has_nav_menu('header-menu')) :
wp_nav_menu( array( '
container' => '',
'theme_location' => 'header-menu',
'menu_class' => 'topmenu'
) );
endif;
?>
</div>
<div class="navbar-right">
<?php if (get_theme_mod('dreamla_topbar_search', true)) : ?>
<div id="top-search">
<a href="#" class="search"><i class="fa fa-search"></i></a>
</div>
<?php endif; ?>
<?php if ( class_exists('WooCommerce') ) : ?>
<div id="wc-shopping-cart">
<?php $count = WC()->cart->get_cart_contents_count(); ?>
<a class="cart-contents" href="<?php echo esc_url(wc_get_cart_url()); ?>" title="<?php esc_html_e( 'View your shopping cart', 'dreamla' ); ?>"><?php if ( $count >= 0 ) echo '<span class="cart-count">' . $count . '</span>'; ?>
</a>
</div>
<?php endif; ?>
</div>
</div>
Пробовал скопировать другие, с подменами классов в CSS, но видно я далек от этого