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

The theme code it’s written in a very clean way so it can be easily adapted at any situation or customizations. However a feature like flexible width for pages it’s a very difficult task to achieved due to theme’s complexity. Our theme have many block and modules which all are built at fixed sizes. To achieve a flexible width which can be changed dynamically, the entire grid must be rewritten. The and result will be technicality a new theme and this cannot be done so easy.
To allow more post types in related articles box you can include them into an array then loop trough that array to check if the post type it’s allowed or not to appear in more articles box.
Note that this is a complex task which involve many customizations and also good coding skills. If you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you.
Thanks!

Andrei L.
tagDiv Member

Hi

The theme doesn’t have a shortcode for related articles box and there is no easy way to do it. I found here a reference which may help you in this regard http://code.tutsplus.com/tutorials/wordpress-shortcodes-the-right-way–wp-17165 but the coding method it’s a bit complicated and involve good coding skills.
If you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you as we can’t offer customization services at the moment.

Thanks!

Andrei L.
tagDiv Member

Hi

There is no easy way to achieve that. The coding method is a bit complicated as it will involve hard-coding the option. You can follow this topic to see how registering a new menu can be done: https://forum.tagdiv.com/topic/conditional-logic-for-menu/ This is for having different menus for different users but the principles are the same. However it will not be so easy to adapt it to your preference so I suggest you hire someone to help out in this case.

Thanks!

Andrei L.
tagDiv Member

Hi

Try to update the theme at the latest version available on themeforet, V2.3.5, deactivate all plugins except Visual Composer, clear all caches caches, purge cdn files if you’re using and test again.

Let us know hoe it goes.
Thanks!

Andrei L.
tagDiv Member

Hi

Using the above method there is no other option to control the article uniqueness on category page. You will need a custom script and unfortunately I cannot provide a solution at the moment.
If you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you as we can’t offer customization services at the moment.

Thanks!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

You can use the custom ad-spots to achieve that. The file that must be edited it’s the one which generate the header. That depends by the header style used: http://screencast.com/t/UGqIID8VFO

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

The result will be like here: http://screencast.com/t/ybG5tpCBjF7 I’ve used custom ad 1 for this example but you can use any custom spot ad, just update the number from shortcode.

Thanks!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

You can use media queries to hide an element on mobile devices:

@media(max-width: 768px){
.elemnt-css-classes{
display: none;
}
}

Here is an example referring at more article box: https://forum.tagdiv.com/topic/view-on-mobile-mode-the-more-stories-covered-all-content/

Thanks!

Andrei L.
tagDiv Member

Buna

Ne poti contacta la aceasta adresa de mail: contact@tagdiv.com. Pentru modificarile cerute de tine o sa am nevoie doar de url-ul site-ului, nu si detaliile de logare. Daca e nu ai nimic impotriva poti lasa url-ul aici pe forum. Noi cerem detaliile de loagare doar cand utilizatorul are o problema care necesita acces la pagina de admin. In cazul tu insa nu este cazul.

Multumesc.

Andrei L.
tagDiv Member

Hi

The theme is tested and its loading speed on mobile devices it’s peaty good. I’ve test you’re site with google page-speed tool and noticed that indeed the loading speed it’s very slow. To improve it please check our documentation regarding page-speed: https://forum.tagdiv.com/how-to-make-the-site-faster/ Also you may find some useful informations in this topics: https://forum.tagdiv.com/topic/website-slowness-after-newsmag/https://forum.tagdiv.com/topic/speed-booster-incompatible/
I order to have a good page speed you will need to make some modifications in code as it’s indicated in documentation and in topics. This require custom work and a lots of tests.
Unfortunately we can’t offer speed customization services at the moment so if you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you.

Thanks!

Andrei L.
tagDiv Member

Hi

The date displayed on top of the page it’s generated in top-menu.php here http://screencast.com/t/rYMoQR7G so you have to edit that function’s output.
Thanks!

Andrei L.
tagDiv Member

Hi

The current version of Visual Composer available with the theme is V 4.9.2. We know about the last update of the plugin. That version will be tested with the theme and if the results are positive will be included in the next update.

Thanks!

Andrei L.
tagDiv Member

Hi @darkstarmarina

The child it’s included in theme’s path that you downloaded from themeforest and can be found here: http://screencast.com/t/WdXAJQvR More details about this can be found in our documentation: https://forum.tagdiv.com/newsmag-child-theme-support/

Thanks!

Andrei L.
tagDiv Member

Hi

By default the theme does not have options to control the posts displayed in top grid on category page. However this can be achieved by editing the category.php file and ad some if else statements like here: http://screencast.com/t/9zcZxQ2ofSEH

 <?php
        if (is_category('cat-id1')){
            echo do_shortcode('grid's shortcode');
        }
        elseif (is_category('grid's shortcode')){
            echo do_shortcode('grid's shortcode');
        }
        else {
            echo do_shortcode('grid's shortcode');
        }
?>

To get the category id follow this link: http://screencast.com/t/lY35tQ0pcR
To get the shortcode for the grid that you want to display create a blank page, add the grid on id and set as you want: http://screencast.com/t/Kynjn2VL copy this code: http://screencast.com/t/2R6NP586 and paste it inside do_shortcode function as I did in this screen: http://screencast.com/t/2R6NP586http://screencast.com/t/h6m34UwqD

To avoid having duplicate article on pages enable the Unique article option here: http://screencast.com/t/lfrs0pziRk

Thanks!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

The best way to add a footer link is by adding it directly in code like here: http://screencast.com/t/JCLtf6ME7 Also you will need this css in theme panel >custom code > custom css:

.footer-link{
display: inline-block;
}

The result will be like here: http://screencast.com/t/AkTKcv5o This is just a basic example. You can apply any style on the link using different css properties.

Thanks!

Andrei L.
tagDiv Member

Hi

Yes is possible to add the code in style.css. In fact any css added in theme panel can be also added in style.css.
Thanks!

Andrei L.
tagDiv Member

Hi @awtown

We know about this issue and we still looking for a possible fix. To avoid video url being displayed in excerpts you need to add the excerpts manually in this field: http://screencast.com/t/WH5eNruDU0jm

Thanks!

Andrei L.
tagDiv Member

Hi

Thanks for the feedback
Unfortunately we didn’t had time to investigate this yet and I can’t say yet which would be the best solution. However we will take a look in shortest time possible and when will find good implementation will make an announcement.

Thanks!

Andrei L.
tagDiv Member

Hi

Thanks for your the positive feedback and we’re glad the our theme serve you well. We do our best to offer high quality WordPress themes, with features that easily allow users to develop websites. Our goal is to constantly add new features or improve the current ones in order to offer one of the best theme on the market.

Thanks for your messages!

Andrei L.
tagDiv Member

Hi

The sidebar set for categories in theme panel applies only only that specific category page. For example if I set a custom sidebar for Apple category here: http://screencast.com/t/UZ7LIZQF6Ls it will be displayed on Apple category page here: http://screencast.com/t/ic77qeZuTbIN and also on every post from Apple category which does not have another sidebar set in post editor. By selecting here Default Sidebar: http://screencast.com/t/WOc692xRVo the theme will display the sidebar set for the post’s category, not a sidebar named “Default Sidebar”
The theme don’t have a block which display the entire post content in Visual Composer. If you want to display all post content on a page then use pagebuilder + latest and set module 15 for layout: http://screencast.com/t/DShLQP5Dir

Hope this help.
Thanks!

Andrei L.
tagDiv Member

Hi

The theme support background ads, you can read more about this in our documentation: https://forum.tagdiv.com/newsmag-background-ads/
However if you’re using a plugin or a custom code which generate the background ad, there might be a chance to appear some conflicts. Checking your site I’ve noticed that the background image works fine now. If you stil have any issue please provide more details about this so I can inspect it and get back to you with a more accurate answer.

Thanks!

Andrei L.
tagDiv Member

Hi

Please send us an email at contact@tagdiv.com with your login credentials as we need to take a closer look at this issue, also include a link to this topic.

Thanks!

Andrei L.
tagDiv Member

Hi

Newsmag theme does not have implemented the ads system for smart list yet that’s why the indicated ad-spots are missing. We plan to implement the ads for smart lists in future theme updates but meanwhile if you want to use them a solution would be to use do_shortcode function in the file corresponding with the smart-list template used: http://screencast.com/t/ys6OJZXx

$buffy .= do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');

In this example I’ve used custom ad 1. If you want to use a different custom ad spot just update the number from shortcode. For example if you use custom ad 4 the shortcode will look like this: custom_ad_4

Let me know how it goes.
Thanks!

Andrei L.
tagDiv Member

Hi

Please provide more details about the post template used for posts and also a link where I can inspect this so I can duplicate the situation and get back to you with an exact answer.
Note that blocks weren’t designed to be displayed in posts so there is a chance to appear some issues with this layout.

Thanks!

Andrei L.
tagDiv Member

Hi

Glad you could manage to solve it.
The theme have an option which add automatically the td-modal-image on each image from posts content: http://screencast.com/t/jM3OqU0hIk

Thanks!

Andrei L.
tagDiv Member

Hi

Indeed, the output it’s generated by the plugin. The theme only integrate the the plugin’s output in its layout.
Thanks!

Viewing 25 posts - 3,826 through 3,850 (of 6,511 total)