Home User profile
tagDiv Member
I love to drive fast cars and to play Need for Speed! I enjoy to help customers tweak their websites for high performance! I’m a proud member of the tagDiv support team!
Andrei L.
tagDiv Member

HI

By default the theme don’t have a similar option and to achieve that you need to edit td_module_single_base.php and concatenate a new ad-spot to post’s content: http://screencast.com/t/Fpt2vFDSg5T1 To get the shortcode add an ad box into a blank page then switch in back-end editor copy and paste this code: http://screencast.com/t/Kcqsjk9C7xbU inside do_shortcode function.

Note that you will also need some changes in post’s html and some css customizations for layout. Note that this is a complex task which involve many changes and tests in order to be achieved. For the moment we can’t offer customization services so if you really need this and you’re not aware of the steps that must be taken in this regard my advice is to look for someone who can help you with implementation or hire a developer to do it for you.

Thanks for your understanding!

Andrei L.
tagDiv Member

HI

The theme generate a custom js for each block added on the page. You can try to use cdn to minify page’s html and the inline js. Please check our documentation fort m ore details in this regard: https://forum.tagdiv.com/cloudflare-cdn/

Thanks!

Andrei L.
tagDiv Member

Hi

I assume that you want to have a similar layout: http://screencast.com/t/gzUAtM55 for all posts displayed in that block. If so you can use block 14 which have this layout on a single column: http://screencast.com/t/4u2Z6xJbhttp://demo.tagdiv.com/newspaper/block-14/

If this is not what you mean please provide more specific details about what you’re trying to do and maybe we can help.
Thanks!

Andrei L.
tagDiv Member

Hi

Glad I could help.
Thanks for letting us know and for your message.
Have a nice day.

Andrei L.
tagDiv Member

HI

Sorry about that, it was my mistake. Yes you can add subtitles in slide by adding this code in td_module_slide.php: http://screencast.com/t/XDwRih0TUMKA

$subtitle = get_post_meta($this->post->ID, 'td_post_theme_settings', true);
if (!empty($subtitle['td_subtitle'])) {
$buffy .= '

' . $subtitle['td_subtitle'] . '

';
}

You also need to replace the above css with this one: http://screencast.com/t/WTOd0TLs

.slide-meta .td-post-sub-title{
color: white;
border: none;
margin: 0;
}

Let me know ho it goes.
Thanks!

Andrei L.
tagDiv Member

Hi

Yes you can hide the featured image in single posts from theme panel > post settings: http://screencast.com/t/zi6RcqOGMlPo Like this it will be displayed only on modules, not in post content.

Hope this helps!
Thanks!

Andrei L.
tagDiv Member

Hi

Please address us via email at contact@tagdiv.com including a link to this conversation and also give us wp-access so we can have a closer look at this and we will get back to your as soon as possible.

Thanks!

Andrei L.
tagDiv Member

HI

To display an ad above related article you need to edit the file corresponding with post template used and echo out a custom ad-spot. To get the shortcode add an ad box into a blank page then switch in back-end editor copy and paste this code: http://screencast.com/t/Kcqsjk9C7xbU inside do_shortcode function.
The code should look like here: http://screencast.com/t/uyT7fX4Rk

<?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]'); ?>

Thanks!

Andrei L.
tagDiv Member

HI

You only need to edit top-widget.php like here: http://screencast.com/t/5poR15VWK The code should be like here:

if(ICL_LANGUAGE_CODE=='es'){
$td_get_social_network = array(
'facebook'=> 'spanish_facebook_url',
'pinterest' => 'spanish_pinterest_url'
);
}
elseif(ICL_LANGUAGE_CODE=='en'){
$td_get_social_network = td_util::get_option('td_social_networks');
}

Thanks!

Andrei L.
tagDiv Member

Hi

You need to add this code in td_module_slide.php:

$buffy .= '<div class="td-excerpt">';
$buffy .= $this->get_excerpt(20);
$buffy .= '</div>';

Change the number from get_excerpts() function if you want more words in excerpts.
You will also need this css in theme panel > custom code > custom css to change text’s color: http://screencast.com/t/SaHG6RceCrU

.slide-meta  .td-excerpt{
color: white;
}

Thanks!

Andrei L.
tagDiv Member

Hi

No you can’t use Read More tag avaialable in wordpress editor with visual composer: http://screencast.com/t/kM1fMKLzTXe The indicated tag can be used only outside visual composer in post loop settings as I’ve indicated above.
However you can use one of theme’s blocks/modules which automatically add read more button after excerpts, here in an example: http://demo.tagdiv.com/newsmag/block-12/ Block 12 use module 11 for layout and you can set a the excerpts length from theme panel > excerpts: http://screencast.com/t/iGJb5lkkl

Thanks!

Andrei L.
tagDiv Member

Hi

The links are generated by get_icons() function which takes two parameters. You need to edit the file which generate the top widget and change $social_link parameter with a custom link, basically you need to built another array for Spanish version of the site: http://screencast.com/t/5poR15VWK To get the exact social_id for each social network inspect the theme panel here: http://screencast.com/t/hDYNYtRPsVBG

Hope this helps!
Thanks!

Andrei L.
tagDiv Member

Hi

The theme don’t have such an option but you can se a plugin like ad-rotate which have a similar functionality. This plugin is not tested with our theme but from our reports it works fine, you can read more details about it here: https://ajdg.solutions/manuals/adrotate-manuals/
The plugin generate shortcodes so you just need to paste the shortcode in theme panel > ads and the theme will display the output generated by ad-rotate: http://screencast.com/t/B9qp4cRLFLaV

Hope this helps!
Thanks!

Andrei L.
tagDiv Member

Hi

1. The theme don’t have such an option but you can achieve a similar rezult using a set of conditions. You can use get_site_url() to change the logo image depending by site’s url. The condition must be added in logo.php and logo-h1.php, here is a basic example: http://screencast.com/t/64TrqOdgVUT

2. You can follow the same implantation and define new urls for Spanish version of the site in td_social_icons.php file: http://screencast.com/t/DrnltPkOzo7 You will also need to change the way urls for social networks are generated.

3. Try to follow the implementation indicated here: https://forum.tagdiv.com/topic/anybody-implemented-fb-comments/ and use the function indicated at point 1 to change the fb page.

Note that this is a very complex task which involve many changes and tests in order to be achieved. For the moment we can’t offer customization services so if you really need this and you’re not aware of the steps that must be taken in this regard my advice is to look for someone who can help you with implementation or hire a developer to do it for you.

Thanks for your understanding!

Andrei L.
tagDiv Member

Hi

The theme don’t have any option in this regard and to achieve a similar rezult you need some customizations in theme’s core files. This is a complex task which involve many changes and tests in order to be achieved. For the moment we can’t offer customization services so if you really need this and you’re not aware of the steps that must be taken in this regard my advice is to look for someone who can help you with implementation or hire a developer to do it for you.

Thanks for your understanding!

Andrei L.
tagDiv Member

Hi

Please make sure that you update the theme according with our documentation: https://forum.tagdiv.com/newsmag-how-to-update-the-theme/ Basically you need to unzip Newsmag-tf file and upload in your WordPress Newsmag.zip file. Also check this link for more details about how to increase upload_max_filesize directive: http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/ That directive is located in php.ini file which may be found on your server. If you can’t find this file try to contact you host provider and ask more details in this regard.

Thanks!

Andrei L.
tagDiv Member

Hi

Theme’s modules pick the excerpt directly from post content and read more tag is used only by module 15. You can use this module on pages made with page-builder+latest article page template: http://screencast.com/t/gLjmGeCDgZSO For more details about page templates please check our documentation: https://forum.tagdiv.com/newsmag-page-templates/

Let us know if you need further assistance on this.
Thanks!

Andrei L.
tagDiv Member

Hi

I’ve checked your site and the LinkedIn button works fine no both mobile and desktop devices: http://screencast.com/t/ectJeqjjLhttp://screencast.com/t/Ex7i3tXNf4Pg

Thanks!

Andrei L.
tagDiv Member

Hi

Please make sure that you update the theme according with our documentation: https://forum.tagdiv.com/newsmag-how-to-update-the-theme/ also try to deactivate all plugins except Visual Composer, clear all caches then test the site again.

Let me know ho it goes and if the problem persist please provide your site url so I can have a closer look.
Thanks!

Andrei L.
tagDiv Member

Hi

Unfortunately that can’t be done with css, you will need to edit plugin’s files and add a condition there to remove the followers number from Social Counter. Try to edit td_block_social_counter.php file and add this condition like here: http://screencast.com/t/jMTBj1BJ0E4http://screencast.com/t/Ze8sHioZvXRD

if ($td_social_id != 'twitter'){
     $buffy .= '<span class="td_social_info">' . number_format($social_network_meta['api']) . '</span>';
}

Thanks!

Andrei L.
tagDiv Member

Hi @mytunbridgewells

We didn’t tested the plugin and we can’t provide an accurate answer in this regard. However first you need to set you ads following plugin’s documentation: https://ajdg.solutions/manuals/adrotate-manuals/ then paste the shortcode generated by the plugin in theme panel > ads: http://screencast.com/t/WqTBxlWh

Hope this helps!
Thanks!

Andrei L.
tagDiv Member

Hi

I am not really sure what you’re trying to do so please provide more specific details about the desired rezult and maybe we can help.

Thanks!

Andrei L.
tagDiv Member

Hi

Yes you can add a background image for mobile menu from theme panel > background: http://screencast.com/t/TIucsFQd4f

Thanks!

Andrei L.
tagDiv Member

Hi

We know about this issue and is in our attention. We investigate this issue and we hope to find a solution in shortest time possible.
Thanks for your understanding and sorry for any inconveniences.

Andrei L.
tagDiv Member

Hi

You can use the default page template for pages and the latest article list won’t be displayed anymore: http://screencast.com/t/LSCtGTxkwUx
You can use top bar 3 for layout: http://screencast.com/t/9qbbYUnC then use this css in theme panel > custom code > custom css: http://screencast.com/t/d3ceP227f

.td-header-sp-top-menu {
float: none!important;
}
.menu-top-container{
float: right!important;
}

Please make sure that the parameters from system status have the values indicated here: https://forum.tagdiv.com/system-status-parameters-guide/ and also try to deactivate all plugins except Visual Composer, clear all caches then test the site again.

Let us know ho it goes.
Thanks!

Viewing 25 posts - 51 through 75 (of 6,511 total)