Forum Replies Created
-
in reply to: Include Comma in Counters
Hello,
Please go to file js/animations.js and find this block of code:
od = new Odometer({ el: $count[0], format: '', theme: 'minimal', duration: $count.data('duration') });edit format to this:
format: '(ddd),dd',Let us know.
Best regards!
in reply to: Scroll Story (some Folie themes) not loadingThis reply has been marked as private.in reply to: VC Elements MissingHello,
You add back elements in Visual Composer by commenting out the element’s line in file includes/core/codeless_elements.php.
Example: Find this line:vc_remove_element("vc_single_image");
Edit to this://vc_remove_element("vc_single_image");to bring back the single image element.
and this line:vc_remove_element("vc_cta");
To this://vc_remove_element("vc_cta");
For the Call To Action element.Let us know.
Best regards!
in reply to: Hyperlinks underlined and not underlinedHello,
Please edit the css you have to this:
body p a { text-decoration: underline; font-weight: bold; }Let us know.
Best regards!
in reply to: Demo FilesThis reply has been marked as private.in reply to: Woocommerce Template OverridesHello,
Theme does support and allow Woocommerce template overwrite.
As described in the link you posted, you can overwrite Woocommerce templates by adding a woocommerce folder inside your theme folder and adding there the template files you want to change(overwrite).
Tower theme has this already done. Inside Tower theme folder there is the ‘woocommerce’ folder with all files we have changed in order to fit better the layout of our theme design.
You can change these to your wish if you do not want to keep theme’s defult style for the shop.
Keep a backup of the edited files or use a child theme.Please know that additional changes to theme style according to your own personal preference are not included in support. So we recommend you hire a developer to help you get the changes you want.
Best regards!
in reply to: Great Problem with SpecularHello,
Specular theme is not yet compatible with PHP 7+. We will make it compatible in future updates, but as for now, it is not.
However this is not the case, as we have tested it with PHP 7.1.11 and the listed errors do not happen.Best regards!
in reply to: Content not visibile on Safari 7Hello,
Sorry for the late reply.
I see the menu dropdown in ipad, is not visible because of the white background. You can set the content background to transparent for this screen size and smaller by adding this css into your custom css box:@media (max-width: 979px){ #content { background: #fff0 !important; }}This should be the result: https://postimg.org/image/hyau6byjf/
As for the content in general, i do not see any missing content in Safari. Can you send me a screenshot of what are you getting? So we can understand better your view.Best regards!
in reply to: Codeless Builder – Shop Pagination not showingHello,
To display all products in a page, you only need to change the number of products to show. That is this option: https://postimg.org/image/6t3i2ax23/
Just set a big number here, so it covers your current product number and the ones you will be adding in the future.
(Edit* i see you already did that!)You are right about the pagination. Thank you for noticing this!
We are currently working on this and will release a theme update as soon as it’s solved.Best regards!
Hello,
That is because the css classes are not the same with and without a link. Without a link, only the
buttonclass is present. When you set up an url, the<a>tag is added and along with it the link css attributes.
This screenshot show it: https://postimg.org/image/n2to50ct7/I added the edited code the above to the page’s custom css box:
@media (max-width: 979px) { .vc_btn3.vc_btn3-block { display: -webkit-box !important; } }The media width is changed to at least 979px, so it covers a wider range of responsive layouts. Please clear cache and check your page.
Let us know.
Best regards!
in reply to: VC row hidden behind slider when using transparencyHello,
This is the same question as this topic of yours: https://support.codeless.co/?topic=transparent-row-hidden-behind-slider/#post-28887
Since it was assigned as resolved, we did not open it further. I already replied regarding your question in the older topic. Please check it out first.
Let us know if this works for you.Best regards!
in reply to: Transparent row hidden behind sliderHello,
Sorry for the late reply in this. The topic was assigned as resolved so it was not checked again.
Sure you can control which row gets above. I added some custom css to give the second row more priority in displaying when the “In Container” option is selected. Please check out this screenshot: https://postimg.org/image/58t46dai3/
The changes are made in the test homepage page you pasted in the first reply of this topic.Let us know if this works for you.
Best regards!
in reply to: Paragraph Tags Missing When Posting to BlogHello,
Sorry for the misunderstanding!
Please go to file tower\includes\view\blog\loop-timeline.php and find this block of code:<div class="text"> <?php if($post_format == 'video' || $post_format == 'audio') echo codeless_text_limit(get_the_content(), 60); else echo get_the_excerpt(); ?>Replace with this:
<div class="text"> <?php if($post_format == 'video' || $post_format == 'audio') echo codeless_text_limit(get_the_content(), 60); else echo codeless_text_limit(get_the_content(),60); ?>Let us know.
Best regards!
in reply to: Cannot edit animated counterHello,
Please fill in the wp login information on the extra information fields of your profile data. So we can give it a closer look.
Read this article for more information.Can you post your server’s configuration data as well? So we can investigate the reason causing this.
Best regards!
in reply to: register folie not working – error: [object Object]Hello,
Are you perhaps running the site under HTTPS? Can you please deactivate HTTPS for register this theme? If you have any other third party plugins installed, please deactivate them and try again.
If you can’t, you can start work without problem, the theme doesn’t have any restrictions without registration.Let us know.
Best regards!