Hello,
Fixed. Check now.
Regards
Hello,
Fixed. Check now.
Regards
Hello,
Add the below code to Theme Options > Custom CSS
@media only screen and (min-width: 993px) {
.navbar-header.navbar-right {
width: 220px;
padding-left: 15px;
}
.tbs {
width: calc(100% - 440px);
text-align: center;
padding: 0;
}
.header-logo {
width: 220px;
max-width: unset;
padding-right: 15px;
}
.tbs .collapse > .menu-main-container {
display: inline-block;
}
.tbs .collapse > .menu-main-container > .menu > li {
float: left;
}
.tbs .collapse > .menu-main-container > .menu {
position: relative;
top: 11px;
}
}
Regards
Hello,
Check now.
Regards
Hello,
We have added custom code to child theme functions.php. Now to display the necessary information in the email add the Hook element to your email content https://prnt.sc/0rzCFwz02H22 and choose the woocommerce_email_after_order_table hook https://prnt.sc/Vue71T-14_r7
Test emails after that. Let me know if that suits your needs.
Regards
Hello,
Don’t use WPBakery page builder to create content of that page. Check it now.
Regards
Hello,
I checked your site and don’t see problem with the gallery https://gyazo.com/e4ea8b9eb9cdf2669d5dbfee0d25be42
Regards
Hello,
Don’t remove that default padding. Go to Theme Options > General > site width > change the site width to 1310px if you need real 1280px width for your content.
Regards
Hello,
We don’t have such a list. You can use the Chrome inspector tool or any other browser dev tool to find the HTML structure of the page and classes that all the elements have https://prnt.sc/3BAsrT-u-dyn
Regards
Hello,
No, it won’t deactivate your theme on production site. You can use the same license for the dev and production sites.
Regards
Hello,
Check now, please.
Regards
Hello,
Point is that the Elementor plugin hides that text even with the default theme https://prnt.sc/PHllbldRAfZZ You can enable and check by yourself.
So, there is no way to display it correctly with the stars. So, either stars or text.
Regards
Hello,
Provide us with FTP access to your site to check the issue in more detail and find out what fatal error appears on your site.
Regards
Hello,
I have sent you the import file to your registration email. You can import that in Theme Options > WooCommerce > Single product > Import/Export.
Regards
Hello,
Subscriptio plugin does not have such a shortcode by default. But we are looking for ways to display mentioned information using email builder hooks. I’ll inform you once developers implement that.
Regards
Hello,
Check now, please.
Regards
Hello,
You have already asked about variation sorting and got reply about this https://www.8theme.com/topic/sort-variations-on-shop-page-parent-products-are-hidden/#post-321947
Regards
Hello,
Go to Theme Options > Blog > Blog layout > Sidebar position > choose Without.
Regards
Hello,
Site width is 1280px according to your settings https://prnt.sc/a1OErWAMFQ0x
It means 1250px for the content itself + 15px +15px of left and right padding.
Regards
Hello,
Check now, please.
Regards
Hello,
We enabled optimization settings in theme options and in cache plugin options and got C grade https://gtmetrix.com/reports/souqzizinia.com/2Vkma4W3/
Regards
Hello,
Yes, sure.
Regards
Hello,
Look, check the sites mentioned in the private content area. Theme is still in use there, for example https://prnt.sc/_VQtPCT_9hgG
Remove theme from these sites at all and reply back. After that we’ll be able to unblock the license.
Regards
Hello,
Ok, we’ll improve the description to mention that theme includes partial translation. Let me know if you still have any problems with the translation of theme strings.
Regards
Hello,
Point is that many users prefer to keep the default templates of the Subscriptio plugin. That’s why we did not create templates for that. At the same time if users create custom templates as a rule they should fit company styles, they display only the information that they want to share with the customer. But if you have problems with the creation of the mentioned templates using email builder we could log in and create them for you. Do you want that we create examples of templates for you?
Regards
Hello,
We can’t remove the folder of the plugin even using FTP because of the permissions https://prnt.sc/pA1wIRxV-1Xh So, I renamed the folder to /wp-content/plugins/et-core-plugin-old and installed the new version of plugin. Delete the mentioned et-core-plugin-old folder.
Regards
Hello,
Thank you for your patience.
Our developers took a look at the issue and found the following:
Plugin author uses $product->get_image_id() in his code but he should use $attachment_id
https://prnt.sc/bwkqupWZJkZe
It took the main image for each variation gallery image before https://prnt.sc/utcZh4ZSq_f-
after the global plugin code fix, it took the correct images
https://prnt.sc/Bed1dsuAntsi
Code before
public function get_gallery($product) {
$attachment_ids = apply_filters('webexpert_skroutz_xml_custom_gallery', $product->get_gallery_image_ids(), $product);
if (sizeof($attachment_ids)>0) {
foreach ($attachment_ids as $attachment_id) {
$this->xml->startElement('additional_imageurl');
$this->xml->writeCData(esc_html(apply_filters('webexpert_skroutz_xml_custom_image',wp_get_attachment_url($product->get_image_id()),$product)));
$this->xml->endElement();
}
}
}
After
public function get_gallery($product) {
$attachment_ids = apply_filters('webexpert_skroutz_xml_custom_gallery', $product->get_gallery_image_ids(), $product);
if (sizeof($attachment_ids)>0) {
foreach ($attachment_ids as $attachment_id) {
$this->xml->startElement('additional_imageurl');
$this->xml->writeCData(esc_html(apply_filters('webexpert_skroutz_xml_custom_image',wp_get_attachment_url($attachment_id),$product)));
$this->xml->endElement();
}
}
}
We added fix on your website globally in
plugins/webexpert-skroutz-xml-feed/includes/scripts/skroutz-engine-v3.php. Contact plugin author and ask them to fix the code because you will lose this fix after plugin update if they don’t fix it globally.
And we added custom filter in xstore-child/functions.php in addition
add_filter('webexpert_skroutz_xml_custom_gallery','webexpert_skroutz_xml_custom_gallery_custom',20,2);
function webexpert_skroutz_xml_custom_gallery_custom($gallery_image_ids,$product) {
if ( $product->is_type( 'variation' ) ) {
$has_variation_gallery_images = (bool) get_post_meta( $product->get_id(), 'et_variation_gallery_images', true );
if ( $has_variation_gallery_images ) {
$gallery_images = (array) get_post_meta( $product->get_id(), 'et_variation_gallery_images', true );
return $gallery_images;
}
return $gallery_image_ids;
}
return $gallery_image_ids;
}
Regards
Hello,
Nope, there are no such options there.
All the available options you can find in Theme Options > Header builder > Search.
Regards
Hello,
Could you please provide us with WP Dashboard access to your site to allow us to check?
Regards
Hello,
Issue was caused by the CSS error https://prnt.sc/0sU-QpGchMAa
I removed the additional } that you added and the code below works ok.
Regards
Hello,
We don’t have ready-to-use templates for these emails. You are able to create them from scratch if you want to use an email builder for them. In another case, the default emails will be sent. Make a test subscription to check the emails you get. After that you’ll be able to decide what you want to see in these emails and create your own email tempalte.
Regards