Hello,
Sorry for a delay.
You need create a new widget, add this code in widgets.php in child theme
// **********************************************************************//
// ! Your Widget
// **********************************************************************//
class Your_Widget extends WP_Widget {
function Your_Widget() {
$widget_ops = array('classname' => 'etheme_widget_brands', 'description' => __( "Products Filter by brands", ETHEME_DOMAIN) );
parent::__construct('etheme-brands', '8theme - '.__('Brands Filter', ETHEME_DOMAIN), $widget_ops);
$this->alt_option_name = 'etheme_widget_brans';
}
function widget($args, $instance) {
extract($args);
$title = $instance['title'];
echo $before_widget;
if(!$title == '' ){
echo $before_title;
echo $title;
echo $after_title;
}
$current_term = get_queried_object();
$args = array( 'hide_empty' => false);
$terms = get_terms('brand', $args);
$count = count($terms); $i=0;
if ($count > 0) {
?>
<ul>
<?php
foreach ($terms as $term) {
$i++;
$curr = false;
$thumbnail_id = absint( get_woocommerce_term_meta( $term->term_id, 'thumbnail_id', true ) );
if(isset($current_term->term_id) && $current_term->term_id == $term->term_id) {
$curr = true;
}
?>
<li>
<a href="<?php echo get_term_link( $term ); ?>" title="<?php echo sprintf(__('View all products from %s', ETHEME_DOMAIN), $term->name); ?>"><?php if($curr) echo '<strong>'; ?><?php echo $term->name; ?><?php if($curr) echo '</strong>'; ?></a>
</li>
<?php
}
?>
</ul>
<?php
}
echo $after_widget;
}
function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = $new_instance['title'];
return $instance;
}
function form( $instance ) {
$title = isset($instance['title']) ? $instance['title'] : '';
?>
<?php etheme_widget_input_text(__('Title', ETHEME_DOMAIN), $this->get_field_id('title'),$this->get_field_name('title'), $title); ?>
<?php
}
}
Add the needed code of the needed widget.
And this code to functions.php:
add_action( 'widgets_init', 'your_register_widgets' );
function your_register_widgets() {
register_widget('Your_Widget');
}
Regards,
Eva Kemp.
Hello,
At first please disable WP Smush plugin and regenerate thumbnails with the plugin “Regenerate Thumbnails“.
After that let us know the result.
Regards,
Eva Kemp.
Hello.
You’re welcome.
I recommend you to delete W3 Total Cache plugin completely and reinstall it if you still need it.
Regards,
Eva Kemp.
Hello,
You can create child theme and add footer.php file to the child theme. This way you won’t lose modifications after theme update.
Regards,
Eva Kemp.
Hello,
Add this code in footer.php file before </body>
tag:
<script type="text/javascript">
jQuery(document).ready(function($){
jQuery('img').removeAttr('title');
});
</script>
Regards,
Eva Kemp.
Hello,
Should be fixed now. Please try now.
Regards,
Eva Kemp.
Hello,
You don’t need Visual Composer license. All plugins are external extensions which are included into theme because for each product we purchase “Extended license” and that’s why we are able to include it into them. This plugin works fine without activation and you can always get actual version if you want directly from us. The plugins can be downloaded from this link https://www.8theme.com/download-plugins/ . We update plugins with theme updates from time to time so plugins will be also updated with each next theme update. The option with registering of the plugins has been already added to plugin and this only allows you to get automatic updates and support for this plugin directly from an author if you need. You don’t need to register this product because it is not required but if you want to get those features, then you need to purchase this plugin directly from the author. This is how it works for all themes on Themeforest and not only in our case.
Regards,
Eva Kemp.
Hello,
Please show a product page where you added hover image and provide FTP credentials.
Regards,
Eva Kemp.
Hello,
Please try this css code:
.main-footer-1 {
padding-top: 0px !imporatnt;
}
Regards,
Eva Kemp.
Hello,
I’ve renamed the folder “w3-total-cache” to “w3-total-cache_old” in wp-content/plugins directory and site is working now.
Please check.
Regards,
Eva Kemp.
Hello,
I’ve added !important
to the code and added it to Custom CSS, also this code below:
.main-footer {
height: 300px;
}
Please check footer now.
Regards,
Eva Kemp.
Hello,
I don’t see such issue:
http://storage6.static.itmages.com/i/16/1212/h_1481566478_7079239_f2fb368a37.jpeg
Images and logo are shown.
Please specify in what browsers and OS’s images don’t show.
Regards,
Eva Kemp.
Hello,
1. There is no option to select specific products, but you can mark some as featured and select Featured products in the element settings.
2. Original images sizes of products on our demo are 1,425px × 1,900px.
For your solution you need add this code in Custom CSS for desktop section:
.swiper-slide {
width: 350px;
}
3. Please show a page where you added LookBook.
4. Unfortunately there is no such possibility.
Regards,
Eva Kemp.
Hello,
2. Sorry, but you have to use your own video. Demo images/video can’t be used on clients’ sites due to copyright laws. Our video weighs 2M.
3. As I see you’re using special plugin “Feedback Company XML feed”. Please take our apologies but we don’t provide support for 3rd-party plugins.
4. a) I don’t see Feedback Company widget in top bar. Please re-add it.
b) Unfortunately there is no such possibility. Sorry.
c) Go to Theme Options > Header > Header custom HTML and add your content there.
5. I’ve added Text with separator element in your Static Block. Please check “Summer Collection” column now.
6. I don’t see Subscribe text in your home page. Please show a screenshot and direct link.
7. Sorry, but that feature is for demo only.
Regards,
Eva Kemp.
Hello,
1. The bubbles are added as an image layer and animation is set for it:
http://storage2.static.itmages.com/i/16/1212/h_1481561739_8586206_2beb2a2a76.jpeg
2. “Shop now” button was added in text layer with the code <a href='#' class='btn medium btn-white'>SHOP NOW</a>
3. Please specify what images you’re talking about. Please show a screenshot.
Regards,
Eva Kemp.
Hello,
1. Please add this code in Theme Options > Custom CSS > Custom CSS for desktop:
.carousel-area .product-content-image img {
height: 220px;
}
2. Read in woocommerce documentation how to add custom tabs https://docs.woocommerce.com/document/editing-product-data-tabs/
3. If you use Tags Cloud widget you can change tags number as described here https://www.wphub.com/how-to-customize-the-wordpress-tag-cloud/ .
4. This is Woocommerce option and there is no bulk edit for “review” option.
5. This is related to the plugin “YITH WooCommerce Magnifier”. Deactivate it and gallery images will disappear.
6. Do you mean background image of breadcrumbs? Please show a screenshot what banner you mean and where it’s added on your site.
7. You can edit it in wp-content/themes/royal/framework/shortcodes.php in line 2050.
8. You can create a static block in WP Dashboard > Static Blocks and use “Call to Action” element in Visual Composer editor. Then add “8theme – Static Block” widget in Appearance > Widgets > Footer 1.
Regards,
Eva Kemp.
Hello,
In this case you need change menu items color in Theme Options > Styling > Navigation.
Regards,
Eva Kemp.
Hello,
As I see the same issue persists with default WordPress theme too. You need contact Woococmmerce support regarding Shipping issues.
Regards,
Eva Kemp.
Hello,
You can disable breadcrumbs section is your home page editor:
http://storage7.static.itmages.com/i/16/1212/h_1481547786_9929984_d7796b6125.jpeg
Select “Disable” for “Breadcrumbs Style” option.
Regards,
Eva Kemp.
Hello,
Please add this css code:
.product {
margin-bottom: 20px;
}
.page-content {
margin-bottom: 0px;
}
Regards,
Eva Kemp.
Hello,
There is an error on your site:
Fatal error: Call to undefined function wp_cache_get() in /home/ethiqued/public_html/wp-includes/option.php on line 1123
It’s related to WordPress, not to the theme.
Please try to reupload WordPress files manually via FTP.
Regards,
Eva Kemp.
Hello,
Have you cleared cache folder on the server in wp-content directory?
Please do this and check the site after that.
Regards,
Eva Kemp.
Hello,
Sorry for a delay.
Have you edited theme files?
May we reupload the theme folder?
Regards,
Eva Kemp.
Hello @cemilturken,
You need add some content to your single portfolio project.
Try to use Image element in Visual Composer editor.
Regards,
Eva Kemp.
Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
I’ve checked your site in Chrome browser and it’s working there:
http://prnt.sc/dhmnoc
Are you using the latest browser version?
Regards,
Eva Kemp.
Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
Please specify the site link you are talking about.
Regards,
Eva Kemp.
Hello,
To remove space please add this code in Theme Options > Custom CSS > Global Custom CSS:
.main-footer .wpb_content_element, .main-footer .vc_column_container > .vc_column-inner{
margin-bottom: 0px;
}
Regards,
Eva Kemp.
Hello,
Please add this code in Theme Options > Custom CSS > Global Custom CSS:
.col-lg-3.col-md-6.category-grid.product-category {
width: 100% !important;
}
Regards,
Eva Kemp.