Forum Replies Created
-
in reply to: visitor counter
Hello,
Theme’s default features do not include a visitor counter. What are you using to achieve it?
Custom changes are not included in support service but i can suggest you visit this link: https://wordpress.org/plugins/search/visitor+counter/
Choose the plugin that best works for you.Best regards!
in reply to: bottom menuHello,
Please refer to this other topic of your regarding footer menu:
https://support.codeless.co/?topic=bottom-footer-menu
Increasing the width to 460px will include the new item as well.Best regards!
in reply to: Revolution Slider doesn't work for the blog siteHello,
Setting up a Revolution slider on your blog page when it is set to your front page is not possible without a little work as sliders are added via page meta options, and setting your front page to your posts page means that there are no page meta options to include a slider with. However, a workaround is adding this line of code at the end of the header.php file:
<?php if( is_home() || is_single('post') ) putRevSlider('yourslider-name'); ?>
Right before the closing tag:<!-- .header -->
Replace the “yourslider-name” with your Revolution slider name. Save changes.
Let us know.Best regards!
in reply to: images and slider problem – Tower themeHello,
I don’t have an exact release date just yet. But we are working on it and will try to release as soon as possible.
You will be notified for every update!Best regards!
in reply to: Hide commentHello,
Please add this code into your custom css box:
#comments { display: none; } div#respond { display: none; }Let us know.
Best regards!
Hello,
The demo was fully imported so there is no need to make further actions. All you need now are some customizations to make it look just like the demo. Customizations that are not possible to be included in the import process.
Please read this article for more: https://codeless.co/installed-demo-data-whats-next/Let us know if you need further help.
Best regards!
in reply to: portfolio sorting issueHello,
What portfolio style are you using? Can i please see a link of the site?
Best regards!
in reply to: Contact Details Map on TabletHello,
Yes, sure. Please add this code into your custom css box:
@media (min-width: 767px) and (max-width:1024px){ footer#footer iframe.wpcw-widget-contact-map { width: 90% !important; }}Let us know.
Best regards!
in reply to: Testimonial Slider ButtonsHello,
This is not quite an issue but a style of these buttons. If you want, you can set them to be still. Just add this code into your custom css box:
.testimonial_carousel_element .pagination a.prev{ left:-60px !important; opacity:1 !important; } .testimonial_carousel_element .pagination a.next{ right:-60px !important; opacity:1 !important; }Let us know.
Best regards!
in reply to: images and slider problem – Tower themeHello,
The button does not appear gray on my side. See screenshot: Did you managed to change it? However, if you want to change the color, please add this code into your custom css box:
.woocommerce #content div.product form.cart .variations td.label { background-color: #f89406 !important; }Change the color to your wish.
Best regards!
in reply to: images and slider problem – Tower themeHello,
Can you please send us a link where this gray box is? I don’t see it in none of your products. See screenshot: https://www.clipular.com/c/6337056625393664.png?k=9tVyUl06x2YVDbnwyjNdcs3ngVU
We will update theme soon with the new woocommerce files updates too. Except for the notification, did you experience any issue with your woocommerce products?
Let us know.Best regards!
in reply to: Previous/next blog buttonHello,
The next/prev buttons do call the posts in chronological order. Left to right, from the very last post for the earliest.
If your post is displaying double then something is not right. Did you perhaps made any changes to theme files? What theme version are you running? What other plugins do you have installed?
Please send us some valid wp credentials in a private reply. So we can give it a closer look.Best regards!
in reply to: Dropdown Menu is not showingHello,
Can i please see a link where are you having this? Woocommerce plugin has no issue with theme. What other plugins had you installed?
Let us know.Best regards!
in reply to: images and slider problem – Tower themeHello,
Did you import with attachments? What demo did you import? You can download the demo images directly from the online demo and import them to your site.
The slider does not have any problem. Most probably the header is set up as transparent and has a background color assigned. Please go to General Options > Header Options and make sure the “Make Transparency Header” option is set OFF.Please go to General Options > Footer Options and set up the footer to have 4 columns. Save changes. The widgets should get to their place automatically. If this does not happen, go to Appearances > Widgets and scroll down the page. You will see the “Inactive widgets” section with all demo widgets already created. Drag-and-drop them to your wish.
Let us know if you have further questions.
Best regards!
in reply to: Service Media VideoHello,
In file vc_templates/services_media.php i edited out this block of code:
if($type == 'self_hosted'){ if(!empty($self_hosted_mp4)){ $output .= '<video autoplay controls> <source src="'.trim($self_hosted_mp4).'" type="video/mp4"></video>'; } if(!empty($self_hosted_webm)){ $output .= '<video autoplay controls> <source src="'.trim($self_hosted_webm).'" type="video/webm"> </video>'; } }to this:
if($type == 'self_hosted'){ if(!empty($self_hosted_mp4)){ $output .= '<video autoplay> <source src="'.trim($self_hosted_mp4).'" type="video/mp4"></video>'; } if(!empty($self_hosted_webm)){ $output .= '<video autoplay> <source src="'.trim($self_hosted_webm).'" type="video/webm"> </video>'; } }The control bar is removed from the video now. Let us know.
Best regards!