Hello,
Please follow this topic: https://forum.tagdiv.com/topic/need-to-duplicate-tabs-section-in-news-magazine-demo/
Thank you!
Hello,
It can be done only with customization. The theme does not have any such setting. Sorry. You can replace the search icon with a default wp search element and use a do_shortcode function https://developer.wordpress.org/reference/functions/do_shortcode/ inside the header menu file: http://screencast.com/t/L5Hcu8H5i
Thank you!
Hi,
The default big grid 4 looks like this: http://demo.tagdiv.com/newspaper/big-grid-4/ The one you pointed out is the one from the say what demo. Each demo has it;s own unique style. If you want to have the style of the demo, then you need to install the demo or use custom code to customize the style of your grid.
You can try this css code in the theme panel-> custom css code:
.td_block_big_grid_4 .td-post-category, .td_block_big_grid_4 .td-module-meta-info{
display:none!important;
}
.td_block_big_grid_4 .td-big-grid-meta{
padding-bottom:20px;
}
Thank you!
Hello,
This happens because you use the news magazine demo. Every demo has it;s own style. The background color for the text is not present on this demo. It will only change the underline color for the titles, but there is no way of adding a text background from the settings. You can use css to do it though. FOr this you need to assign a custom class to the row containing the element: http://screencast.com/t/XZDTwAgGgsOH and then you can use it inside this code like so:
.mycustomclass .block-title span{
background-color:red!important;
padding-left:15px!important
}
You can add the code in the theme panel -> custom css box.
Thank you!
Hello,
Unfortuantly the mobile theme footer cannot be changed from the theme settings.
You can use thios css though to hide the footer and only leave the sub-footer showing:
.td-mobile-footer-wrap{
display:none!important;
}
Thank you!
Hello,
Unfortunately our theme does not control what info facebook grabs. You can control this to some extent from the seo yoast plugin.
Thank you!
Hello,
Please use this guide to set up the counter: https://forum.tagdiv.com/tagdiv-social-counter-tutorial-2/
Please make sure you enter the correct app key in the facebook fields
Thank you!
Hi,
your images should be at least the size of the biggest thumb from that grid. Your site could not show the correct thumbnail if you have not regenerated them after switching themes. In this case please use this guide: https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
Thank you!
Hello,
Unfortunately not all files work from the child theme. The entire wp_booster folder cannot be changed from the child theme. You will have to make the customization in the main theme files.
Thank you!
Hello,
Please use the block settings tutorial to learn how to control the categories shown: https://forum.tagdiv.com/block-settings-guide/ If you refer to the ajax filter, then you need to change the ajax filter categories, not the block category filter
Thank you!
Hello,
This could be a plugin conflict so please disable all plugins except visual composer, clear cache and reset cdn files. Then test the theme panel again. Also make sure you set your system status parameters like this guide suggests:
https://forum.tagdiv.com/system-status-parameters-guide/
Thank you!
Hi,
I’m not sure exactly what error you are getting. Please provide a link to your site sop we can inspect it.
Thank you!
Hello,
If you want to have the same size for your images, please make sure all images have the same aspect ratio. Taylor Lautner has a portrait picture and Kristen as well. The size of the pictures is different as well not just aspect ratio. If you want control over the images, you need to edit the images themselves and upload the same aproximate size and aspect ratio for them.
http://curiosityhuman.com/wp-content/uploads/2016/05/Kristen-Stewart-Most-Beautiful-Smile.jpg
http://curiosityhuman.com/wp-content/uploads/2016/05/Taylor-Lautner-Worlds-Hottest-Men-of-2016-696×785.jpg
Thank you!
Hi,
Sorry but I cannot see any sliding elements or crooked layouts. Where exactly is this happening? The homepage does not even have any theme blocks on it.
Please try to restore the theme to it;s default code as you may have added some custom css that breaks the layout. Be careful when using visual composer and use this guide: forum.tagdiv.com/how-to-use-visual-composer/
Thank you!
Hello,
Please make sure you use this guide for facebook sharing: https://forum.tagdiv.com/facebook-share/
Also please also test this without plugins. Disable all of them except visual composer, clear cache and reset cdn files.
Let us know how it goes.
Thank you!
Hi,
Our email is contact@tagdiv.com if you want to contact us. As for the right align of the header ad, it is already aligned right as it goes to the right on header style 3. There is no more space for it to go to http://screencast.com/t/2goDvAErg
I’m not sure exactly how you want it to align.
Thank you!
Hi,
Your code is not working as it;s missing a closing tag after the php code ends: http://screencast.com/t/dBTd3vtu
Thank you!
Hi,
You can either customize the html structure if you have the proper knowledge like the reply above mentions (the code is the same in that file) or use a simple 301 redirect from the login link to a custom login page.
Thank you!
Hello,
The default sidebar is not the default sidebar from the widgets area. ‘Default’ in post settings means “inherit”
If you want to have the default sidebar you must chose it like so: http://screencast.com/t/C4KtNl9H4AD
Thank you!
Hi,
You can hide the author box for posts from post settings inside the theme panel: http://screencast.com/t/rQzipibcNN83
Thank you!
Hi,
You did not do anything wrong. The changelog specifies a new option added for modules and blocks: http://screencast.com/t/NoSiuSiT This option can now be found here: http://screencast.com/t/On4ob9qYWUFT
Thank you!
Hi,
We implemented the fix without changing the theme version. The automatic update cannot detect the new fix as the version did not get changed. Please use one of the alternatiove methods of updating (not the automatic one)https://forum.tagdiv.com/how-to-update-the-theme-2/
You will not lose any settings in this process.
Thank you!
Hi,
Unfortunately this cannot be done from the theme settings. The breadcrumbs were not designed to show the page from where you accessed the category or the article. A breadcrumb shows the hierarchy pointing to the article but a custom page and a link towards the post is not part of the standard WP hierarchy. You can use seo yoast and personalize the breadcrumbs if you want but it will require a bit of customization: https://forum.tagdiv.com/topic/use-yoast-breadcrumb-instead/
Thank you!
Hi,
I’m not sure exactly what you mean. That particular tab element layout is custom made for the news magazine demo. it cannot be replicated on another demo from the theme settings. It will need a bit of customization. Please follow this topic: https://forum.tagdiv.com/topic/need-to-duplicate-tabs-section-in-news-magazine-demo/
I’m not sure what you mean with the middle click though. Please provide more information if this is not what you mean.
Thank you!
Hello,
If you want to target specific pages, you will need to add php conditions in the theme files. For this you will need the page id you can get like so: http://screencast.com/t/6wzcGGZb or the page name Then you can use this function: https://developer.wordpress.org/reference/functions/is_page/ (you can use an array for multiple pages)
And place the condition around the subfooter and the menu like so: http://screencast.com/t/vHlxx6Sh7
You can use the same method for the menu.
I hope this helps.
Thank you!