Hello,
You most probably be new to adsense and the ads are not yet delivered. It can take up to a few days before the ads are actually delivered by google. The ad code is there but there is nothing coming through from google.
Thank you!
Hello,
Sorry but the css problems you are facing is beacause of your modifications. The bottom sharing should show up like so: https://www.screencast.com/t/O0bQJh5JVdk
The social icons were nefver meant to show the text as yours do. It has been tempered with and that is why the layout broke.
Please be mindful that css is very sensitive and each change will affect multiple locations and cases.
You already changed a good bunch of the theme css so before opening a topic with css issues like the cuting on the titles, please try to remove your customization and test again. The theme in it’s default state does not cut titles.
For the author name on the post, please use this css code to center it.
.single_template_7 .td-module-meta-info{
margin-left: auto;
margin-right: auto;
display:table;
}
Thank you!
Hello,
Sorry but our theme does not have any page sharing options. You can maybe find a plugin that can provide this functionality as there are many sharing plugins to choose from.
Thank you!
Hello,
The sticky menu is separate from the main menu. It will not work in it;s current form on the sticky menu.
if you want to affect only the mobile version with the code I provided, then add it in the advanced css box under mobile phones: https://www.screencast.com/t/qnaXteSKRUT
If you want the code to also affect the sticky menu, please use this code instead:
.td-header-menu-wrap-full, .td-affix{
-webkit-box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.15);
box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.15);
}
Thank you!
Hello,
Please leave just wp super cache and visual composer active (disable all other plugins) and then use these settings for the plugin: https://forum.tagdiv.com/cache-plugin-install-and-configure/
Then clear cache afterwards.
Let us know how it goes.
Thank you!
Hello,
There must be something wrong about your file as the file from the last version has 979 lines of code, not 911
We do not get this error on any of our installs using php 7.0.
First, try to disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
If the error is still there, please try to reinstall the theme using this guide: https://forum.tagdiv.com/install-via-ftp/
Thank you!
Hello,
Please do not use PHP 7.1 Our theme is only tested with php version 7.0 or lower.
Thank you!
Hello,
Please try to increase your system status parameters as this guide shows: https://forum.tagdiv.com/system-status-parameters-guide/
If you use the wordfence plugin, please set the firewall to learning mode.
If this is not the case, then please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Let us know how it goes.
Thank you!
Hello,
I checked your site but I see captions on your images like so: https://www.screencast.com/t/uZkLxTNX
Do certain images get a caption and certain ones don’t? Usually a problem affects all images not just particular ones.
If this is the case, please try to disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
Hello,
Sorry but the latest version of visual composer is not yet available. We will include it in the next theme update. When the update is released, please use this guide: https://forum.tagdiv.com/newsmag-how-to-update-visual-composer-plugin/
Thank you!
Hello,
The word home is your page title. If you do not want to show the page title please change the page template to the default template and the page title will not show up anymore. https://forum.tagdiv.com/newsmag-page-templates/
Thank you!
Hello,
For pages it;s a bit more complicated as pages can have lots of different elements and a general code will affect all of the page elements. Please provide a link to your site and provide specific instructions to where you want the text justified.
Thank you!
Hello,
Please try to switch to a wp default theme and see if the spaces come from the theme or not. I can say for sure the theme does not add any spaces or remove spaces on your content. Plugins can do this though so it could be a plugin conflict. If on a WP default theme the spaces are ok, then please try to disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
Hello,
You can add this code in the theme panel->custom css box:
@media (max-width: 1018px){
.td-pb-span8 .td-with-like .td-post-share-title {
display: block!important;
float:left;
}}
Thank you!
Hello,
If you want to add the exact same shadow as the header style 1 shadow, you can use a biox shadow like so:
.td-header-menu-wrap-full{
-webkit-box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.15);
box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.15);
}
Add the code in the theme panel->custom css box.
Thank you!
Hello,
Yes, this is the theme thumbnail system that will not show the full images but rather thumbnails of your image in order to load the page faster. Having full size images on your homepage will result in very slow loading times.
Here is a list of thumbs used by our theme: https://forum.tagdiv.com/theme-thumbs/
Thank you!
Hello,
In order to get the pagination above the ad, you will have to remove the article bottom ad and use a custom ad in the post template files and simply place the ad below the pagination:
<?php echo do_shortcode ('[td_block_ad_box spot_id="custom_ad_1"]');?>
https://www.screencast.com/t/3domcBEg5
You will have to do this for each of the post templates that you use. Each post style has it’s own file.
Thank you!
Hello,
Sorry but our theme does not have this kind of setting. The post title is the same on posts and in categories. There is no setting for a second post title. What you can do however is use the subtitle instead. Our theme does not have a setting to add the subtitle on blocks but it can be done by using the following method:
Please add this code in the module file you want to use on your blog page:
<?php $td_subtitle_module = get_post_meta($this->post->ID, 'td_post_theme_settings', true); ?>
<p class="td-sub-title"><?php if(!empty($td_subtitle_module['td_subtitle'])){echo $td_subtitle_module['td_subtitle'];} ?></p>
Add the code in the corresponding file: http://screencast.com/t/6qhiGeeGO
Now you can add subtitles to specific modules. You set the subtitle by editing the post and adding content in the subtitle field.
I hope this helps.
Thanks
Hello,
Our theme has 2 places where the post author is specified.
The first is on the post itself: https://www.screencast.com/t/zt9FdyZwbPpU
The second setting is for pages, category pages and everywhere a block or module shows up: https://www.screencast.com/t/PQtKvHnbh
Thank you!
Hello,
You seem to have memory allocation issues. Please use this guide to increase your parameters: https://forum.tagdiv.com/system-status-parameters-guide/
Also please make sure you only use php 7.0 or below.
Thank you!
Hi,
We added compatibility with php 7.0 so you should not get any errors. Please provide the errors you are getting with php 7.0 and mention where you get the errors.
Thank you!
Glad it worked out!
Best of luck on your project and have a nice day!
Glad it worked out!.
There is a setting in the theme panel to deactivate the login: https://www.screencast.com/t/iH9dOBcB6bcp
Thanks
Hello,
Please make sure the system status parameters are set according to this guide: https://forum.tagdiv.com/system-status-parameters-guide/
Also if you use wordfence, please set the firewall in learning mode.
A plugin conflict can also affect the theme panel so please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
Hello,
If you switched to another account but the images are stiull there it is a clear caching issue. Please only use wp super cache and these settings: https://forum.tagdiv.com/cache-plugin-install-and-configure/
For a cdn server pleas euse these settings: https://forum.tagdiv.com/cloudflare-cdn/
Also please contact your host and have them remove the hosting side cache.
Thank you!