Server : LiteSpeed System : Linux webbox1.ncrdns.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : rahcos ( 1533) PHP Version : 8.4.23 Disable Function : NONE Directory : /home/rahcos/.trash/wp-content/themes/hara/elementor_templates/ |
<?php
/**
* Templates Name: Elementor
* Widget: Account
*/
$this->add_render_attribute('tbay-login', 'class', 'tbay-login');
$this->add_render_attribute('sub-menu', 'class', 'account-menu sub-menu');
$this->add_render_attribute('wrapper', 'class', ['header-icon']);
$settings = $this->get_settings_for_display();
extract($settings);
$url_login = apply_filters('hara_woocommerce_my_account_url', get_permalink(wc_get_page_id('myaccount')));
?>
<div <?php echo $this->get_render_attribute_string('wrapper'); ?>>
<div <?php echo $this->get_render_attribute_string('tbay-login'); ?>>
<?php
if ( is_user_logged_in() ) {
?>
<a href="<?php echo esc_url($url_login) ?>" class="account-button">
<?php $this->render_item_account(); ?>
</a>
<?php
if ($show_sub_account === 'yes') {
?>
<div <?php echo $this->get_render_attribute_string('sub-menu'); ?>>
<?php $this->render_sub_menu(); ?>
</div>
<?php
}
} elseif ( !is_user_logged_in() ) {
if($show_popup_login === 'yes') {
$target = ' data-bs-toggle="modal" data-bs-target="#custom-login-wrapper"';
?>
<a <?php echo trim($target)?> href="javascript:void(0)">
<?php $this->render_item_account(); ?>
</a>
<?php
}
else {
?>
<a href="<?php echo esc_url($url_login) ?>" class="account-button">
<?php $this->render_item_account(); ?>
</a>
<?php
}
}
?>
</div>
</div>