Hello,
The xml support comes from wordpress not the theme. You can read more about it here: https://codex.wordpress.org/XML-RPC_Support and you can read this guide to import content: http://codex.wordpress.org/Importing_Content
Thank you!
Hello,
You just need to add the code in the theme panel->custom css box: http://screencast.com/t/tcgXqVJnv
Thank you!
Hello,
Thanks to the great community that has been created here, you can find a lot of information on our forums as well as tutorials for custom implementations such as the google search. One of our users has created such a tutorial and shared it with the community: http://www.getcooltricks.com/wordpress/google-cse-integration-to-newspaper-wordpress-theme/
I hope this helps.
Thank you!
Hello,
Unfortunately there is no easy way to go about this. The theme has no such option. You can create sub-domains and create a WP install on every one for each category. The redirect your links to the specific sub-domain. Not an easy task. There a re plugins to create sub-domains that may lighten your work.
Unfortunately there is no easy solution for it as the theme uses a different style for each demo and you cannot have 2 demos working at the same time on a single website.
Thank you!
Hello,
If you have a piece of code you wish to implement in a post template you need to edit the theme files corresponding to the post template: http://screencast.com/t/0AxZTrDdl These files are found in the main newspaper folder. Every post template uses 2 files: a single.php and a loo-single.php. The number corresponds to the post template you use. no number means default, 1 is template 1 so on and so forth.
Thank you!
Hello,
I investigated this a bit further and it seems we are getting this error as well. I have passed this information to the developers and they will look into it and hopefully provide a fix in the next update.
Thank you!
Hello,
The author function can be found here: http://screencast.com/t/5SABl48sMvd
Thanks.
Hello,
1)
@media (max-width:767px){
.td_block_13{
padding-bottom:0!important
}
.td_module_14 .td-module-meta-holder{
padding-bottom:0!important;
}
}
2) I cannot see the — Maybe you already removed it?
3)Please provide more details as i cannot understand what you mean.
Thank you!
Hello,
Header style 11 uses a header ad under the logo. If you mean to reduce the space between the ad and the content, you can use this css:
.td-main-page-wrap {
padding-top: 20px;
}
.td-crumb-container .entry-crumbs{
padding-top: 2px!important;
padding-bottom: 2px!important;
}
If this code does not work as expected, please provide a link to your website so we can inspect it.
For the ad, in order to move it below the title you can edit the file for the template like so: http://screencast.com/t/hLTGjb8lOW
Thank you!
Hello,
You can adjust the position of the modified date by using this css code:
.the-modified-date{
display: inline-block;
vertical-align: middle;
}
result: http://screencast.com/t/sXrtuXhckt
Thank you!
Hello,
You can remove the border from the table elements by using this css:
table td{
border:none!important;
}
(Further customization to these ‘magazines’ can only be done through the iframe but that does not come from the theme)
Thank you!
-
This reply was modified 10 years by
Alin [tagDiv].
Hello,
If you want the light box to appear on all images, then you need to enable it from the theme panel: http://screencast.com/t/hnSDEbOyJ2qa
If it still does not work please try to disable all your plugins except visual composer, clear cache and cdn. to rule out a plugin conflict.
As for adsense, our theme was built to work with adsense and it offers a few settings to customize the ads: http://screencast.com/t/OY5u679hkDk. Unfortunately the theme cannot interfere with adsense formatting.
Thank you!
Hello,
The new update fixed some issues caused by wordpress 4.4. If you updated wordpress you will need this update for the category pages. Pagination broke on wp 4.4
The main files that were changed in the current version are:
td_page_generator.php
tagdiv_theme.js
tagdiv_theme.min.js
style.css
Unfortunately the app is not tested with our theme so we cannot guarantee it’s functionality.
Thank you!
Hello,
If you want to add a different logo for each category, you have to edit the theme core files and add a condition like so: http://screencast.com/t/RDofG5R4YL This is for a header style 7. Change the corresponding file to the header you use. You can get the category id like so: http://screencast.com/t/oIF2jUCn
';
}
elseif (is_category('CATEG ID')){
echo '';
}
else {
locate_template('parts/header/logo.php', true);
}
?>
For more information about he function: https://codex.wordpress.org/Function_Reference/is_page
Thank you!
Hello Bernd,
1) Please use this custom css to adjust the menu:
.td-full-layout .td-header-style-3 .td-header-main-menu{
padding-left:0!important
}
2) Unfortunately for header styles that use the logo besides the header ad, you cannot increase the size of the logo too much because the ad will then not have enough space to fit in the container and this will happen: http://screencast.com/t/JYhz6YeaKGG
You can change the width like so:
.td-header-style-3 .td-header-sp-logo {
width: 284px;
3)You can use this custom css:
.td-big-grid-post .entry-title a{
color:red;
}
I hope this helps.
Thank you!
Hello,
Please make sure you install the visual composer plugin from here: http://screencast.com/t/OFNxEvUS654
The best way to start is with the theme docs: https://forum.tagdiv.com/wordpress-information/ You will find lots of useful info there that will help you on your project.
Best of luck.
Thank you!
Hello,
Unfortunately changing the width of the sidebar or the main content will cause problems as our theme was built on a fixed width and a grid view. Every element depends on this to display properly.
You can try it to see how it works by using this code:
@media (max-width: 767px){
.td-main-sidebar{
width:50%!important
}
}
As for the theme width for the mobile version, you will have to change quite a few parts of the style.css to make the theme activate the mobile theme on a different scrren size than 767px. Do a quick search through the style.css and search for 767 and see how many entries there are.(http://screencast.com/t/Nvc2O9O5ml) All of these will have to be adjusted to the new screen size if you truly need this customization.
Thank you!
Hello,
The feature you pointed out is actually a ‘smartlist’. Please follow this link to see how smartlists can be set up: https://forum.tagdiv.com/smart-lists/
I hope this helps.
Thank you!
Hello,
Please try to disable all your plugins except visual composer and regenerate thumbnail again using the force regenerate plugin. Also clear your cache and cdn if you use it. (do not use the photon feature of jetpack as it is known to cause problems with our theme)
Let us know how it goes.
Thank you!
Hello,
This could be the case as the code gets changed from version to version that some plugins might work on a particular version and not work on another one. Unfortunately the plugin you are using is not tested with our theme and we cannot guarantee that it will work 100%. You can try to see if the problem is still there without other plugins as well. Disable all of them except Press Permit Core to rule out other conflicts.
Thank you!
Hello,
The structure data errors are on our list of fixes as google changed their algorithm a bit and created these errors for us to fix :). We are working on these errors and they will be fixed in the new version of the theme.
Thank you for your understanding.
Hello,
If the files were replaced, then you already have the fixes from the new version. Your theme version did not change ‘by number’ because you need to replace style.css for the theme to display the new theme version. (forgot to mention that. Sorry! No changes were made in the style.css except for the theme version)
Thank you!
Hello,
This usually comes from a plugin conflict or css minification. Please disable all your plugins except visual composer and check for the error again. (same thing here: https://wordpress.org/support/topic/text-not-showing-in-slider-and-typeerror-f-is-undefined-in-firebug)
Also clear cache and cdn if you use it.
Let us know how it goes.
Thank you!
Hello,
You can get your code from envato like so: https://forum.tagdiv.com/how-to-find-your-envato-purchase-code/
Then you can use it to activate the theme on the second domain and delete your first one.
Thank you!
Hello,
The workaround Alin pointed is to change the ‘useclick:true’ to ‘useClick:false’ here: http://screencast.com/t/oynMamxrO
Thank you!