Hi
The file from booster platform can’t be overwritten via child theme. Please check our documentation about child theme support with the theme: https://forum.tagdiv.com/newsmag-child-theme-support/
Also in order to work add the code in the main theme file.
Thanks!
Hi
This seams to be a css issue. Please make sure that you updated the theme according with our documentation: https://forum.tagdiv.com/newsmag-how-to-update-the-theme/ deactivate all plugins except Visual Composer, clear all caches and test again
Let me know how it goes.
Thanks!
Hi
This is a very complex task which involve many customizations and very good coding skills. If you can’t do it yourself my advice is to find someone to help you or hire a freelancer to do this for you as we can’t offer any customization services at the moment.
Thanks!
Hi
You can use the get_post_meta() in the file corresponding with the post template used like here: http://screencast.com/t/kaeb5gfzT
<div class="my-meta">
<?php echo get_post_meta($td_mod_single->post->ID, 'my_custom_field', true); ?>
</div>
Just replace the my_custom_field with your custom field name.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi
There is no specific file for travel template, because that referees at the pages. The file you need to edit must referees at post template used. For example if you’re using post template 3 for your post: http://screencast.com/t/5PdKqXFq the file that must be modified is loop-single-3.php
Thanks!
Hi
Indeed our theme is very complex and in order to customize it you need to understand it’s code first and also very good php coding skill are required.
The theme uses thumbs to keep the page size as low as possible. All thumbs are defined in td_config.php file: http://screencast.com/t/AMx9d7cQ The get_image() function retrieve the thumb size as a parameter $thumbType. Also during the execution collects different information about the image, but all this information are generated by custom methods built in theme core.
A starting point would be using the var_dump() for the variables where the informations about the image are prepared: http://screencast.com/t/o4vKiQ3q in order to see the what is stored there and how can be used for others customizations. Also read carefully the comments from code, they are meant to help others developers to easily understand the code.
Hope this help.
Thanks!
Hi
The indicated site uses Newspaper theme which have a different implementation for header styles, that’s why appear that affect. However this can be done using custom css in theme panel > custom code > custom css: http://screencast.com/t/MY1mVJ5x
.sf-menu > .current-menu-item > a:hover, .sf-menu > .sfHover > a:hover{
border-bottom: 4px solid red;
}
Let me know how it goes.
Thanks!
Hi
Sorry for inconveniences!
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 issue and we will get back to you in shortest time possible.
Thanks!
Hi
I am not sure where you placed this code so please provide more details about this so I can duplicate the situation on my side an get back to you with a more accurate answer.
Note that posts WordPress consider the menu a post type and most likely you will need a condition to exclude it from your custom query. I found some information which may help you in this regards: http://wordpress.stackexchange.com/questions/52402/wordpress-menu-disappears-when-query-query-varsmeta-key-is-set
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi
To remove article the ads for posts from spacific categories please check this link, I’ve posted a solution here: https://forum.tagdiv.com/topic/remove-theme-panel-ads-from-specific-category/
Thanks!
Hi
Using the method that i gave you in that topic you’ll need to get this result: http://screencast.com/t/pgCbyqSPF – http://screencast.com/t/ZhW7uZ3NA6 Please make sure that you added the ads exactly as I indicated, clear all caches, deactivate all plugins except Visual Composer and test again.
Thanks!
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!
Hi
By installing a new demo the content from your site won’t be lost. If you install the theme with content then all posts from that demo will be added to your site among the posts you already created. The posts from demo can be removed by uninstalling it without losing the post that you created.
Note that if you install a new demo all settings from theme panel will be replaced with the demo’s settings so as @Chris suggested make sure you do a full backup before installing the new demo.
Thanks!
Hi
The code that you provided affect only the posts displayed by the loop on category page: http://screencast.com/t/sifOdJro The posts from sidebar are displayed by a different query, depending by the widget used. If you use one of the theme’s blocks then the query is made in td_data_source.php and you can use theirs filters to sort your posts: http://screencast.com/t/gbllh8R6iu If the widget it’s from WordPress then the query is made in WordPress core.
Thanks!
Hi
To have a different header for mobile devices you need modify header-menu.php file and add the conditions here: http://screencast.com/t/5ChyQV2Ov
The logo size differ from a header style to another, you can find more details about this in our documentation: https://forum.tagdiv.com/newsmag-logo-favicon/ Its size can be increased with some custom css so please provide your site url so I can take a closer look and maybe i can help you.
Thanks!
Hi
Check if the view counter works on your site. You can do that by viewing a post a few times in browser and check if the post view number increases. Also try do deactivate all plugins except Visual Composer, clear all caches and test again. Note that if you’re using a cache plugin you need to enable the ajax counter: https://forum.tagdiv.com/newsmag-ajax-view-count/
Let me know how it goes and if you still can’t manage to solve this issue please provide your site url so I can inspect it closer.
Thanks!
Hi
You can achieve that by editing logo,php file and insert the desired url in code like here: http://screencast.com/t/wgtOeEJBK – http://screencast.com/t/tld9FlLFIPx8
Thanks!
Hi
I am not sure what you mean so please provide more details about this, also a scree pointing the desired result so I can get back to you with a more precise answer.
Thanks!
Hi
The theme wasn’t designed to display ads under the post title so to achieve that you need to edit the theme files and add the indicated code. To display an ad under post title you can use one of the custom ads as I did in above example: http://screencast.com/t/sOX6p9gHJ The result will be like here: http://screencast.com/t/VJTTXjIrWQLn
Please consider that any customization require basic coding skills and if you can’t do it yourself my advice is to find someone who can help you with this. I can only point you to the right direction, but I can’t implement any customization for you.
Thanks!
Hi
I can’t see your screens so please make them public: http://screencast.com/t/PUuSmqTUb Also I am not sure what you want to change in your page’s layout: http://screencast.com/t/gqfP53stQ so please provide more specific details so I can get back to you with a more accurate answer.
Thanks!
Hi
Yes the css will be applied only on that paragraph.
Thanks!
Hi
By default the .svg files are not accepted by WordPress: http://screencast.com/t/cvrpwJN1vzJ you will need a plugin or a custom piece of code in order to embed this files.
Here you can find some useful information about .swf integration in WordPress: http://www.wpbeginner.com/wp-tutorials/how-to-embed-swf-in-wordpress-posts/
Please consider that this is a complex task which require many customizations and php knowledge are involved. If you can’t do this by yourself my advice is to find someone which can help you as we can’t offer custom services at the moment.
Thanks!
Hi
1. I’ve checked the indicated page and in page source does not appear any ad code or a container related with an ad code under the bottom share buttons: http://screencast.com/t/GMY47hPOm
I am not sure how you added this add in post content, as in it’s source does not show any of theme’s classes for ad-spots: http://screencast.com/t/Nk1BU8yTh The css display property for this ad does not apply correct and the pagination buttons are hidden under the ad.
Try to include the ad code in a text block or in a new container so it can be targeted with css. The required css look like this: http://screencast.com/t/DD2FBW9KKeY
.ads-container-name{
display: inline-block;
}
2. This post not uses the theme ad spots here: http://screencast.com/t/H2ubx7CP39rT None of the classes related with article bottom ad are present in page source which means that the theme does not execute that code.
Please make sure that you set the ads according with our documentation as I’ve test this on my side and they are displayed fine: http://screencast.com/t/8B7xiTo9Fw Also try to deactivate all plugins except Visual Composer, clear all caches and test again.
Thanks!
Hi
The theme does not manage the plugins functionality and features. That depends by the plugin’s author if he add any drop and drop options and how will be used within WordPress.
Thanks!