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,

You can go trough the header styles and set the full width logo one this will also set the header ad to full width: http://screencast.com/t/MJ0SoaxvdtNy
You can change the logo size via css if you need to look different.

Thanks

Lucian
tagDiv Staff

Hi,

Please provide more details about the button you refer too and also provide an URL to your site and point me to the button you need to change.
Please let me know!

Thanks

Lucian
tagDiv Staff

Hi,


@tonejarvis
Please make sure that you use the child theme provide with the latest theme files. I have also tested this and found no issue with it, should work fine.

Thanks

Lucian
tagDiv Staff

Hi,

I will add this on our requests list and we will consider it for the next update, until then you can use the widget from bbPress or try to implement the solution posted here by @Lucas: https://forum.tagdiv.com/topic/implement-ajax-loginregister-system/
Sorry for the inconvenience!

Thanks for your message and for understanding!

Lucian
tagDiv Staff

Hi,

I have also tested the content from our demo and haven’t had this issue: http://www.google.com/webmasters/tools/richsnippets?q=http%3A%2F%2Fdemo.tagdiv.com%2Fnewsmag%2Ftd-post-8-infinity-pools-you-have-to-see-to-believe%2F
Please make sure that you have and add this classes: http://screencast.com/t/xmVBVC7Q97jy
Please let me know if this helps and also make sure your have this option set in your theme panel: http://screencast.com/t/jjTAjbnrKN9

Thanks

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

Hi,

Could you please provide more details of your issue or let me now if you have managed to fix as I have checked your site and haven’t found any issues. A screenshot would also help.

Thanks

Lucian
tagDiv Staff

Hi,

You can also set the sidebar for the page as well from page template settings section: http://screencast.com/t/29IKb73Cj7rV
To remove the more stories box from mobiles you can sue this custom css in theme panel > custom css filed:

@media (max-width: 767px) {
.td-more-articles-box{
display:none;
}
}

To hide the sidebar you can use this custom css:

@media (max-width: 767px) {
.td-main-sidebar {
display: none !important;
}
}

Regarding ads please note that those ad switches are for adsense ads only so if you are using other type of ads will not work. Please send your site’s URL so I can also inspect this.

Thanks

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

Hi,

You can use this method I’ve posted here: https://forum.tagdiv.com/topic/how-just-make-next-and-prev-next-on-pagination/#post-24385
You need to adjust it to look like you need it too.

Thanks

Lucian
tagDiv Staff

Hi,

Bbpress plugin by default gets the 14px avatar size so you need to rewrite this within bbpres files and try to find a hook for this or you can use a plugin like WP User Avatar

Thanks

Lucian
tagDiv Staff

Hi,

Add this function to your theme functions file: http://screencast.com/t/XB2LpOjyfR6

function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');

Thanks

Lucian
tagDiv Staff

Hi,

Thanks Chris!

@ERP
Please note that when you load the stacks the content or the page layout doesn’t change. This option will just import color settings, font settings..
Please import demo data then insatl stacks: https://forum.tagdiv.com/installing-the-demo-data/ after doing this you will find the “homepage – tech” page under home pages on your menu: http://screencast.com/t/o9ctnXKirncS
That should look like the tech page from our demo.
Please let me know if you still can’t manage to do this and also provide yous site’s URL.
Also replied via email.

Thanks

Lucian
tagDiv Staff

Hi,

Unfortunately not as we are still investigation this! We will fix this as soon as possible.

Sorry fro the inconvenience!
Thanks for your message and for understating!

Lucian
tagDiv Staff

Hi,

Do you still have this issue as I have checked your site and haven’t found it, you fb sharer looks fine: http://screencast.com/t/npZhAzFpzKQP
Use the debugger – https://developers.facebook.com/tools/debug/og/object/ http://screencast.com/t/7vgEwASWeB to fetch new info and check if this also happens after doing that as often the fb sharer can be the cause of this.
Please let me know if this happens again and point me to an post that has this issue.

Thanks

Lucian
tagDiv Staff

Hi,

The adsense ads are automatically resized for banner image ads aren’t that’s why you need to add them.

Thanks

Lucian
tagDiv Staff

Hi,

Here is how the big grid is set to be displayed only on the first page: http://screencast.com/t/EETAj8Q7vioF
You can use the same method and add a condition for the ticker to be displayed only on the first page.

Thanks

Lucian
tagDiv Staff

Hi,

If you can’t use the child theme to change the files you need you can do it manually and keep a log of you modifications like you’ve also noted and use the patch. Follow the theme changes log to see which files are modified and if the files which you’ve altered aren’t changed just copy the patch files via FTP.

Thanks

Lucian
tagDiv Staff

Hi,

Unfortunately you can’t build it exactly like that using this theme but you can use the VC page builder to build it and give it an similar look. For that you can use the big grid: http://screencast.com/t/XKc6Nex16Ur
and block 15: http://screencast.com/t/iofmBgGP0b
Take a look at out demo, go trough our available blocks and modules list: http://screencast.com/t/FH6MaiZ5 and chose the one that you like and are suitable for your page.
You can also go trough our documentation on how to build and set your homepage: https://forum.tagdiv.com/homepage-newsmag/
You can also find an detailed available block list: https://forum.tagdiv.com/newsmag-documentation/
Hope this helps!

Thanks

Lucian
tagDiv Staff

Hi,

I have tried to recreate this but haven’t been able, using your steps all works fine. Please make sure that this is also happening when disabling all plugins and empty cache and also make sure you use the latest theme version 1.4.

Thanks

Lucian
tagDiv Staff

Hi,

Please try this filter in your theme functions file:

add_filter('pre_get_posts', 'query_post_type');
function query_post_type($query) {
if(is_category() || is_tag()) {
$post_type = get_query_var('post_type');
if($post_type)
$post_type = $post_type;
else
$post_type = array('post','cpt'); // replace cpt to your custom post type
$query->set('post_type',$post_type);
return $query;
}
}

Hope this helps!

Thanks

Lucian
tagDiv Staff

Hi,

Yes, I have posted guide on hoe to do this here: https://forum.tagdiv.com/topic/help-post-site-template-for-custom-post-type/#post-22609

Thanks

Lucian
tagDiv Staff

Hi,

I have also tested this and it works just that it doesn’t add the featured image to your rss feed widget but to your feeds: http://screencast.com/t/qlaq7n72i
Try to find a pluygin or another implementation to add the featured image to the WordPress rss feed widget.

Thanks

Lucian
tagDiv Staff

Hi,


@alezan
If you take a look at the change log you will notice that the last theme update adds improvements, bpress support and also fixes bugs so it will be to your benefit to update it.
Please also note that updating will not affect the settings you’ve made to your theme, it will affect the changes you’ve made to the theme files though so I suggest you make a backup of your current theme installation then take note of the changes you’ve made to the theme files if you have done any then use the FTP method from the guide below and update your theme.
You can also use the patch if you update from the previous theme version and copy just the modified files but using it will also remove the changes you’ve made to the theme files if those files are among the one that have been modified during this last update.
If you have changes to the theme files you can use the child theme in the future to keep them as @Lukas suggested but please note that you will not be able to edit all files via Child theme, you can find here more info about this: https://forum.tagdiv.com/child-theme-documentation-newsmag/
Here is the guide on how to update your theme: https://forum.tagdiv.com/how-to-update-theme/
Hope this helps!

Thanks

Lucian
tagDiv Staff

Hi,

I have read it and just adding the button should not affect the grid or alter the page layout as you can also see from my examples.
I see that you’ve now added the button. Do you still have issues with this. Please let me know!

Thanks

Lucian
tagDiv Staff

Hi,

I have tested this again and some how I haven’t any issue when using the “Ubuntu” font chosen from theme panel, the characters you’ve mentioned look fine on Firefox also as you can notice from this screen: http://screencast.com/t/HOXsF1bnK
Configuration: http://screencast.com/t/9w7OmfCD
We will do further tests regarding this and we will fix asap if we find something wrong with it.

Thanks

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

Hi,

Not sure I understand to which “Quote on blocks” your refer too. If you mean the excerpt: http://screencast.com/t/LhJ2ivBpf then you can take a look at how the link is added for the posts title on module here: http://screencast.com/t/yckv0gxdS9 and use the same method to add link to posts’s excerpt also.
Please let me know if this is what you would want and I will add this on our suggestion list.
Hope this helps!

Thanks

Viewing 25 posts - 2,376 through 2,400 (of 6,600 total)