Hi,
That is basically what needs to be done to install the theme by FTP. Manually place the theme folder as specified in the guide, in the themes directory. You could make a back-up before, just to be safe. This step is recommended before updating
– https://forum.tagdiv.com/how-to-update-the-theme-2/
Please let us know if you still have problems activating the theme after the reinstall.
Thanks
Hi,
For the Block 9 on your homepage you can try this code
– https://www.screencast.com/t/YfJm1pIisMkO
It will remove the padding and margins for the module used on Block 9 only
.td_block_9 .td_module_8 {
padding-bottom: 0;
margin-bottom: 0;
}
The code has to be entered in Theme panel->Custom Css section. Please let me know if this is what you wanted, or you need something else.
Thanks
Hi,
Try entering the code provided below in Theme panel->Custom Css section
– https://www.screencast.com/t/Ii3ADfrC43s
It should prevent any clicking action on the images used in Smart list style 2, if that is what you are using
.td_smart_list_2
.td-slide-smart-list-figure {
pointer-events: none;
}
Thanks
Hi,
Please provide more details about this problem, so we can better understand. Some useful screenshots with the steps you are taking and the problem that is happening, would be very helpful.
Thanks
Hi,
This is what I am seeing on the page you provided when I access it
– https://www.screencast.com/t/MR3EF6oCMC
I have tried other pages as well
– https://www.screencast.com/t/IAqBWDWBSy
– https://www.screencast.com/t/55F5e3bnU
I don’t know why I am not seeing the problem. I suggest you try disabling all your plugins except Visual composer, clear any caching installed then check again.
Thanks
Hi,
It seems to be an issue when using a different Block header style, than Block header style 1 – Default. This is causing the problem with the category hierarchy. Please enter this code in Theme pane->Custom Css, it should fix the problem for the current header style that you are using for the blocks
– https://www.screencast.com/t/6Y9LbULUPz
.td_block_template_10.widget li {
margin-left: 12px!important;
}
I will add this problem on our issue list, and hopefully it will be fixed as soon as possible.
Thanks
Hi,
You could try to reinstall the theme by FTP and then try the activation again
– https://forum.tagdiv.com/install-via-ftp/
If you still cannot activate it, please send us an email at contact@tagdiv.com and provide admin login information so we can take a look. Also paste a link to this topic in your email.
Thanks
Hi,
1. The latest theme update featured the introductions of the new front-end page editor, the tagDiv composer. This editor is activated by default at the moment you update the theme. If you are using Visual composer, please go to your plugins section and deactivate the tagDiv composer. Then check the functionality of the image box again.
More information about the new editor here
– https://forum.tagdiv.com/tagdiv-composer-tutorial/
– https://forum.tagdiv.com/visual-composer-tagdiv-composer-transition/
2. If the plugin is not displayed in the plugins section, the it is added differently. Maybe you inserted code or shortcode in the theme files, or the theme panel custom code sections.
3. If you want to display an image in the ads section you can do it like this
– https://www.screencast.com/t/NNzw0ldFz
If you have tried this and the image is not displayed, it could be a caching problem. Try clearing any caching installed then check again.
4. Please check the theme system status and make modifications to the mentioned parameters in this guide, if necessary
– https://forum.tagdiv.com/system-status-parameters-guide/
This could be the reason for slow loading and other issues, like settings not saving properly.
The theme is tested and works properly with the Visual composer editor provided in the theme package. This does not require any activation, I could not help you with the activation of a purchased Visual composer issue.
Thanks
Hi,
At the moment, when I inspected your website and browsed in for a while there is no problem with the videos. When returning to the home page, it looks exactly the same. All the videos are still there
– https://www.screencast.com/t/0YEyFDvmTM
– https://www.screencast.com/t/Ob5ybBXoo185
The other page you mention does not have any problem from what I can tell
– https://www.screencast.com/t/dpAwBDOKe
If it doesn’t happen all the time maybe it is caused by a plugin, or modifications to the theme. The elements should not disappear from the pages by themselves.
Thanks
Hi,
Maybe you have changed the Block header style. Header style 12 has a similar feature displayed on the blocks
– https://www.screencast.com/t/hkuGQA1Ze
If you are talking about something else, it would be very helpful if you could provide a screenshot or a link to your website pointing to this.
Thanks
Hi,
I have tested the method and it is still working properly. Maybe you are not making all the steps required. First paste the code provided by Bogdan in his last reply, in the td_module_single.php file. There you will see as specified in the topic, that there are 2 sections. Post sharing top section
– https://www.screencast.com/t/u5CwkINb1u
And lower in the same file, Post sharing bottom section
– https://www.screencast.com/t/7ufxi4Km
After you enter the code for the section you want or both of them, you must enter this code in Theme panel->Custom Css
– https://www.screencast.com/t/qcFiDeb2LwG
.td-social-linkedin {
margin-left:8px;
background-color: #006699!important;
}
Also please make sure to have the Font awesome 4 menus installed and activated.
If it does not appear, try clearing the cache. But the method is tested and works, if you follow the steps exactly as they are mentioned.
Thanks
Hi,
I will ask the team about this matter, and hopefully get back to you with an answer.
Thanks
Hi,
The Craft ideas demo uses a background image for the block header
– https://www.screencast.com/t/IcMzdvSK
The style is specific to that demo, each of the demos has it’s own customization. The block header style used is Block header style 6 with some modifications, that can be seen in the demo stylesheet like this
– https://www.screencast.com/t/XX13G5u0q
Thanks
Hi,
You could try to manually upload the tagDiv composer editor in the plugins folder. Simply unzip the plugin and upload it to the plugins folder in your wordpress installation by FTP.
You can find more useful related information in this topic
– https://forum.tagdiv.com/topic/visual-composer-does-not-have-valid-header/
Please let us know if you still have problems installing the tagDiv composer.
Thanks
Hi,
You can try a code like this in the theme’s functions file
– https://www.screencast.com/t/qtET7iBnp
It should remove the Views field from the screen options, and the views column
– https://www.screencast.com/t/HMxnX6cJD1
– https://www.screencast.com/t/ZR1btZl2vqj
function my_columns_filter( $columns ) {
unset($columns['td_post_views']);
return $columns;
}
add_filter( 'manage_edit-post_columns', 'my_columns_filter',10, 1 );
Thanks
Hi,
Please try to deactivate the tagDiv composer from the plugins section. The new front-end composer is activated by default on the moment you update the theme to the latest version. More about this page editor and also useful information in these guides
– https://forum.tagdiv.com/tagdiv-composer-tutorial/
– https://forum.tagdiv.com/visual-composer-tagdiv-composer-transition/
Thanks
Hi,
You can check the specifications mentioned by Google for ad sizes
– https://support.google.com/adsense/answer/17955?hl=en
– https://support.google.com/adsense/answer/6002621?hl=en
More about the theme ad capabilities and settings in the ads section
– https://forum.tagdiv.com/header-ads-adsense/
For the background a recommended size would be a FullHD image – 1920x1080px
Thanks
Hi,
You can try to use the manual theme activation method
– https://www.screencast.com/t/y9OSLcsc
– https://www.screencast.com/t/AEKaTQM0
Please let us know if you still have problems activating the theme.
Thanks
Hi,
The message should not be displayed if you removed it here
– https://www.screencast.com/t/wRcj94sjbmN
– https://www.screencast.com/t/HEnp2eWxx
Try clearing any caching installed after you make the modification in that file.
Thanks
Hi,
In the mentioned page is displayed a simple block 4 placed at the end of the page
– https://demo.tagdiv.com/newspaper/block-4/
With infinite pagination set in the block settings
– https://www.screencast.com/t/bst3ZhSQ
More about the available block settings here
– https://forum.tagdiv.com/block-settings-guide/
Each category page can have infinite loading as well. There is an option for pagination style in the per category settings in theme panel
– https://www.screencast.com/t/xU73eQicQ
Or a general one for all category pages, in the category global settings
– https://forum.tagdiv.com/how-category-settings-work/
Thanks
Hi,
You could manage the screen options with a plugin that has these capabilities. That way you could probably hide options, or customize what is displayed in the screen options.
Thanks
Hi,
The only sticky ad bar plugin that I found has not been updated for 2 years. A lot has changed in WordPress since then, and it may not work properly.
If you could provide more details about what exactly you are trying to do, I will try to give you a solution.
The theme ad capabilities can be seen in the documentation
– https://forum.tagdiv.com/header-ads-adsense/
If you want different and more options regarding ads, you can try the Adrotate plugin. Some users seem to use this plugin with good results.
Thanks
Hi,
You could use the Image box element
https://demo.tagdiv.com/newspaper/image-box/
At the moment there is no similar gallery element created specifically for this purpose. More elements will be added to the tagDiv composer in future updates.
Or you could try and search for a gallery plugin, maybe you can find one that you can use in the meantime and works properly with the theme.
Thanks
Hi,
That should not happen, the mobile format is displayed only on mobile as it is meant to. The issue could be caused by a plugin that is interfering with the theme. If you could provide a link to your website we will inspect it too see the issue.
Thanks
Hi,
Sorry about that, I have not taken into account other pages. Please try it like this, it should apply on all forum pages
– https://www.screencast.com/t/IZ0E4FhupCmy
– https://www.screencast.com/t/LxUlXXhrw
.bbpress .td-main-page-wrap{
padding-top: 48px!important;
}
Try the code and see if it works properly, or it needs further adjusting.
Thanks