We’ve added some changes in xstore-child/js/etheme.js, xstore-child/functions.php, xstore-child/style.css.
Please clear cache and check the login form now.
Regards
We’ve added some changes in xstore-child/js/etheme.js, xstore-child/functions.php, xstore-child/style.css.
Please clear cache and check the login form now.
Regards
You’re welcome!
Have a nice day.
Regards
.wpcf7 input, .wpcf7 button, .wpcf7 select, .wpcf7 textarea, .wpcf7 label {
width: 100%;
}
Regards
Hello,
Go to Pages > edit Blog page > [8theme] Layout options > Widget Area > select desired sidebar.
Read more – https://www.8theme.com/documentation/xstore/theme-installation/8theme-page-post-layout-settings-8theme-post-options/
Regards
Theme Options > Typography > Menu > Customize mobile menu links.
Regards
Hello,
Please clear all cache.
Regards
You’re welcome!
Regards
Hello,
Please check Photo size in settings of Instagram element or provide temporary wp-admin access so I can take a closer look.
Regards
It is our default contact form. I would recommend you to change [contact_form] to [contact-form-7 id="24394" title="Formularz 1"] because to edit the default form you need to make changes in template files (royal/framework/shortcodes.php, copy this function https://prnt.sc/fhb5yq into functions.php file of your child theme and edit the form there).
Regards
Please delete this code:
.login-link:hover > .menu-main-container:not(.active) {
opacity: 0;
visibility: hidden;
}
.login-link > .menu-main-container.active {
opacity: 1;
visibility: visible;
}
from style.css of your child theme.
Looks like this http://prntscr.com/mhbdts is not the best fix. I will ask our developers and let you know a new solution soon.
Regards
Please provide temporary wp-admin access so I can take a closer look.
Regards
Hello,
I do not see the problem on your Home page. Please clear cache and check one more time.
Regards
Please describe in details what changes were done.
Have you installed a new additional plugin?
Provide temporary FTP access.
Regards
I grateful to you for your kind words, really appreciated 🙂
Regards
Hello,
Thanks for using our theme.
You can change text using translation files. Please try to install Loco translate plugin https://www.8theme.com/documentation/xstore/theme-translation/base-theme-translation/ , create English translation, change strings of XStore theme and Woocommerce plugin and disable Loco translate.
Regards
Hello,
1. I do not see the problem.
Theme Options > General / Layout > Site width.
Theme Options > Header > Header Style > Header wide.
Do not forget about Settings of Row, Row stretch > Stretch row and content. https://kb.wpbakery.com/docs/wpbakery-page-builder-how-tos/how-to-make-full-width-or-full-height-row/
2, 3. Please try to disable all 3rd party plugins to check if one of the plugins causes it.
Regards
You’re welcome!
Would you mind to rate our product:
https://prnt.sc/d256m6
https://themeforest.net/downloads
That would be much appreciated 🙂
Regards
Hello,
Do you want to have different sidebars on Blog and Single Post pages? Main sidebar (Appearance > Widgets) shows on these pages by default, it can be changed by selecting another Widget Area in [8theme] Layout options.
In Theme Options > Blog, you can disable sticky sidebar or change sidebar position for mobile https://prnt.sc/mhc3h5
Regards
You’re welcome!
Feel free to ask if you have any other questions.
Regards
I can’t login. Have you changed wp-admin access?
Regards
You need to create js folder inside the child theme, then create etheme.js file there. Please do this via FTP (not via default WP Editor).
Regards
Hello,
You are right. Please open style.css file of your child theme, and delete #cookie-notice #cn-notice-text, from here – https://prnt.sc/mh9tve
It will take color: #888888; To change this color, please use code like this:
#cookie-notice #cn-notice-text {
color: black;
}
Regards
Hello @Tagbag,
Please add this code in functions.php of your child theme:
function etheme_sign_link($class = '', $short = false, $echo = false) {
$link = array();
$type = etheme_get_option( 'sign_in_type' );
$ht = get_query_var( 'et_ht', 'xstore' );
$login_link = (etheme_woocommerce_installed()) ? wc_get_page_permalink( 'myaccount' ) : wp_login_url();
if ( $ht == 'hamburger-icon' || $type == 'icon' ) {
$class .= ' type-icon';
} elseif( $type == 'text_icon' ){
$class .= ' type-icon-text';
}
if ( is_user_logged_in() && etheme_woocommerce_installed() ) {
$current_user = wp_get_current_user();
$username = !empty($current_user->user_login) ? $current_user->user_login : esc_html__( 'My Account', 'xstore' );
if ( has_nav_menu( 'my-account' ) ) {
$submenu = wp_nav_menu(array(
'theme_location' => 'my-account',
'before' => '',
'container_class' => 'menu-main-container',
'after' => '',
'link_before' => '',
'link_after' => '',
'depth' => 100,
'fallback_cb' => false,
'walker' => new ETheme_Navigation,
'echo' => false
));
} else {
$submenu = '<div class="menu-main-container">';
$submenu .= '<ul class="menu">';
foreach ( wc_get_account_menu_items() as $endpoint => $label ) {
$url = ( $endpoint != 'dashboard' ) ? wc_get_endpoint_url( $endpoint, '', $login_link ) : $login_link ;
$submenu .= '<li class="' . wc_get_account_menu_item_classes( $endpoint ) . '">';
$submenu .= '<a href="' . esc_url( $url ) . '">' . esc_html( $label ) . '</a>';
$submenu .= '</li>';
}
$submenu .= '</ul>';
$submenu .= '</div>';
}
$link = array(
'class' => 'my-account-link' . $class,
'link_class' => '',
'href' => $login_link,
'title' => $username,
'submenu' => $submenu
);
$class .= ' my-account-link';
} else {
$login_text = ( $short ) ? esc_html__( 'Sign In', 'xstore' ) : esc_html__( 'Sign In or Create an account', 'xstore' );
$login_text = ( etheme_get_option( 'sign_in_text' ) != '' ) ? etheme_get_option( 'sign_in_text' ) : $login_text;
if ( ! $short ) {
if ( etheme_woocommerce_installed() ) {
ob_start(); ?>
<form class="woocommerce-form woocommerce-form-login login" method="post" action="<?php echo get_permalink( get_option('woocommerce_myaccount_page_id') ) ?>">
<?php do_action( 'woocommerce_login_form_start' ); ?>
<p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide">
<label for="username"><?php esc_html_e( 'Username or email address', 'xstore' ); ?> <span class="required">*</span></label>
<input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="username" id="username" autocomplete="username" value="<?php echo ( ! empty( $_POST['username'] ) ) ? esc_attr( wp_unslash( $_POST['username'] ) ) : ''; ?>" /><?php // @codingStandardsIgnoreLine ?>
</p>
<p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide">
<label for="password"><?php esc_html_e( 'Password', 'xstore' ); ?> <span class="required">*</span></label>
<input class="woocommerce-Input woocommerce-Input--text input-text" type="password" name="password" id="password" autocomplete="current-password" />
</p>
<?php do_action( 'woocommerce_login_form' ); ?>
<a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" class="lost-password"><?php esc_html_e( 'Lost password ?', 'xstore' ); ?></a>
<p>
<label class="woocommerce-form__label woocommerce-form__label-for-checkbox inline">
<input class="woocommerce-form__input woocommerce-form__input-checkbox" name="rememberme" type="checkbox" id="rememberme" value="forever" /> <span><?php esc_html_e( 'Remember Me', 'xstore' ); ?></span>
</label>
</p>
<p class="login-submit">
<?php wp_nonce_field( 'woocommerce-login', 'woocommerce-login-nonce' ); ?>
<button type="submit" class="woocommerce-Button button" name="login" value="<?php esc_attr_e( 'Log in', 'xstore' ); ?>"><?php esc_html_e( 'Log in', 'xstore' ); ?></button>
</p>
<?php if ( get_option( 'woocommerce_enable_myaccount_registration' ) === 'yes' ): ?>
<p class="text-center"><?php esc_html_e('New client', 'xstore');?> <a href="<?php echo $login_link; ?>" class="register-link"><?php esc_html_e('Register ?', 'xstore'); ?></a></p>
<?php endif; ?>
<?php do_action( 'woocommerce_login_form_end' ); ?>
</form>
<?php $login_form = ob_get_clean(); }
else {
$login_form = wp_login_form(
array(
'echo' => false,
'label_username' => esc_html__( 'Username or email address *', 'xstore' ),
'label_password' => esc_html__( 'Password *', 'xstore' )
)
);
}
} else {
$login_form = '';
}
$link = array(
'class' => 'login-link' . $class,
'link_class' => '',
'href' => $login_link,
'title' => $login_text,
'submenu' => '<div class="menu-main-container">' . $login_form . '</div>'
);
$class .= ' login-link';
}
if ( $echo ) {
$out = '';
$out .= sprintf(
'<%1$s class="%2$s"><a href="%3$s" class="%4$s">%5$s</a>%6$s</%1$s>',
( etheme_get_option( 'top_links') == 'menu' ) ? 'li' : 'div',
$class,
$link['href'],
$link['link_class'],
$link['title'],
$link['submenu']
);
if ( $echo === 'get' ) {
return $out;
} else {
echo $out;
}
} else {
return $link;
}
}
Let me know the result.
Regards
Hello,
To change the content of the fixed header, copy header.php file (wp-content/themes/woopress folder) into your child theme and edit it there.
Additional customization is not included in our basic support scope.
If you need help with additional customization you can contact Codeable team – https://codeable.io/?ref=qGTdX
Regards
Hello,
Go to Settings > Permalinks > try to re-save permalinks, check if this helps.
Regards
Hello,
Have you cleared cache?
Do you use a child theme?
Please add this code in your woopress-child/functions.php file:
wp_enqueue_style( 'dynamic-css', get_stylesheet_directory_uri() . '/dynamic.css' ); http://prntscr.com/kqreis and create an empty dynamic.css file in the child theme directory.
Then custom css from Theme Options will work fine.
In case it won’t get working, provide URL of site where our theme is activated and temporary wp-admin + FTP access and I will pass the problem to our developers.
Waiting for your reply.
Regards
Hello @finleydesign,
A solution was found in another topic http://prntscr.com/mh9ig4
If you have a problem with the mobile menu, try to disable 3rd party plugins to check if one of the plugins causes it.
Also, I would recommend you to submit a new topic and provide your site URL so I can take a closer look.
Thanks in advance.
Regards
You’re welcome!
Theme Options > General / Layout > Site width.
Do not forget to clear all cache before checking the result.
Regards
Hello,
You’re welcome!
Thanks for using our theme.
Regards
It depends on Breadcrumbs Style and some other settings. Please describe in more details what you are looking for and what problems do you face.
Thanks in advance.
Regards