Hello,
Please check our documentation – https://www.8theme.com/documentation/xstore/woocommerce/product-images/
and read this article – https://docs.woocommerce.com/document/fixing-blurry-product-images/
Regards
Hello,
Please check our documentation – https://www.8theme.com/documentation/xstore/woocommerce/product-images/
and read this article – https://docs.woocommerce.com/document/fixing-blurry-product-images/
Regards
Hello,
You can use this custom css code:
.woocommerce-checkout #wpgdprc_field input[type="checkbox"] {
margin-left: -35px;
}
.woocommerce-checkout #wpgdprc_field label {
margin-left: 35px;
}
Regards
Hello,
I can not see your screenshots.
To change the description you need to enable Excerpt http://prntscr.com/jpf5zi and edit your posts https://prnt.sc/jpf6bn
Excerpt length (words) can be changed in Theme Options > Blog & Portfolio > Blog Layout.
Regards
Please check if the same problems persist only with our theme or with a default theme too (WC theme – Storefront).
Regards
Hello,
By default, there is no option to change the search to the icon, this request additional customization. Copy standard.php file from xstore/headers to child-theme/headers folder and change this https://prnt.sc/jpdk29 to https://prnt.sc/jpdk29 (this code should be deleted https://prnt.sc/jpdjw9)
+ add this code in Theme Options > Styling > Custom css > Custom css for desktop:
.navbar-header .header-search {
order: -1;
}
.navbar-header {
display: flex;
}
.navbar-header.show-in-header > * {
padding: 0 1em 0 0;
}
.navbar-header.show-in-header > *:last-child {
padding-right: 0;
}
To align your text to center, you need to change this code (Header custom HTML):
<div class="row">
<div class="col-md-6">
<p style="font-size: 17px; color: #232f3e;"><i class="fa fa-phone" style="font-size: 19px; margin-right: 10px;"></i>Kontaktna številka <span style="color: #232f3e; font-weight: bold;">051 385 324</span></p>
</div>
</div>
to:
<div class="row custom-contact-information">
<p style="font-size: 17px; color: #232f3e; text-align: center"><i class="fa fa-phone" style="font-size: 19px; margin-right: 10px;"></i>Kontaktna številka <span class="contact-number" style="color: #232f3e; font-weight: bold;">051 385 324</span></p>
</div>
and delete previouse custom css code http://prntscr.com/jpf0xb then let me know I will give you a new one.
Regards
Yes, you need to use custom css code to hide the input.
Regards
I will create a report for this request and forward this to our developers for a review. I can’t say whether this will be added in the future, but I will be sure to bring it to our developers attention for you. Let us know if you need anything further.
Regards
Your settings won’t be lost after changing the active theme on site, but you can export theme options to file via Theme Options > Import/Export > Import or Export your theme configuration. Some widgets may change positions, so I would recommend you check where every widget is placed in Appearance > Widgets or you may open widgets in a new browser tab, before the parent theme activation, to be able to compare widgets position after changing the active theme to child theme back.
Regards
Hello,
Please read this – https://wordpress.org/support/topic/woocommerce-category-issue-uncategorized/
Regards
Please go to framework/theme-functions.php > find function – etheme_top_links and rewrite it via your-child-theme/functions.php file http://prntscr.com/jpdzda
Regards
Hello,
Unfortunately, there is no the dark version, so you need to make changes for the content styling via Theme Options.
Regards
Hello,
Theme Options > Contact form > Privacy policy for contact form.
If you use a form from Contact Form 7 plugin, please read this documentation https://contactform7.com/checkboxes-radio-buttons-and-menus/
Regards
Hello,
Thanks for the reply.
Do you use cache plugin? Please try to clear cache and check one more time if the code works from the Global Custom css.
Also, try to add the code in Additional CSS area – http://prntscr.com/jpdv19 via Customizer.
Regards
Hello @redstorms,
Please try to activate theme now.
Regards
Dear @kevinkjr,
You need to change the code in the file of the parent theme. We will add this fix in next theme update.
Please try one more time https://prnt.sc/jpdrql , this code should work fine:
function unicode_chars($source, $iconv_to = 'UTF-8') {
$decodedStr = '';
$pos = 0;
$len = strlen ($source);
while ($pos < $len) {
$charAt = substr ($source, $pos, 1);
// if ($charAt == '%') {
// $pos++;
// $charAt = substr ($source, $pos, 1);
// if ($charAt == 'u') {
// // we got a unicode character
// $pos++;
// $unicodeHexVal = substr ($source, $pos, 4);
// $unicode = hexdec ($unicodeHexVal);
// $decodedStr .= code2utf($unicode);
// $pos += 4;
// }
// else {
// // we have an escaped ascii character
// $hexVal = substr ($source, $pos, 2);
// $decodedStr .= chr (hexdec ($hexVal));
// $pos += 2;
// }
// }
// else {
$decodedStr .= $charAt;
$pos++;
// }
}
if ($iconv_to != "UTF-8") {
$decodedStr = iconv("UTF-8", $iconv_to, $decodedStr);
}
return $decodedStr;
}
Regards
Hello,
Please try to activate theme now.
Regards
Hello,
Sorry for the delay. Could you, please, describe your question in more details?
Thanks in advance.
Regards
Hello,
Please read our documentation – https://www.8theme.com/documentation/xstore/menu-set-up/
Demo content import does not include the secondary menu. But we can create it for you.
Can you, please, provide me temporary Dashboard access to your site and I’ll help you with this.
Regards
Hello,
You can use this code to show the top bar on mobile:
@media only screen and (max-width: 1030px){
.top-bar {
display: block;
}
.top-bar .languages-area {
display: block;
max-width: 100%;
text-align: center;
width: 100%;
float: none;
}
.top-bar .top-links .topbar-widget {
display: inline-block;
}
.top-bar .top-links {
width: 100%;
max-width: 100%;
text-align: center;
}
.top-links ul {
float: none;
}
}
Regards
You need to connect site via FTP, open theme-functions.php file and change
function unicode_chars($source, $iconv_to = 'UTF-8') {
$decodedStr = '';
$pos = 0;
$len = strlen ($source);
while ($pos < $len) {
$charAt = substr ($source, $pos, 1);
if ($charAt == '%') {
$pos++;
$charAt = substr ($source, $pos, 1);
if ($charAt == 'u') {
// we got a unicode character
$pos++;
$unicodeHexVal = substr ($source, $pos, 4);
$unicode = hexdec ($unicodeHexVal);
$decodedStr .= code2utf($unicode);
$pos += 4;
}
else {
// we have an escaped ascii character
$hexVal = substr ($source, $pos, 2);
$decodedStr .= chr (hexdec ($hexVal));
$pos += 2;
}
}
else {
$decodedStr .= $charAt;
$pos++;
}
}
if ($iconv_to != "UTF-8") {
$decodedStr = iconv("UTF-8", $iconv_to, $decodedStr);
}
return $decodedStr;
}
to
function unicode_chars($source, $iconv_to = 'UTF-8') {
$decodedStr = '';
$pos = 0;
$len = strlen ($source);
while ($pos < $len) {
$charAt = substr ($source, $pos, 1);
// if ($charAt == '%') {
// $pos++;
// $charAt = substr ($source, $pos, 1);
// if ($charAt == 'u') {
// // we got a unicode character
// $pos++;
// $unicodeHexVal = substr ($source, $pos, 4);
// $unicode = hexdec ($unicodeHexVal);
// $decodedStr .= code2utf($unicode);
// $pos += 4;
// }
// else {
// // we have an escaped ascii character
// $hexVal = substr ($source, $pos, 2);
// $decodedStr .= chr (hexdec ($hexVal));
// $pos += 2;
// }
// }
// else {
$decodedStr .= $charAt;
$pos++;
// }
}
if ($iconv_to != "UTF-8") {
$decodedStr = iconv("UTF-8", $iconv_to, $decodedStr);
}
return $decodedStr;
}
Regards
Hello,
This can be disabled via custom css code only.
Feel free to ask if you have any other questions.
Regards
Please open theme-functions.php file (xstore/framework) > find unicode_chars function > and change this https://prnt.sc/jp2qz3 to https://prnt.sc/jp2r8i
Regards
Please try to use this code:
@media (min-width: 1200px) {
body.home .content-page {
width: 1270px;
}
}
Regards
Hello,
Please provide us with FTP access.
Regards
Hello,
Please update xstore to latest version – http://prntscr.com/jp2e4t https://www.8theme.com/documentation/xstore/theme-installation/theme-update/
Regards
Hello,
1. I do not see the problem. Here is screenshot – http://prntscr.com/jp269f Please clear cache and check one more time. Also, try to check the site from another computer.
2. http://prntscr.com/jp2785
3, 4, 5, 7. Please provide me screenshots, because the page looks same in Chrome and Safari for me https://gyazo.com/e40446d57a3f1eead9a7f118addf3d0a https://gyazo.com/0f9897451d1d3b8e4a210ef28902f240
6. Could you provide a screenshot?
8. Chrome browser – http://prntscr.com/jp2bui
We do not recommend to use old theme version.
Feel free to ask if you have any other questions, I am here to help you.
Regards
You’re welcome!
Feel free to ask if you have any other questions.
Regards
Hello,
2. Please provide a screenshot for better understanding the desired result.
3. You’re welcome! I do not see the problem. What screen size should I check?
Regards
Please add this code also:
.header .navbar-toggle .icon-bar {
background-color: #1e1e1e;
}
Regards
Hello,
Please add this code in Theme Options > Styling > Custom css > Global custom css:
.header .shopping-container .cart-bag:before {
color: #1e1e1e !important;
}
Then clear cache and check. Let me know the result.
Regards