Forum Replies Created
-
in reply to: Events Calendar problems
Hello,
You are using a third party plugin and we do not cover third party plugins support. But i can tell you that you have a javascript error connected to the event calendar plugin. Please see screenshot.
I suggest you contact the plugins authors for more insight on it.Best regards!
Hello,
These are no errors but notices. You can remove them by editing this line:
define('WP_DEBUG', true);
to this:define('WP_DEBUG', false);in your wp-config.php file.Using a child theme does not give any problem with our theme. What are you using to configure the child theme? It may not be compatible with theme scripts and therefore may be the reason for these notices.
Let us know.Best regards!
in reply to: Making main menu part of the sticky header?in reply to: WoocommerceHello,
Please go to file css/woocommerce.css and find this line:
.woocommerce .with_sidebar ul.products li.product, .woocommerce-page .with_sidebar ul.products li.product { width: 30.8011350%; }Replace with this:
.woocommerce .with_sidebar ul.products li.product, .woocommerce-page .with_sidebar ul.products li.product { /* width: 30.8011350%;*/ }Only for the categories, it will show the products in 4 column. Sorry but this is a restriction of the plugin and for now this is all we can support.
Our developers team is looking into it and will include a fix in the next theme update.Best regards!
in reply to: Making main menu part of the sticky header?Hello,
This is not this header default style (to have the menu sticky as well). So to change it you need to edit theme files. Please go to file js/main.js and find these lines:
/* ----------------------------- Sticky Nav ------------------------------ */ function codelessStickyNav(){ "use strict"; var opened = false; var position = $('.header_wrapper').css('position'); var bool_test = false; $('.logo_only_sticky .header_wrapper #logo').css('opacity', 0).css('visibility', 'hidden'); $(window).scroll(function(){ var top = $(this).scrollTop(); if(top > stickyNavTop + 300 && !opened){ $('body').addClass('sticky_header'); setTimeout(function(){ if($('.header_wrapper').hasClass('background--dark')){ $('.header_wrapper').removeClass('background--dark'); bool_test = true; } $('.header_wrapper').css('position', 'fixed').css('visibility', 'visible').addClass('open'); opened = true; }, 200);Replace with:
/* ----------------------------- Sticky Nav ------------------------------ */ function codelessStickyNav(){ "use strict"; var opened = false; var position = $('.header_wrapper').css('position'); var bool_test = false; $('.logo_only_sticky .header_wrapper #logo').css('opacity', 0).css('visibility', 'hidden'); $(window).scroll(function(){ var top = $(this).scrollTop(); if(top > stickyNavTop + 300 && !opened){ $('body').addClass('sticky_header'); setTimeout(function(){ if($('.header_wrapper').hasClass('background--dark')){ $('.header_wrapper').removeClass('background--dark'); bool_test = true; } $('.header_wrapper').css('position', 'fixed').css('visibility', 'visible').addClass('open'); $('.full_nav_menu').css('position', 'fixed').css('visibility', 'visible').addClass('open'); opened = true; }, 200);Let us know how it will go.
Best regards!
in reply to: visual composer 5 install problemHello,
Please go to your wp-content/plugins folder in the server, using a ftp account (or cpanel). Find and delete folder js_composer. Go back to your wordpress dashboard > Plugins > Add New. Import your own purchased Visual Composer plugin. Install and activate it.
Best regards!
in reply to: Unwanted 85px Padding-Bottom – Cannot Remove!Hello,
What do you mean by “The scroll down also goes left and right weirdly”?
The padding value does not affect whatsoever the horizontal layout. I opened your site but i don’t see any horizontal scrolling.If you have made to many css changes to your site, i suggest updating theme with a fresh version in order to rule out all possible errors generated from the file changes. Save a backup of your old version just in case you made important changes.
Let us know how it will go.
Best regards!
in reply to: WoocommerceHello,
In file woocommerce/content-product.php i edited this line:
if ( 0 === ($woocommerce_loop['loop'] + 1) % $woocommerce_loop['columns'] ) { $classes[] = 'last'; }To this:
if ( 0 === ($woocommerce_loop['loop'] - 1) % $woocommerce_loop['columns'] ) { $classes[] = 'last'; }And i removed the custom css added in the last reply.
The products show in 3 columns now. Please check your site.Best regards!
in reply to: Portfolio Item – slideshowHello,
You can use the “In Container Slider/Image/Video” type of portfolio items style. Go to portfolio item Single portfolio options > Select the style of the single portfolio. See screenshot. Add images of your slideshow here.
Best regards!
in reply to: Unwanted 85px Padding-Bottom – Cannot Remove!Hello,
Can you please check at General options > Layout > Page Builder Row Margin Bottom ? See screenshot. Make sure you have removed the padding here as well.
If you still get it, fill in the necessary information on your extra information fields of your profile data. So we can give it a closer look.Read this article for more information.
Best regards!
in reply to: View All in portfolio sectionHello,
You can access that file via a ftp account. Follow this path: wp-content\themes\tower\includes\core\codeless_routing.php
To move away the logo from mobile menu icon, add this code into your custom css box:
@media (max-width: 979px){ #logo img { padding-left: 20px !important; }}Edit the values to your wish.
Best regards!
in reply to: Countdown element does not seems to be workingHi,
For the responsive, just add this custom css:
@media (max-width: 480px){ .countdown_amount { font-size: 60px; font-weight: 300; line-height: 98px; }}Edit the values to your wish.
Best regards!
in reply to: Urgent – Images not loading on Chrome on iphoneHello,
Please clear cache and make sure you have a proper internet connection. I opened your site from my samsung s6 and chrome’s responsive mode and the images are displaying ok in all cases.
Best regards!
in reply to: WoocommerceHello,
The shop page is indeed a page. It will take the layout you have set up in General Options > Layout > Pages Default Layout. I edited it and set a sidebar to page’s (see screenshot).
Second step is to add the woocommerce widgets to “Sidebar Woocommerce” in Appearance > Widgets.
Lastly, i added this code into your custom css box:.woocommerce .with_sidebar ul.products li.product, .woocommerce-page .with_sidebar ul.products li.product { width: 41% !important; }Please check your site and let us know.
Best regards!
in reply to: background clourHello,
Please add this code into your custom css box:
body, html, .top_space, .bottom_space, .viewport { background-color: rgba(247, 241, 241, 0.96) !important; }Let us know.
Best regards!