Home User profile
tagDiv Staff
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately the theme doesn’t have an option to display only 2 posts on mobile. All 4 post appear together and are only rearranged, they aren’t separated. What you can do is to hide using custom css on mobiles but they will not appear when you click to show next.
So you can use Lucian’s code to show last 2 post on 100% width or hide last 2 posts – http://screencast.com/t/jm1nfRN3c6

@media (max-width: 767px){
.td-big-grid-post-2, .td-big-grid-post-3 {
display: none;
}
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

I have checked your site and found these errors in console – http://screencast.com/t/GVPln4ZRT
Please deactivate all plugins, leave just Visual Composer active, clear cache and check again if you still have this issue with megamenu. If your issue is solved please activate your plugins one by one and see which one caused this issue.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

You use the same sidebar in the pagebuilder content and also in the Latest Articles. If you want a different sidebar for Latest Articles you can create and use a custom sidebar – http://screencast.com/t/6lcIsCTFnnqh and add widgets to it – http://screencast.com/t/p50iTupt

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

The theme doesn’t output automatic the og: meta data information, but you can use a plugin for this. We recommend to use this plugin WordPress SEO by Yoast plugin because is the best for SEO. Just install it and activate the meta data: http://screencast.com/t/9CBtZm0bESiP We also use it on our demo. After you install it check your page source for your post to make sure the actual data is there – http://screencast.com/t/dqEmJtpPg

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please make sure that cropping option is enabled from Theme Panel > Block Settings – http://screencast.com/t/i3nKippi and regenerate your thumbnails (if you make some changes there) using this guide – https://forum.tagdiv.com/how-to-fix-strange-thumbnails/

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

The Unique articles feature cause this issue, it cannot be used with pagination – if you use pagination it will generate duplicates on the second page – https://forum.tagdiv.com/unique-articles-and-offset-newspaper/
You can try to use offset feature(see above link) or filter articles from different categories on blocks – http://screencast.com/t/s2uZsT9dJsE

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

If you use the latest theme version(1.7.1), the sticky post should appear by default in loop(block,latest articles…) so you don’t have to make any modification in code to appear sticky post for blog page – http://screencast.com/t/gaWAzJzKLChttp://screencast.com/t/aAYfuFwkfQW

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

On our side we did not happen this sort of issue and we could not replicate this. Try to find a way to see when this issue happens, so it can be replicated. Also please send a copy of your error log.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

If you want to appear in Theme Panel you have to add it in td_translate.phphttp://screencast.com/t/2zrqhOajhttp://screencast.com/t/nAi8qZsp66

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Yes, you can change also default color for top menu(if you use full top menu) – http://screencast.com/t/6dXKagVAZ
and for border – http://screencast.com/t/xQw5qeml7CbC

Unfortunately is usually happens because of the speed booster plugin which move the css and js at the bottom of the page structure so that the page will load faster, this is why the theme color appears first then changes, because of the cascading property of css.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please try this custom css for category background and color – http://screencast.com/t/Z3AIj6xP

.category .entry-title span {
background-color: #1AD788;
color: #BD7373;
}

And also for category pagination: http://screencast.com/t/w6uoZCRe

.category .page-nav .current {
background-color: #DBD948 !important;
border-color: red !important
}
.category .page-nav a:hover {
color: #3160B5;
background-color: #B62626;
border-color: #B2AB30;
}

Tagdiv blocks have an option to change title background and color event they are added from widgets section – http://screencast.com/t/EpuOBy1qVcL

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please try this custom css in Theme Panel > Custom Css: http://screencast.com/t/bQ46UEFMnc

.td-post-sharing .td-classic-facebook iframe {
min-width: 120px;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

There seems to be a css issue on android, please try this custom css in Theme Panel > Custom Css – http://screencast.com/t/ORFTwlq8QdP

.td_detect_is_android .td-trending-now-title {
top: 0px;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

I have checked you site and you custom ad is not displayed there – http://screencast.com/t/CXRL7ggoV3II
Please make sure that you add the code properly in Theme Panel > Ads > Custom AD 1.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately theme doesn’t have an option and you will need custom work for this. I suggest to hire a freelance to do this for you as we are working on development, fixes and support and the remaining time dons’t allow us to provide custom work.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

You have an option in backend to limit number of articles – http://screencast.com/t/Up3ki9eaxR

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

All menu items have a css to float left and the menu with is increased automatically when an item is added there – http://screencast.com/t/vketUPgs0m You have to add a width to the menu and the to float right those items using item unique class.
Please try this custom css in Theme Panel > Custom Css: http://screencast.com/t/YeZv6er2

.sf-menu {
width: 100%;
}
.menu-item-4461, .menu-item-4460 {
float: right !important;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Post categories can be displayed in blocks/modules only with custom modifications to the code as the theme doesn’t have an option for this…it will be added in Newspaper 5.
Block 6 use module 9 so you have to make this change there. Please make a backup of your module 9 file and replace the entire content – http://screencast.com/t/Tns86C2g with this one – http://pastebin.com/Bpvy8SHQ
Result: http://screencast.com/t/V5V4jZkrtvFj

If you want to make this change for more blocks/modules you have to do the same for each module where you want categories just paste get_category function that you have in module_blog.php file -http://screencast.com/t/Fr3yRRkmaE and echo categories where you want to show up: http://screencast.com/t/lTidrnT88

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately you will need custom modifications to disable mobile version as the Newspaper theme was designed with an fixed grid layout, responsive as it is fluid and style for desktop/tables/mobile screens. As Christopher wrote you can edit the style.css file and try to remove the @media query’s for phone.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

You have to add the Social Icons widget to Top Right – http://screencast.com/t/LojNFPUW5http://screencast.com/t/gxULQR3pI2

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

If you have added that code there I see that you have already translated some words there – http://screencast.com/t/Ti1c0oHJpHhttp://screencast.com/t/BVyUHg2aSxu4
I’m not sure what you want to translate, in Theme Panel are also these words in translations – http://screencast.com/t/iKhDk5gq

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

I have checked your site and seems that the theme’s icons are not found in child theme – http://screencast.com/t/lx7ZJq9GAd
Please switch to the main theme,clear cache and check if you still have this issue. If icons are showed properly please make sure that your child theme version is the same with the main theme.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

You can customize tabs from Custom Typography – http://screencast.com/t/OaLbHYHL5ky, also if you want to change the font for text content from tabs you can do it via custom css. If you don’t want to apply this for all tabs you can add an extra class – http://screencast.com/t/McKoppGIu and use custom css – http://screencast.com/t/exhykOird

.yourclass .wpb_text_column p {
font-family: Roboto;
font-size: 16px;
}

This will help you if you want to change colors, background… – http://screencast.com/t/h1TZghX9DP
Also you can translate “Continue” from Theme Panel > Translations – http://screencast.com/t/RkVuD4SR

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

You can find Visual Composer plugin in the theme’s files that you have downloaded from themeforest in /plugins folder. The latest version provided and tested with the theme is 4.4.4 version. Update it using this guide – https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/
Like I said above check this also without any plugins active, leave just Visual Composer active, empty cache and see if you still have this issue.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please provide a link so I can inspect this and provide an accurate solution.

Thanks!

Viewing 25 posts - 5,326 through 5,350 (of 7,871 total)