Hello,
Please check now https://giveme.by/category/help-and-service/
http://prntscr.com/mgh76c http://prntscr.com/mgh6wv
Regards
Hello,
Please check now https://giveme.by/category/help-and-service/
http://prntscr.com/mgh76c http://prntscr.com/mgh6wv
Regards
Ok. Have a nice day.
Regards
Hello,
Forum on our site https://www.8theme.com/forums/ is independent of XStore theme.
You can try to use bbPress plugin https://bbpress.org/ Read more in documentation https://codex.bbpress.org/
Regards
Hello,
Please clear cache and check now.
Regards
Hello,
1) Please find and change this code in Theme Options > Custom css:
.fullscreen-menu-collapse.navbar-collapse {
width: 500px;
margin: 0 auto;
border: 20px solid #02be75;
padding: 75px 0;
overflow: hidden !important;
}
2)
.vc_separator.vc_separator_align_left h4 {
color: black;
}
Regards
Hello,
Please find this code in Theme Options > Custom css > Global custom css and change the color:
form .hosting-contact-form [type="submit"] {
background-color: #349fe2;
color: #fff;
border-color: #349fe2;
border-radius: 15px !important;
margin-top: 10px;
}
Regards
You’re welcome!
Regards
Hello,
You can change text using translation files. Install Loco translate plugin, create English translation, change strings and disable the plugin.
Also, please watch this video https://youtu.be/1E5L9MyQ7W4 (it is for Legenda theme, but for the Classico it is similar).
Regards
You’re welcome!
Regards
Please clear cache and check one more time http://prntscr.com/mgdbas
Regards
Hello,
White color comes from dark.css, please add this code in style.css of your child theme:
.product-information table.variations td.label label {
color: #24102c;
}
Regards
You’re welcome!
Have a nice day.
Regards
Hello,
Please read these articles
https://www.w3schools.com/html/html_tables.asp
https://www.w3schools.com/css/css_table.asp
You can add custom css code in Theme Options > Custom css. For example, http://prntscr.com/mgc3a5
.single-product tr:nth-child(even) {background-color: #f2f2f2;}
.single-product table td:first-child {
padding: .71em;
}
Regards
Here it is https://prnt.sc/mgbydd
Regards
Hello,
This requests additional customization in files.
Copy etheme_sign_link function from xstore/framework/theme-functions.php to functions.php of your child theme. Add this code
$current_user = wp_get_current_user();
$username = !empty($current_user->user_login) ? $current_user->user_login : esc_html__( 'My Account', 'xstore' );
here – http://prntscr.com/mgbddf
and change this line https://prnt.sc/mgbdsa to
'title' => $username, https://prnt.sc/mgbe7y
Regards
Hello,
I can’t log in. Please check credentials of wp-admin.
Also, please clear all cache and check the frontend one more time.
Regards
Hello,
Appearance > Widgets > Shop sidebar > change Categories widget to Product Categories widget.
If you have any other questions, please provide your site URL and temporary wp-admin access, so I can take a closer look.
Regards
Hello,
It can be a glitch of WPBakery Page Builder. You need to close the settings of the elements and reopen it.
Regards
Hello,
Please try to activate “Ajax product pagination” in Theme Options > Shop > Shop page Layout or WooCommerce Infinite Scroll and Ajax Pagination plugin – https://www.8theme.com/documentation/xstore/plugins/woocommerce-infinite-scroll-and-ajax-pagination-settings/
If this is not what you are looking for, please describe the desired result in more details.
Regards
Hello,
Have you sorted out? https://prnt.sc/mgamnp
Let us know if you need any further assistance.
Regards
Hello,
Go to Edit page > [8theme] Layout options > Sidebar Position > Without http://prntscr.com/mgakxo
Regards
Hello,
Please update plugins via FTP. Read more – https://www.8theme.com/documentation/xstore/plugins/plugins-update/
Regards
Hello,
I am glad that you sorted out.
Feel free to ask if you have any other questions.
Regards
Hello,
In this case, please use custom css code to remove the sidebar.
I can’t access your dashboard, there is 404 page. Is there any restriction?
Also, I am getting “404 page not found” on pistas-barcelona page.
If you are using the additional plugin to create this page, it would be better to contact support of the plugin.
We don’t give guaranty for full theme compatibility with all 3-rd party plugins.
Let me know if there is anything else I can help you with.
Regards
1) Please try to disable sidebar on this page via [8theme] Layout options (Sidebar Position > Without) or Theme Options > Blog > Blog Layout > Sidebar position or Theme Options >
Shop page Layout / Sidebar position on category page > Sidebar position
2) Could you please provide temporary wp-admin access?
Do you want to change “ARCHIVES” title to something else?
Regards
Hello,
To check if this situation relates to our theme or to Woocommerce, you need to activate default WC theme – Storefront, on your site temporarily. If variations are displayed in the same way even with the default theme, please contact support of woocommerce plugin.
Regards
You’re welcome!
Regards
Hello,
Please change the content of tabs.php in your child theme to:
<?php
/**
* Single Product tabs
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.4.0
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Filter tabs and allow third parties to add their own
*
* Each tab is an array containing title, callback and priority.
* @see woocommerce_default_product_tabs()
*/
$tabs = apply_filters( 'woocommerce_product_tabs', array() );
$et_tabs['custom_tab'] = etheme_get_option( 'custom_tab_title' );
$et_tabs['custom_tab1'] = etheme_get_custom_field('custom_tab1_title');
$et_tabs['check'] = ( ! empty( $et_tabs['custom_tab'] ) || ! empty( $et_tabs['custom_tab1'] ) ) ? 1 : 0;
$close_tab = ( $et_tabs['custom_tab1'] && $et_tabs['custom_tab1'] != '' ) ? true : false;
if ( ( ! empty( $tabs ) || $et_tabs['check'] ) && etheme_get_option('tabs_type') != 'disable' ) : $i=0; ?>
<?php if (etheme_get_option( 'single_layout' ) == 'center' && etheme_get_option('tabs_location') == 'after_content') : ?>
<div data-vc-full-width="true" data-vc-full-width-init="false" class="vc_row wpb_row tabs-full-width">
<?php endif ?>
<div class="woocommerce-tabs wc-tabs-wrapper tabs <?php etheme_option('tabs_type'); ?> <?php echo (etheme_get_option('tabs_scroll') && etheme_get_option('tabs_type') == 'accordion') ? 'tabs-with-scroll' : ''; ?>">
<ul class="wc-tabs tabs-nav">
<?php if ( $et_tabs['custom_tab1'] && $et_tabs['custom_tab1'] != '' ) : ?>
<li>
<a href="#tab_7" id="tab_7" class="tab-title <?php if( empty( $tabs ) && ! empty( $et_tabs['custom_tab1'] ) ) echo 'opened'; ?>"><span><?php echo esc_html($et_tabs['custom_tab1']); ?></span></a>
</li>
<?php endif; ?>
<?php if ( $et_tabs['custom_tab'] && $et_tabs['custom_tab'] != '' ) : ?>
<li>
<a href="#tab_9" id="tab_9" class="tab-title <?php if( empty( $tabs ) && empty( $et_tabs['custom_tab1'] ) && ! empty( $et_tabs['custom_tab'] ) ) echo 'opened'; ?>"><span><?php echo esc_html($et_tabs['custom_tab']); ?></span></a>
</li>
<?php endif; ?>
<?php foreach ( $tabs as $key => $tab ) : $i++; ?>
<li <?php if($i == 1 && $close_tab) echo 'class="tab_closed"'; ?>>
<a href="#tab_<?php echo esc_attr($key) ?>" id="tab_<?php echo esc_attr($key) ?>" class="tab-title <?php if($i == 1 && !$close_tab) echo 'opened'; ?>"><span><?php echo apply_filters( 'woocommerce_product_' . esc_attr($key) . '_tab_title', $tab['title'], esc_attr($key) ) ?></span></a>
</li>
<?php endforeach; ?>
</ul>
<?php if ( $et_tabs['custom_tab1'] && $et_tabs['custom_tab1'] != '' ) : ?>
<div class="accordion-title"><a href="#tab_7" id="tab_7" class="tab-title <?php if( empty( $tabs ) && ! empty( $et_tabs['custom_tab1'] ) ) echo 'opened'; ?>"><span><?php echo esc_html($et_tabs['custom_tab1']); ?></span></a></div>
<div id="content_tab_7" class="tab-content" <?php echo 'style="display:block;"'; ?>>
<div class="tab-content-inner">
<div class="tab-content-scroll">
<?php echo do_shortcode(etheme_get_custom_field('custom_tab1')); ?>
</div>
</div>
</div>
<?php endif; ?>
<?php if ( $et_tabs['custom_tab'] && $et_tabs['custom_tab'] != '' ) : ?>
<div class="accordion-title"><a href="#tab_9" id="tab_9" class="tab-title <?php if( empty( $tabs ) && empty( $et_tabs['custom_tab1'] ) && ! empty( $et_tabs['custom_tab'] ) ) echo 'opened'; ?>"><span><?php echo esc_html($et_tabs['custom_tab']); ?></span></a></div>
<div id="content_tab_9" class="tab-content" <?php if( empty( $tabs ) && empty( $et_tabs['custom_tab1'] ) && ! empty( $et_tabs['custom_tab'] ) ) echo 'style="display:block;"'; ?>>
<div class="tab-content-inner">
<div class="tab-content-scroll">
<?php echo do_shortcode(etheme_get_option('custom_tab')); ?>
</div>
</div>
</div>
<?php endif; ?>
<?php $i = 0; foreach ( $tabs as $key => $tab ) : $i++; ?>
<div class="accordion-title <?php if($i == 1 && $close_tab) echo 'tab_closed'; ?>"><a href="#tab_<?php echo esc_attr($key) ?>" id="tab_<?php echo esc_attr($key) ?>" class="tab-title <?php if($i == 1 && !$close_tab) echo 'opened'; ?>"><span><?php echo apply_filters( 'woocommerce_product_' . esc_attr($key) . '_tab_title', $tab['title'], esc_attr($key) ) ?></span></a></div>
<div class="tab-content tab-<?php echo esc_attr($key) ?>" id="content_tab_<?php echo esc_attr($key) ?>" <?php if($i == 1 && !$close_tab) echo 'style="display:block;"'; ?>>
<div class="tab-content-inner">
<div class="tab-content-scroll">
<?php call_user_func( $tab['callback'], esc_attr($key), $tab ) ?>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
<?php if (etheme_get_option( 'single_layout' ) == 'center' && etheme_get_option('tabs_location') == 'after_content' ) : ?>
</div>
<div class="vc_row-full-width vc_clearfix"></div>
<?php // ! WC Marketplace fix ?>
<?php if ( class_exists( 'WCMp_Ajax' ) ): ?>
<script>
jQuery(document).ready(function($) {
$('.goto_more_offer_tab').click(function (e) {
if (!$('#tab_singleproductmultivendor').hasClass('opened')) {
$('#tab_singleproductmultivendor').click();
}
});
});
</script>
<?php endif; ?>
<?php endif; ?>
<?php endif; ?>
Regards
Hello,
Please add this custom css code:
body.bordered {
border: 20px solid #f5f5f5;
}
Regards