26866 comments found.
Hi, is it possible to add a searchfunction/searchbar inside header (place where header add is)?
Hi,
It may be possible with modifications on the code, you have to edit the header ad file and replace the code with the search bar code – http://screencast.com/t/JcduU8PLc – Unfortunately i don’t have a solution/suggestion for the searchbar code, you have to look for a plugin or hire a professional to build it for your.
Thank you, Emil G.
This is a great theme … pre sales question – is there a way to set custom header menu’s for individual pages – for example I have a site with two languages ( english and local language ) and wish to sey two different menus for those pages?
Thanks
Hi,
The theme doesn’t have such an option, you can only set a global header from Theme Panel -> Header – http://forum.tagdiv.com/header-styles/ – A solution may be to create conditions in the code to load a certain header based on the current language (which is returned by the translation plugin) or to use two wordpress installs, one for each language.
Thank you, Emil G.
Hi, is your theme compatibile with Hide My WP plugin? Cheers!
Hi,
We didn’t do any test with this plugin so i cannot say if it works and how it behaves, sorry.
Thank you, Emil G.
how do we update the theme?
Without messing up our homepage visual layout etc etc. We haven’t modified any code but don’t want to remove any changes that we have made inside the theme control panel
Hi,
If you update from v.6.x you won’t loose any settings, they are saved in the database. First backup your site (database and files) – https://codex.wordpress.org/WordPress_Backups – in case something goes wrong with the update you could use the backup to restore the site. The update procedure is described here – http://forum.tagdiv.com/how-to-update-the-theme-2/
If you update from an older version (v4) you have to follow the “Updating from Newspaper 4” section – http://screencast.com/t/qpMbKD5ke
Thank you, Emil G.
Hi, i need to make some tests on your theme before i bought it. It is possible to have a demo version? Thanks.
Hi,
Unfortunately we don’t have a backend demo, sorry, only the frontend demo is available.
Thank you, Emil G.
Custom query in blocks? is is possible? I tried building a block using Grid Elements Builder but a) it doesn’t show up as an element and b) no custom query option.
any ideas?
Hi,
Please send some details(screenshots) on how you configured the block via email at contact@tagdiv.com , also include a link to this conversation.
Thank you, Emil G.
Found it, has to Insert a Post Grid, and choose a template
How to Disable widget on Mobile thank you
i try to add this code following this http://screencast.com/t/tUm5WgefBTr but nothing change
/* responsive phone */ @media (max-width: 767px) { .left_side_mob { display: none; } }
Hi,
That’s an old solution and it was intended to work only on a specific template.
For pages you have to edit the page and add a class on the column you want to hide – http://screencast.com/t/HexyBse1dAW – then use custom css to hide it on mobile:
@media(max-width: 767px){
.custom_class {
display: none;
}
}
For posts, categories, etc use the following css:
@media(max-width: 767px){
.td-main-sidebar{
display: none !important;
}
}
The css must be added into Theme Panel -> Custom CSS.
Thank you, Emil G.
Hi TagDiv,
I think this theme is not working well with HTTPS URLs.
I have modified Base URL to https version but still there are some items which are causing insecure mixed content.
Specifically the below code
.td-footer-wrapper::before { background-image: url(‘http://URL/images/xx.png')
Could you please let me know how can i fix this issue?.
Is there any way in your theme settings to enable https links?.
Hi,
Please send an email at contact@tagdiv.com , include the Item Purchase Code, the version of theme used and a link to this conversation and we will provide info on why you get that error.
Thank you, Emil G.
how to change button or add picture in this : http://i.imgur.com/zSNE4jG.jpg
Looking at it small no featured
Hi,
If you want to add a button image you have to make modifications on the code – http://screencast.com/t/h9n01JWT9t5
Or you could modify them with custom css, ex – http://screencast.com/t/y5bVwJlfGg
.td-post-next-prev-content span {
color: #ff0000;
font-size: 14px;
display: inline-block;
padding: 5px 10px 5px 10px;
border: 1px solid black;
}
The css must be added in Theme Panel -> Custom CSS.
If you don’t know how to do the modification i suggest that you hire a professional developer to help you with this, look for one on places like – http://studio.envato.com/
Thank you, Emil G.
How to Delete from the menu bar? “td-icon-menu-down” icon
Hi,
You could hide it with custom css, just add the following css in Theme Panel -> Custom CSS:
.td-icon-menu-down {
display: none;
}
Thank you, Emil G.
Hi! plz rep my mail :<
Hi,
We replied via email.
Thank you, Emil G.
Hi, Would you please help me what happening chinese words too more.I want to same as english paragraph can auto change to shorter.Please look my website http://www.yahushua.wedia.com.tw/ thanks
Hi,
The function which counts the words doesn’t work fine on some languages. For this case you could use the word count option in Theme Panel – http://screencast.com/t/APsSvyGgLcv6
If you refer to something else please provide more details.
Thank you, Emil G.
Hello, The top menu on mobile disappear. How can I make it show on mobile? Thank you.
Hi,
Add the following css in Theme Panel -> Custom CSS:
@media (max-width: 767px){
/*socials*/
.td-header-top-menu-full {
display: block;
}
/*menu*/
.td-header-sp-top-menu {
display: block!important;
}
}
Thank you, Emil G.
Thank you Emil G 
How can I add a comma to the view count? For example 12,500 instead of 12500
Hi,
You could use the number_format() function, just modify the code like this – http://screencast.com/t/asQ0M8s22 – http://screencast.com/t/IDlBEILy
$buffy .= '<span class="td-nr-views-' . $this->post->ID . '">' . number_format(td_page_views::get_page_views($this->post->ID)) .'</span>';
Thank you, Emil G.
Hello Tagdiv, hope the download link inside my item details is the updated theme ?
Hi,
Each time we update the theme the new package replaces the old one. If you donwnload the theme package now you will get the latest version.
Thank you, Emil G.
I have a question. I need to develop the website localhost first, and then put on temporal server, and after a month of bureaucracy i want to put on real server. I see that theme has to be registered, what happened if i do it three time?
Hi,
It’s ok, you can activate it on multiple development locations and on the main site.
Thank you, Emil G.
Hi, May I ask the process of; 1. Installing the speed booster plugin on my sport newspaper site 2. How can I do update easily? I’m nursing the idea to upload via ftp and overwrite the file directly… Your 10k dollar advice please…
Regards
Hi,
1. Speed Booster can be installed like any other plugin, just go to Plugins -> Add New -> Upload Plugin – Chose File – the file is located in the theme package (one you downloaded from Themeforest) – http://screencast.com/t/dW6uQaHqs9 – after the file is selected press the install button – http://screencast.com/t/OhhNbp1439J – and activate it – http://screencast.com/t/atATwAHm
2. Do you refer to the plugin update? you could update via ftp or wp-admin, both should work just fine.
Thank you, Emil G.
Hi, which plugin for newspaper can you recommend for post ratings? I’ve tried it with free WP-PostRatings-Plugin but it seems that isn’t working.
Hi,
We made some tests in the past with this plugin – https://wordpress.org/plugins/rating-widget/ – and it worked fine. We didn’t do any test lately.
Thank you, Emil G.
Hi! I like your theme for my proyect. It is posible to change the width of sidebar? I need a smaller one. Thank you!
Hi,
The theme doesn’t have such an option, sorry. It may be possible with custom modifications on the code but you also need to adjust the theme elements (blocks, modules) to the newly set sidebar width. My advise is to hire a professional developer to help you with this modification, you can look for one on places like – http://studio.envato.com/ – We would have gladly made it for you but for the moment we cannot offer custom work, sorry for this.
Thank you, Emil G.
thanks
David
If I hope you support me fix this question,how much i have to pay?
Hi,
The function which counts the words doesn’t work fine on some languages. For this case you could use the word count option in Theme Panel – http://screencast.com/t/APsSvyGgLcv6
Thank you, Emil G.