File: /var/www/vhosts/aceitunaslosada.com/web/wp-content/themes/betheme/includes/header-top-bar-right.php
<?php
/**
* @package Betheme
* @author Muffin group
* @link https://muffingroup.com
*/
global $woocommerce;
// WooCommerce cart
$show_cart = trim(mfn_opts_get('shop-cart'));
if ($show_cart == 1) {
$show_cart = 'icon-bag-fine';
}
$has_cart = ($woocommerce && $show_cart) ? true : false;
// search
$header_search = mfn_opts_get('header-search');
// action button
$action_link = mfn_opts_get('header-action-link');
// WPML icon
if (has_nav_menu('lang-menu')) {
$wpml_icon = true;
} elseif (function_exists('icl_get_languages') && mfn_opts_get('header-wpml') != 'hide') {
$wpml_icon = true;
} else {
$wpml_icon = false;
}
if ($has_cart || $header_search || $action_link || $wpml_icon) {
echo '<div class="top_bar_right">';
echo '<div class="top_bar_right_wrapper">';
// WooCommerce cart
if ($has_cart) {
echo '<a id="header_cart" href="'. esc_url(wc_get_cart_url()) .'"><i class="'. esc_attr($show_cart) .'"></i><span>'. esc_html($woocommerce->cart->cart_contents_count) .'</span></a>';
}
// search icon
if ($header_search == 'input') {
$translate['search-placeholder'] = mfn_opts_get('translate') ? mfn_opts_get('translate-search-placeholder', 'Enter your search') : __('Enter your search', 'betheme');
echo '<a id="search_button" class="has-input">';
echo '<form method="get" id="searchform" action="'. esc_url(home_url('/')) .'">';
echo '<i class="icon-search-fine"></i>';
echo '<input type="text" class="field" name="s" placeholder="'. esc_html($translate['search-placeholder']) .'" />';
do_action('wpml_add_language_form_field');
echo '<input type="submit" class="submit" value="" style="display:none;" />';
echo '</form>';
echo '</a>';
} elseif ($header_search) {
echo '<a id="search_button" href="#"><i class="icon-search-fine"></i></a>';
}
// languages menu
get_template_part('includes/include', 'wpml');
// action button
if ($action_link) {
$action_options = mfn_opts_get('header-action-target');
if (isset($action_options['target'])) {
$action_target = 'target="_blank"';
} else {
$action_target = false;
}
if (isset($action_options['scroll'])) {
$action_class = ' scroll';
} else {
$action_class = false;
}
echo '<a href="'. esc_url($action_link) .'" class="action_button'. esc_attr($action_class) .'" '. wp_kses_data($action_target) .'>'. wp_kses(mfn_opts_get('header-action-title'), mfn_allowed_html('button')) .'</a>';
}
echo '</div>';
echo '</div>';
}