Hi,
In order for your shortcodes to be shown on all posts, you need to add the function inside the files corresponding to each post template you use on your site:
http://screencast.com/t/pIxfxY5a2aH
Hope this helps.
Thank you!
I quote myself from above:
We are working on fixing this in a future version of the theme.
Sorry for the inconvenience.
Here is a simple solution. Activate the article top like/share and then hide it with css
.td-classic-sharing{
display:none!important;
}
Now the classic sharing option will not be available and the tweeter button will work as expected.
Thanks.
-
This reply was modified 10 years by
Bogdan B..
Hi,
You can remove the padding from the code I provided. Simply delete the part of the code to the padding that needs to remain.
Try removing either ones of these entries to see which one you want removed:
.td_module_10 .td-excerpt{
margin-top:0!important;
}
.td_module_10 .entry-title{
margin-bottom:0!important
}
If you want to apply the date only to the news category you can add an extra condition to the same file you modified earlier and replace the echo $this->get_date code with this one:
<?php if (!in_category('News')){
echo $this->get_date();
}?>
Thanks.
Hi,
If you need the category id’s, you can get them like so: http://screencast.com/t/FNQsNMe2moG
If this is not what your request, then please provide more details so we can understand better how to help.
Thank you!
Hi,
You can a text block above the raw js and add the title like so: http://screencast.com/t/izDHAGQmDkd7
You can use the same text block method but this time add an empty text with title element and simply type in the title and no text content below.
Hope this helps.
Thanks.
Hi,
Please provide more details as I cannot see any problems with the snippets. Please provide a screenshot and point out what is wrong so we can have an idea on how to help.
Thank you!
Hello,
I tested this on my end but this type of “ad” will not work from the ad box as it’s not a standard ad but a js code. In this case your best bet is to use a raw js element in visual composer like so: http://screencast.com/t/DvdY31zUyRC
result: http://screencast.com/t/ms8FqhbPPcxC
Hope this helps.
Thanks.
Hi,
Your best bet at the moment will be to use a plugin. We are working on a solution for multiple authors on the author box so in a future version we will have an improvement on this, but not at the moment. You can try to find a plugin that has this option as there is no easy solution we can provide at the moment.
Thank you!
Hi,
I have checked into this issue and there seems to be a problem with the sharing options. If these options are disabled: http://screencast.com/t/yaIP4G2v, then the tweet will break like it does on your site. Please enable the like/tweet buttons. It’s enough to have just one of them top or bottom and the tweet will work properly. We are working on fixing this in a future version of the theme.
Sorry fort the inconvenience.
Thank you!
Hi,
Please try to deactivate all your plugins except visual composer, clear cache and reset cdn files. This could be a plugin conflict.
Let us know how it goes.
Thank you
Hi,
Please install the plugins from here: http://screencast.com/t/db9rj2ky1 and remove any version you already have installed beforehand. if they still will not work, then please try to upload the plugins via ftp as Chris suggested. They can be found in the main newspaper package: http://screencast.com/t/nJ9HoFit9tsX
Let us know how it goes.
Thank you!
Hi,
Please provide a link to your website so we can inspect this issue.
Thanks.
Hello,
Thank you for your appreciation. Unfortunately your issues are not related to the theme settings.
Our theme does not control neither the permalinks nor the redirects. Permalinks are set form wordpress:
https://codex.wordpress.org/Using_Permalinks and 301 redirects can be done either with plugins or from htaccess.
In any case I have checked your site but could not find the permalink structure you mentioned: http://screencast.com/t/PLkXEkHeJ4U
Every time I access one of your posts, there is no sub-category in the permalink.
We have no reports of permalinks issues with our theme so if this error comes up again, please disable all your plugins except visual composer, clear cache and reset cdn. Also reset your permalinks.
Thank you!
Hello,
Unfortunately our theme will not work on any other platform besides wordpressa. This is the case with every wordpress theme as there are wordpress functions inside it’s code. A theme is not a stand-alone software. It depends on the platform it was created for.
Thank you!
Hi,
There are no explanations to this as we are not the plugin authors. Our theme does not control the category tags appearing in the facebook share. We simply recommended the plugin, not provided a detailed guide on how to use it because plugin settings are not theme related. The plugin author is the one that can answer questions about the plugin settings.
You can find solutions online for this: https://wordpress.org/support/topic/facebook-shares-dateauthor-etc-as-part-of-blog or you can search through the plugin documentation as I pointed above, or contact the plugin author to see how to control the information that gets shared on facebook by using the open graph.
Thank you!
Hi,
Unfortunately if the particular block has this design, you cannot make the thumbnails the same size unless you alter the theme files. You can simply chose a different block as there are 21 to chose from as an alternative (http://demo.tagdiv.com/newspaper/block-4/) because altering the block files will require php knowledge and css for positioning. It will not be a walk in the park. If you want to modify the blocks then maybe the theme api can help: https://forum.tagdiv.com/td_api_blockadd/ (coding knowledge required)
Thank you!
Hello,
The theme has no option to use different backgorund ads for different categories. This can however be done by altering the theme files. You can follow this topic to see how it can be done: https://forum.tagdiv.com/topic/different-background-ad/
and simply replace the is_page function with:
https://developer.wordpress.org/reference/functions/is_category/
or for posts:
https://developer.wordpress.org/reference/functions/in_category/
Hope this helps.
Thank you!
Hi,
I’m not sure what image you are referring to. Is it the background image? Please provide more details so I can better understand how to help.
If yopu want to create a new style, you will need substantial coding knowledge.
https://forum.tagdiv.com/td_api_category_templateadd/
Thank you!
Hi,
Yes, that should work as the guide instructs.
Thank you!
Hi,
The post date can be activated from the theme panel: http://screencast.com/t/VkTckPfDR9h2
Now replace the code with this one:
.td_block_11 .td-module-thumb{
display:none!important;
}
.td_block_11 .td_module_10 .item-details {
margin-left: 0!important;
min-height: 0!important;
}
.td_block_11 .td_module_10{
padding-bottom:0px!important
}
.td_block_11 .td_module_10 .entry-title{
padding-left:0!important;
min-height: 20px!important;
}
.td_block_11 .td_module_10 .td-module-meta-info{
display:none!important;
}
.td_module_10 .td-excerpt{
margin-top:0!important;
}
.td_module_10 .entry-title{
margin-bottom:0!important
}
And one final modification. This will have to be done in the theme files. Open the module 10 file and move the get_date code in the excerpt container like so: http://screencast.com/t/Yq26zJE0Kikx
This is the result: http://screencast.com/t/iSbFifueys6
Thanks.
Hello,
Unfortunately we have not tested any translate plugins with our theme so we have no idea on their implementation.
Most plugins can make use of a shortcode. You can use a do_shortcode function: https://developer.wordpress.org/reference/functions/do_shortcode/
Here is the file that contains the header area: http://screencast.com/t/nJKoLoBo7od
Thanks.
Hi,
It seems the option is deactivated on your end. please activate it from the theme panel:
http://screencast.com/t/dmrQI5Dmf
You can activate or deactivate it for every module in particular.
Thank you!
Thank you Oasontu for posting this solution. I’m sure it will help many users that need it. We try to help wherever we can even if it’s custom work, but this is if the time allows us to fiddle with customization.
Hello,
I have checked your search page and saw the issue. This happens because the module you use for the search page uses the default WP thumbnail from here: http://screencast.com/t/tW7EHrY5 This thumbnail should be 150×150 for the search to display properly.
Thank you!
Hello,
The first 3 footer templates come with default predefined content. Please change your footer template to one without content.
https://forum.tagdiv.com/footer-templates/
Thank you!