Thanks Chris.
Speedbooster is for advanced users. You need to do a bit of reading before using it.
https://forum.tagdiv.com/how-to-make-the-site-faster/
Thanks.
Hello,
You simply need to adjust the negative margin given to the block for the overlay effect on the desktop version: @media (max-width:767px){
.td-travel .td-travel-features .td_block_wrap{
margin-top: 0!important;
}
}
Now it should position properly on mobile as well.
Thanks.
Hello,
You will have to provide more details as to how it’s ‘contradicting’ as we cannot tell from your screenshot. Please provide more examples and a link to the problem so we can inspect it.
Thank you!
Hello,
You can position it in line with the other elements without problems, but you will not be able to make it square as the other topic suggests. The icon comes from javascript and their server. They do not have square icons. sorry. and you cannot change it with css as it is rendered as an iframe.
For positioning you can use this css:
.td-default-sharing iframe{
position:relative;
left:8px;
top:2px;
}
I hope this helps.
Thanks.
Hi,
i have checked your webiste and did not find the problem as well. Be carefull with plugins as they are the number one reason for these types of issues. Also i saw that you have 2 playlist elements on the same page. This will not work because they will conflict with one another. You can only use 1 playlist element/page.
Thank you!
Hello,
This is a known issue with our modal image/lightbox. It will not work if you use an external link to your images. We are currently working on a fix for this and in a future version of the theme we will implement an option for external links to work with the lightbox. Until then you can turn off the lightbox if you want or use a plugin like WP Lightbox 2
Thanks.
Hello,
It seems that the image slider on the right of the block stretches it’s container over the block. Please check your page in visual composer and check if you have any double row’s or some custom positioning css that might affect the block. You can try to remove the slider and see if the block works and then try to implement it differently.
Let us know how it goes.
Hi,
In version 6 the code was moved to this file: http://screencast.com/t/cUuT4QMXM You can try to add your condition here.
Thanks.
Hi,
You can edit the top menu files if you want to add custom content to it. You need to modify the file coresponding to the top-bar you use(4 types): http://screencast.com/t/q92DBmPa
<div class="number"><p>78945123</p></div>
I hope this helps.
Thanks.
Hello,
Unfortunately there is no easy way to increase the website content area. Our theme uses a fixed width and all elements are created based on this width. If it gets changed, then you will have to adjust every element you use on your site to the new width.
Thanks.
Hello,
You will need to remove any custom css you might have that affects the title and use both these classes to target both versions of the logo:
.td-header-style-7 .td-header-sp-logo img{}
and
.td-header-style-7 .td-affix .td-header-sp-logo img{}
Thanks.
Hi,
Thank you for kind words. It’s always nice to see our hard work is appreciated.
Have a nice day!
Hello,
For the icons, the problem is generated by cdn. You can find a solution here: https://forum.tagdiv.com/topic/strange-chinese-symbols-replaced-icons-and-arrows/
As for the menu disappearance, there could be a plugin conflict so please disable all your plugins except visual composer and clear cache/reset cdn.
Let us know how it goes.
Thank you!
Hello,
You can follow this topic to see how you can display custom post types in blocks: https://forum.tagdiv.com/topic/cpt-ui-plugin/
I hope this helps.
Thanks.
Hi,
Header style 10 uses the logo-text file: http://screencast.com/t/UaqJhTG2y, so you will need to remove/replace the path from here: http://screencast.com/t/JzzYXX0pmhP
Thank you!
Hello,
Please specify the header style you use as the logo is added differently on every header style.
Thank you!
Hello,
Please try to disable all your plugins except visual composer and clear your cache. It could be a plugin conflict that is causing this border. (I could not see the left one, only the top.)
Let us know how it goes.
Thanks.
Hi,
It seems to work properly now: http://screencast.com/t/ORpDE5R9B1Bw. Maybe you had a plugin conflict that interfered with it. Please check this again and let us know if you require further assistance with this as we cannot see the issue.
Thank you!
Hi,
Yes it will be the same as latest only it will only show posts from the ‘featured’ category the specific category.
Thanks
Hello,
Unfortunately there is no easy way about this. It can be done using a sub-domain and creating redirects back and forth from there. it will be no easy task. You will have to redirect every link you can access from the shop page back to the main domain. I have no better solution for this. Maybe you can find a plugin that has such a feature: https://wordpress.org/plugins/jonradio-multiple-themes/ but I’m not sure if it will do the job properly as we have not tested this.
Thanks.
Hello,
You can use the multiple category filter to achieve this. You will need the category id’s you can see here: http://screencast.com/t/pj4lwmr5CKqE and then you simply add your 5 category id’s in the block settings: http://screencast.com/t/qAbsmSlJ
Thank you!
Hello,
The text box does not accept php. It only accepts html. There is also a custom js box but that’s it. PHP can only be added to the theme files. There is no custom php box you can add code to. Sorry.
Thank you for your message.
Hello,
You will need to update your theme to the latest version as this is a known issue caused by the new version of wordpress.
You can follow this guide to update: https://forum.tagdiv.com/how-to-update-the-theme-2/
Thank you!
Hi,
In order to remove the no comments text, you will have to disable comments on posts from the theme panel: http://screencast.com/t/Bn9ih8wA
If this also disable your facebook comments, then you can use css to hide the message like so:
.comments{
display:none!important;
}
I hope this helps.
Thanks.
Hello,
In order to apply the code to all block you can use the code like this:
.td_block_wrap .td-image-gradient:before {
opacity: 0;
}
As for the images, our theme crops the images center-top. Unfortunately there is no option for the cropping of the thumbnails in the the panel. If you want to change this option, you will have to use the theme api: https://forum.tagdiv.com/td_api_thumbupdate/ (for advanced users only)
Thanks.