Unfortunately this seems to be an issue indeed and I will add it to our bug list and we will fix it in future updates. Sorry for the inconvenience and thank you for pointing this out. For a temporary solution, please follow this link to add a custom message in your password reset email: http://wordpress.stackexchange.com/questions/160456/how-to-apply-the-retrieve-password-message-filter
Thank you!
Hello,
Unfortunately you cannot add any content below the pagination of the latest articles. If you require such functionality the simplest way is to use another page template and create a block named ‘related articles’ to imitate the latest articles section.
Thank you!
Well I no longer see any logo on your site: http://www.irreverentgent.com/
You can simply remove any logo from the theme panel header section or footer if you want to remove the footer logo.
Thank you!
Ok, Done!
Hi,
You can modify the text from the theme translations panel and translate it to what you want it to show:
http://screencast.com/t/P09l8eOKQ
Thank you!
Hello,
Changing the thumb size of the related articles will not be an easy task. You will have to change the code for the element and change the thumbnail used on that element. http://screencast.com/t/NIjbgnaPGJ
You can change the thumb to another one from this file: http://screencast.com/t/f1gUfDoM
Then you have to regenerate thumbs for it to show up properly.
Thank you!
Hello,
Please provide a link to your site so we can inspect it.
Thanks
Hello,
Well if the other ads worked with display:none, the content ones should as well. Try to use this code:
.td-g-rec-id-content_inline{
display:none!important;
}
If it;s non adsense you must use this code:
.td-a-rec-id-content_inline{
display:none!important;
}
Thank you!
Hi,
Sorry, please compare your code with the one I added there. You will see there is a if condition there wrapped around the standard theme code. Here is a more explicit screenshot:
before: http://screencast.com/t/nR8pDZeSFr
after: http://screencast.com/t/tdMKsBKlLE
Replace that last part of code with this one:
<?php
if ( !is_page(12577) ) {
echo td_global_blocks::get_instance('td_block_ad_box_mob')->render(array('spot_id' => 'header_mob'));
}
?>
and change the page id in the code to your own.
Thanks.
Hello,
For the mobile theme you can find the code here:
http://screencast.com/t/Y4pXW34sR
Thanks.
Hello,
Unfortunately our theme has no such option. You can only select a post style for the entire site layout but not for a specific category. There is no simple way to add such functionality.
You can follow this topic for one method to accomplish this:
https://forum.tagdiv.com/topic/different-post-template-for-one-category/
Thank you!
Yes, the theme ads a sort of “protection for screens smaller than 500 pixels to remove all floats . If this is what you are referring to and want to have images float right even below 500 px, you can use this css in the theme panel->custom css box” :
@media (max-width: 500px){
.alignright {
float: right!important;
}}
But this is the reason this decision was made as when a smaller screen is used, the text will look like this:
http://screencast.com/t/7fpNmn3q
In order to prevent text being stretched that way vertically we removed floats for every device under 500px.
Thank you!
hello,
It seems your speedbooster plugin is not active? It has a compatibility function in it;s code. Check your system status and see if speedbooster is active. If not, please read this topic:
https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/
Thank you!
Hello,
You should keep a back-up of the modified file or use it in a child theme as that particular file will probably not be modified on each update. If the file will not get modified, you can use the update patch that is included in each version of the theme and replace the files that were modified by the new theme version
Thank you!
Hi,
The mobile theme as you know has a different header ad than the desktop theme: http://screencast.com/t/5CyGWerl
If you only want to remove it on the mobile homepage you will have to add a condition around this code:
http://screencast.com/t/ZIMmqfCqcdx8
You will have to use is_page and use the page id number (you can see it in the browser inspector when inspecting the mobile homepage) as the is_home function will not work on the mobile theme.
Thank you!
Hello,
If you want to add a link to block 9, you will have to do it using html in this file: http://screencast.com/t/xLDEkXY8 The theme has no such option so you have to add it through hard-coding.
Thank you!
Hi,
No permission needed :). It was just a thought as it may help other people who need to add VK to the sharing options. Your solution only helps people further if they require anything similar.
Thanks for sharing.
Have a great weekend!
Hi,
We it’s a matter of preference as I don’t think it will affect SEO either way but then again i’m no seo expert. Google is the one that needs strict rules so we tried to implement them as we interpreted this guide: https://developers.google.com/search/docs/data-types/breadcrumbs but different opinions arises here:
https://forum.tagdiv.com/topic/removing-home-from-breadcrumb-in-google-search/
https://forum.tagdiv.com/topic/google-link-changed-after-theme-update/
Thank you!
Hi,
This guide should show exactly what you have top do: https://forum.tagdiv.com/author-card/
Here is the gravatar documentation: https://codex.wordpress.org/How_to_Use_Gravatars_in_WordPress
If you still cannot get it to work, send us an email at the above address and we will investigate.
Thank you!
Hi,
The plugin is not a live count and is affected by cache. You probably did not clear the cache after setting it up and it took a bit longer for the fb count to update but now it shows fine: http://screencast.com/t/mkjGCE6li
Thank you!
Please provide a link to your site so i can inspect it
Hi,
Please contact us via email at contact@tagdiv.com and provide a link to your website so we can login and investigate the issue. Please also include a link to this topic so we can identify you.
Thank you!
Hi,
Well Chris provides proper answers and in most cases we do not need to interfere 🙂 (Thanks Chris) If the provided answer is the right one, we simply mark the topic as ‘resolved’ as there is no sense in only confirming a provided solution.
If we consider that we need to add anything we will.
For the featured video thumb you will probably have to use this guide: https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
Thank you!
OK,
You did not mention this but when using a smart list, the alignment does not work anymore no matter the image size. You should have mentioned you use a smart list from the start. A smart list in totally different from a normal post. A smart list will ignore the wp settings. A smart list will even ignore the wordpress thumbnails and provide the image as big as the container ignoring the thumb size you add from the media library of WP.
Smart lists have a predefined style and it cannot be altered from the wp mce editor. You will also notice that images will not even keep their position. If you add an image to the bottom of a list item for example, some smart lists will move the image to the top considering it as a sort of “featured image” for the list item.
This is the way the smart lists were created. They are not usual posts.
If you still want to alter the style and align the images right you should wrap your images inside a div container like for example :
<div class="smartlist_image"> place your image code here </div>
Then you can add this code in the them panel->custom css code:
.smartlist_image{
float:right;
}
The you simply need to wrap all your images from the smartlist content inside the div element and your images will align to the right.
Thank you!
Hello,
Unfortunately you cannot have both requests as the main container will not let anything move more to the left. Here is what I mean: http://screencast.com/t/JNbndLsOiK
As for the fonts, you can use this custom css:
.td_data_time{
font-size: 10px;
}
.menu-top-container{
font-size: 15px;
}
Thank you!