This topic has 39 replies, 3 voices, and was last updated 6 years, 5 months ago ago by Rose Tyler
Hello, @temppelinemanta
1. Please create a new topic and provide link to post with the gallery.
2. Ultimate Addons for Visual Composer is a required plugin, you can delete it but some features will be unavailable after that. Here you can find latest plugins versions – https://www.8theme.com/download-plugins/ (to update plugin, simply connect to your server using FTP. Copy extracted plugins folders into wp-content/plugins/).
Regards
Hello!
How can I add an web shop to my site? Love this Lifestyle theme, and I´d like to keep it. I only need help to create an webshop. I can not make any codes, so I need halp or guide from the beginning. 😀
– Anette –
Hello @temppelinemanta,
You can install WC plugin – https://wordpress.org/plugins/woocommerce/
and follow the plugin documentation https://docs.woocommerce.com/
Regards
Hi,
Thank You. I did that, but now the searh button does not appear, and on the mobile version there is icon for searc twice, but they are not working…
site:
http://prntscr.com/jwsrwa
mobile:
http://prntscr.com/jwss7y
help wanted again! 😀
– Anete –
Hello @temppelinemanta,
Please check content of top bar widget area or provide wp-admin access.
Regards
Hi,
I´ll be happy to have Your help. Please, if You can fix problems on mobileversion too.
Hello @temppelinemanta,
Lifestyle is theme for blog, to make it works with WC correctly some addition customization should be done. Add this code in functions.php of child theme:
function etheme_search_form() {
$search_view = etheme_get_option('search_view');
$header = etheme_get_header_type();
if( etheme_get_header_structure( $header ) == 4 || $header == 17 ) {
$search_view = 'modal';
}
?>
<div class="header-search">
<?php if($search_view == 'dropdown'): ?>
<div class="et-search-trigger search-with-form">
<a class="popup-with-form"><i class="fa fa-search"></i> <span><?php esc_html_e('Search', 'lifestyle'); ?></span></a>
<?php
// if(!class_exists('WooCommerce')) {
get_search_form();
// } else {
// get_template_part('woosearchform');
// }
?>
</div>
<?php else : ?>
<div class="et-search-trigger search-dropdown">
<a class="popup-with-form" href="#searchModal"><i class="fa fa-search"></i></a>
<?php
// if(!class_exists('WooCommerce')) {
get_search_form();
// } else {
// get_template_part('woosearchform');
// }
?>
</div>
<?php endif; ?>
</div>
<?php
}
function etheme_search_form_modal() {
?>
<div id="searchModal" class="mfp-hide modal-type-1 zoom-anim-dialog" role="search">
<div class="modal-dialog text-center">
<h3><?php esc_html_e('Search engine', 'lifestyle'); ?></h3>
<small class="mini-text"><?php esc_html_e('Use this form to find things you need', 'lifestyle'); ?></small>
<?php
// if(!class_exists('WooCommerce')) {
get_search_form();
// } else {
// get_template_part('woosearchform');
// }
?>
</div>
</div>
<?php
}
Regards
Hi,
Thank You, I´ll do that, but first I´ll have to be sure…which one of these: http://prntscr.com/jzjpz8
Hello @temppelinemanta,
Please follow our documentation to install and activate child theme on site https://www.8theme.com/demo/docs/lifestyle/#child_theme then open the function.php file of child theme via FTP and add code from my previous reply.
Regards
You must be logged in to reply to this topic.Log in/Sign up