Home User profile
tagDiv Staff
I love to get energized by social interaction! Curious and eager to improve, I enjoy traveling and learning new things.
Lucian
tagDiv Staff

Hi,


@julingn
The version 5 of newspaper theme will be available within 2-3 months.

@Rodney828
Unfortunately the newsmag theme doesn’t have an option for the width, the white space can be customized via page builder or reduced using custom code.

Thanks

Lucian
tagDiv Staff

Hi,

As you can see here there is an filter that should prevent the current post to be included to the similar articles section: http://screencast.com/t/dYHL7FjtnuFq so this should not happen.
I have also checked for this and found no issue with this. Could you please send a link of your site which has this issue so we can check this.

Thanks

Lucian
tagDiv Staff

Hi,

The revolution slider version included in the latest theme version is 4.6.0. We will release an update with the latest version of the rev slider plugin this week.

Thanks

Lucian
tagDiv Staff

Hi,


@Max79word
Please provide more details about your issue! When you say “theme-customizer” you refer to the theme panel ? and what error do you get?
Please let me know!

Thanks

Lucian
tagDiv Staff

Hi,

To return noting when there are no search results you could go to translation panel in theme panel and set just an “space” for “no results”: http://screencast.com/t/CdceGXrTWc
The “If you’re not happy with the results, please do another search” can also be translated/changed from theme panel > translation panel: http://screencast.com/t/5PbpQDTEbIcM

Thanks

Lucian
tagDiv Staff

Hi,

I have checked your site and found that your link aren’t appearing as link is because you don’t have them as links.
You need to do as Christopher suggested and add your link’s into an html anchor tag then use the css below to set a color for them: http://screencast.com/t/R5MchevoBQJy

.widget_text a {
color: #7bc6f1
}

Thanks

Lucian
tagDiv Staff

Hi,

Now the error seem to come from the revolution slider plugin so please make sure that you disable all plugins then check again.
If this issue is till present please update the theme files using this guide:https://forum.tagdiv.com/how-to-update-the-theme/ ..and make sure that you make a back-up of your current theme installation before you do it.
Please let me now if you still have this iisue after this.

Thanks

Lucian
tagDiv Staff

Hi,

Please provide more details about the boxes you want to change color on author page and also provide your site’s URL.
Here is how you can change the author box background-color: http://screencast.com/t/tr4BFciDN8
Use this css:

.author .author-box-wrap{
background-color: blue;
}

The twitter share opening in two windows appears when using two twitter instances on the same page. This is a common twitter issue and we are still trying to find a solution for it.

Sorry for the inconvenience and thanks for the message!

Lucian
tagDiv Staff

Hi,

Please add this compression change line to your functions.php file, turn off smush-it, and then do regenerate thumbnails.

add_filter( 'jpeg_quality', create_function( '', 'return 100;' ) );

Test this by uploading a new image and check if you see any differences.
Please let me know!

Thanks

Lucian
tagDiv Staff

Hi,

You can only add infinite scroll pagination to blocks so if you want infinite scroll on your home you have to use a homepage template without latest articles section and add a block with infinite scroll pagination. Here you have an example: http://demo.tagdiv.com/newspaper/homepage-infinite-scroll/

Thanks

Lucian
tagDiv Staff

Hi,

There are no image files because the icons are added using the custom newsmag font: http://screencast.com/t/gU7pKrZB

Thanks

Lucian
tagDiv Staff

Hi,

Those are block titles: http://screencast.com/t/qPgpSdgzWX You need to edit the page then edit the blocks and change the custom title.

Thanks

Lucian
tagDiv Staff

Hi,

I have checked your site and found this js error in your console: http://screencast.com/t/00MXQtAfz which can cause this so please make sure that you check for this without any plugins active and also make sure that you empty cache and purge files if you use any CDN host services.
Please let me know!

Thanks

Lucian
tagDiv Staff

Hi,

Could you please give us wp-admin and FTP access so we can check this, seems that we can’t replicate this in order to find a fix for it. Please send your wp-admin and FTP login details at contact@tagdiv.com and also provide an URL to this tread.

Thanks

Lucian
tagDiv Staff

Hi,

Thanks Christopher!

@shiftanddrive

We are working on adding bbpress support on future theme updates.

Thanks

Lucian
tagDiv Staff

Hi,

Please send me your site’s URL so I can check this. The second smart list uses the 640 width thumbs created when the image is uploaded.
Please let me know!

Thanks

Lucian
tagDiv Staff

Hi,

You can also do it via custom css if the panel doesn’t help you with it. Use the font-weight property: http://www.w3schools.com/cssref/pr_font_weight.asp

Thanks

Lucian
tagDiv Staff

Hi,

Please try this custom css: http://screencast.com/t/5k5sGpxn7VO

@media (min-width: 1024px) {
#cse-search-box input[type=text] {
width: 89%;
max-width: 89%;
}
}

@media (min-width: 768px) and (max-width: 1023px) {
#cse-search-box input[type=text] {
width: 85%;
max-width: 85%;
}
}
@media (max-width: 767px) {
#cse-search-box input[type=text] {
width: 80%;
max-width: 80%;
}
}

@media (max-width: 500px) {
#cse-search-box input[type=text] {
width: 76%;
max-width: 76%;
}
}

#cse-search-box input[type=text] {
border: 0px solid rgb(126, 157, 185) !important;
}

Please let me know how it works for you!

Thanks

  • This reply was modified 11 years by Lucian.
Lucian
tagDiv Staff

Hi,

Thanks Christopher! The show/hide categories tags mentioned in the changelog refers to single post pages.

@Larane
All this items: http://screencast.com/t/7tszADEk should be subcategories of the selected category meaning that they will appear there if there are set as subcategories.
Ex: – http://screencast.com/t/J0FkIHBatQ Result: http://screencast.com/t/B3Z3nJcX

Unfortunately there is not option to disable them but if you don’t want theme there you can remove this code: http://screencast.com/t/sZVvmYk5TT or hide them via css.

Thanks

Lucian
tagDiv Staff

Hi,

For views to appear on module view you have to make some changes to the module file you wan to use and add this line <?php echo $this->get_views();?> to it like this: http://screencast.com/t/mvPFV3j1 then add the get_views function to the td_module file, like this: http://screencast.com/t/0CQ0vPrc
This is an example for the 7 module but you can do it for other module as well.
Result: http://screencast.com/t/nHmm5cLZ1L
Here you have the get_views function: http://pastebin.com/yfvFpeKa

The comments/views icons are added via css using the newsmag font, like this: http://screencast.com/t/HrqO1w3usey
Hope this helps!

Thanks

  • This reply was modified 11 years by Lucian.
Lucian
tagDiv Staff

Hi,

The 1.3 version of the theme has been released today with a fix for this issue, you can download it from themeforest.

Thanks for the message!

Lucian
tagDiv Staff

Hi,

You would need custom modifications to set just that post on first position or you can use the tag filter to filter just 5 posts which will always be the same and the specific post appear on first position.
Hope this helps!

Thanks

Lucian
tagDiv Staff

Hi,

Could you please provide more details about this as I have also checked for this but haven’t found any issues with it. Please send your site’s URL with an example of this or a screenshot.

Thanks

Lucian
tagDiv Staff

Hi,

Not sure about this as I’m afraid it would not be easy to achieve this we will consider it though if more people will request it.

Thanks for the message!

Lucian
tagDiv Staff

Hi,

Use this: http://screencast.com/t/XvVfv4d2Psog

.td-header-main-menu .td-make-full {
margin-top: 5px;
margin-bottom: 5px;
}

Thanks

Viewing 25 posts - 2,801 through 2,825 (of 6,600 total)