Hi,
We paginated the categories section on the latest versions – http://screencast.com/t/AiaTTBUj
What theme version do you use?
Thank you, Emil G.
Hi,
You have to create a new page, set the template to “Homepage – with article list” – http://screencast.com/t/e3rpwQSu, configure it to use module 8 or 9 – http://screencast.com/t/OI1wx7ZueD eventually add more elements on top and save the page – http://screencast.com/t/mSgEYIeRLFsa
Set the newly created page as a main page – http://screencast.com/t/Zz1NXUoxG
Thank you, Emil G.
Hi,
You mean on modules? or on post page? please provide more details, some images may help.
Thank you, Emil G.
Hi,
Add the following code in functions.php : – http://screencast.com/t/SiAPKYmkNF
add_filter( 'show_admin_bar', '__return_false' );
Thank you, Emil G.
Hi,
1. You have to edit the post template files(depending on the style used loop-single default or 1-5) and add the following code above the title – http://screencast.com/t/JzT8ofAsKpX
render(array('spot_id' => 'custom_ad_1'));?>
Then you need to use custom css to adjust it (add the css inside Theme Panel -> Custom CSS) – http://screencast.com/t/YMdiBRy1
article .td-a-rec-id-custom_ad_1 {
margin-top: 15px;
margin-bottom: 0px;
}
2. Try the following css: – http://screencast.com/t/nb2b9iGqZ0Is
@media(max-width: 767px) {
.header-search-wrap {
display: none;
}
.mobile-logo-wrap img {
right: 0px !important;
left: 0px;
}
}
3. The padding is applied to the entire content – http://screencast.com/t/IgwOnop5
You could try to change the ad container position to relative an move it to the left (0px).
Thank you, Emil G.
Hi,
Each browser may interpret certain parameters differently, if you disable max-width you can see the same behavior on chrome – http://screencast.com/t/Mgy3QHGj9Fl
If you disable the float on the following element – http://screencast.com/t/eybNZV8bjHCS it will display properly – http://screencast.com/t/jfGSzdaqUF9 , then you have to check if that element is displayed properly on all browsers.
So basically you have to take all browsers, test your banner and if necessary fix it via css. The alternative would be to use our system which is tested and works on all browsers.
Thank you, Emil G.
Hi,
It’s only possible with custom code modifications and it’s not an easy task. I’ll add this on our list and i’ll talk with the team to see if we can implement it in a future udpate.
Thank you, Emil G.
Hi,
Those size setting (auto…etc) only work for adsense, you use custom banners so they don’t do anything.
You can see on our demo that the top ad has more stages depending on the screen size – http://screencast.com/t/yecNfe0t – http://screencast.com/t/QQZ99gpJ – on mobile is disabled.
If you use only one (non-responsive) banner you have to create custom css to make it fit properly on all screensizes, ex:
@media (min-width: 768px) and (max-width: 1018px){
article .td-a-rec-id-content_top,article .td-a-rec-id-content_bottom {
width: 460px !important;
}
}
@media (max-width: 767px){
article .td-a-rec-id-content_top,article .td-a-rec-id-content_bottom {
width: 100% !important;
}
}
Thank you, Emil G.
Hi,
The content of the post is: – http://pastebin.com/e4BuhSbP
Try to correct it and get it back to us and we’ll replace the current one.
Thank you, Emil G.
Hi,
Unfortunately none of the themes has such an option, you can check the demos to see what’s possible on them, sorry.
1. Your server response issue is much worse – http://screencast.com/t/GzowiIEu3m3
For images try a plugin like Smush it – https://wordpress.org/plugins/wp-smushit/
Or add the following code at the end of the functions.php file:
add_filter( 'jpeg_quality', create_function('', 'return 50;' ) );
It will compress all future added images to 50%, but you have to regenerate the thumbs for the images that were already uploaded, you can doit using the Force Regenerate plugin – https://wordpress.org/plugins/force-regenerate-thumbnails/
2. Check if it’s not hidden – http://screencast.com/t/kiODtMN1n
Thank you, Emil G.
-
This reply was modified 11 years by
Emil G.
Hi,
Please provide more details about this plugin, maybe a link to its official page so i can take a look.
Thank you, Emil G.
Hi,
@Christopher – Thanks!
@Novaque – The Author Box contains the Author hCard data, you disable it and that’s why you get those errors. The issue is on the list, we’ll fix it in one of the next updates.
Thank you, Emil G.
Hi,
I guess it’s doable using a plugin like Advanced Custom Fields and echo the field value from each post instead of that text. I’ll add this on the list and i will talk with the team about it.
Thank you, Emil G.
Hi,
1. I don’t know what smartlist you use. For smartlist 2 please edit td_smart_list_2.php and increase value of title lenght: http://screencast.com/t/V6DoWP2d
You can do exactly the same for the smartlist you want.
2. You can try the following css: – http://screencast.com/t/2X3wE7Yx
.td_smart_list_2 .td-sml2-current-item-title {
font-family: Verdana, sans-serif;
font-size: 18px;
line-height: 18px;
}
It depends on the list used and the element you want to target. The theme doesn’t have an option for them yet, sorry.
Thank you, Emil G.
Thanks!
-
This reply was modified 11 years by
Emil G.
Hi,
Please send an email at contact@tagdiv.com , paste a link to this conversation and provide wp-admin access so i can take a look.
Thank you, Emil G.
Hi,
7. It’s only possible with custom work.
8. After you added an image select image details – http://screencast.com/t/pnaCbHwOa
And activate “modal image” – http://screencast.com/t/sgtUk2GCIxFU
9. When you add a single image write your caption here – http://screencast.com/t/h9cAPoy4fkj
Result: http://screencast.com/t/iNExcrBw3UJ9
10. You can doit like this:
– add a link button to your menu, change the url to your main page url and replace the navigation label with an element which links to your desired icon – http://screencast.com/t/FASGk5tqwcR
– Use CSS to restrict the height of the icon – http://screencast.com/t/CkaVqiqXh2
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Tokyoship_Home_icon.svg/50px-Tokyoship_Home_icon.svg.png" />
11.Please use this custom css to remove more article on mobile and tablet:
@media (min-width: 1019px) {
.td-more-articles-box{
display:none;
}
}
12. It’s only possible with custom work.
13. Make sure you set the correct sidebar and that there’s a block on it.
Thank you, Emil G.
Hi,
If you delete the title from the block and save the page the box shouldn’t appear.
Please provide more details.
Thanks!
Hi,
Mega-menu has a limited value for subcategories, you can change it if you edit td_menu.php like this: http://screencast.com/t/y5knbgFQJ – and for mobile menu – http://screencast.com/t/3y2F3njxhtHZ
Result: http://screencast.com/t/Dbv12mO16
Thanks!
Hi,
Please post some images with the sidebar area. Do you use special characters on the sidebar name? if you do delete those sidebars and create new ones using Latin characters (no special characters) in their name.
Thank you, Emil G.
Hi,
You can try the following solution:
Please paste your code in Custom Ad1 (in Theme Panel -> Ads) and edit single.php like this: http://screencast.com/t/qA6162bsn
<div class="td-container">
<div class="td-container-border">
<div class="td-pb-row">
<?php echo do_shortcode('[vc_row][vc_column width="1/1"][td_ad_box spot_id="custom_ad_1"][/vc_column][/vc_row]');?>
</div>
</div>
</div>
Result: http://screencast.com/t/Hj0Uf6rr
Thanks!
-
This reply was modified 11 years by
Emil G.
Hi,
I cannot replicate this issue on my side.
Please send an email at contact@tagdiv.com , specify the issue and provide wp-admin access so i can take a look.
Thank you, Emil G.
Hi,
We’ve made some tests and it seems to come from the modules containing reviews used in the sidebar, on the demo there are none, that’s why the issue doesn’t appear there. We’ve added on the list for the next update, sorry for the inconvenience.
Thank you, Emil G.
Hi,
Do you refer to full width on header area like here – http://demo.tagdiv.com/newspaper/
Please provide more details?
Thank you, Emil G.
Hi,
Your new page has a different id – http://screencast.com/t/eLJonZ4J11
To make the css apply to all pages replace .page-id-30 with .page
Thank you, Emil G.
Hi,
An alternative would be to do a search and replace for the default blue color (use Notepad++) inside the style.css file – http://screencast.com/t/hevfNoHJToFs
Thank you, Emil G.