Hi
To change the order for drop-down items you need to edit the menu under Appearance > Menus: http://screencast.com/t/nAHBYXRoScm and arrange the items as you want. More details about menu’s setup can be found in our documentation: https://forum.tagdiv.com/newsmag-main-menu/
Hope this help.
Thanks!
Hi
If you still have this issue 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
The activation informations are stored in a field from database. If you cloned the entire wp-install along with the database then the activation is not requested again even if you moved from a host to another, because that field still have the information from the old host.
If you have four live sites in the same time then for each site must be used a different license key. At the moment the theme don’t have an option to reset the license key but you can address us via email at contact@tagdiv.com including a link at this conversation, and we will provide further instructions in this regard.
Thanks!
Hi
You can try a plugin like https://wordpress.org/plugins/wp-user-avatar/ or to use gravatar: https://codex.wordpress.org/How_to_Use_Gravatars_in_WordPress
This should work fine.
Thanks!
Hi
The indicated part here: http://www.screencast.com/t/RSGBCaVe2 is not a block from Visual Composer. That is the loop part generated by page-builder + latest article pagetemplate. Its equivalent in backend editor is here: http://screencast.com/t/03Kwgm8hA9C
The function which generate that pagination can be found in td_page_generator.php http://screencast.com/t/EpLaTGGx4J The pagination for blocks it’s based on ajax and the hard part comes when this numeric pagination: http://www.screencast.com/t/RSGBCaVe2 must be adapted as a ajax pagination. Basically when you click on the page 2 or 3, the main page won’t reload, as happens now. The final implementation should be similar with this one: http://www.sanwebe.com/assets/ajax-pagination-basic/ but adapted at our theme’s requests. You can use this example if you want to give it a try: http://www.sanwebe.com/2013/02/ajax-pagination-jquery-php-simple but as I said in my previous reply it’s a very complex task which require time and many investigations in order to be accomplished successfully.
Hope this help.
Thanks!
Hi
I suspect that there is a css issue but I am not sure why this happens. Could be possible that the theme’s css to be overwritten by an external cas. Try to deactivate all plugins except Visual Composer, clear all caches and test again.
Let us know how it goes and if the problem persist please provide your site url so I can inspect it closer.
Thanks!
Hi
I am not sure what you mean so please provide more details about this and also your site url so I can take a closer look.
Thanks!
Buna
Aceasta functie intoarce doar un titlu, nu ii stabileste si heading-ul. Pentru a pune un heading trebuie sa incluzi resultatul intre tag-urile de html ca in ecst exemplu: http://screencast.com/t/Gw6uSQsn6 – http://screencast.com/t/0UvKWUb9i
Acesta a fost doar un simplu exemplu menit sa evidentiese medoda prin care se poate aplica un heading pe un string generat in php.
Multumesc!
Hi
To achieve that you just need to add the page id in the indicated condition like here: http://screencast.com/t/DZ5N4QKBS1RN
if(!is_page'page-id'))
Just replace the page-id with the numeric id of the page. To get the id follow this link: http://screencast.com/t/p1DSNdj1R
Thanks!
Hi
Try this css, it should display the logo on mobile devices: http://screencast.com/t/rSfnmKejirXJ
@media (max-width: 767px){
.td-header-sp-logo {
display: inline!important;
}
}
Thanks!
Hi
That white space appear because there is a google ad which for some reasons does not display any content, actually it’s a blank ad: http://screencast.com/t/lg3jeFjXvlvQ
The theme can’t control the way google deliver ads. Google usually deliver blank ads a short period of time after the client account has been approved.
Thanks!
Hi
The Speed Booster plugin is not included in that panel. You can install it via WordPress from Newsmag-tf/plugins folder: http://screencast.com/t/PGLyF11sMqMx
Thanks!
Hi
The 500 error is usually a server side error meaning that there is something wrong but the server couldn’t provide more information about the problem. It is an general error usually caused by configuration issues with the websites programming, PHP or system permissions.
I found here some useful information about possible reasons of this errors and a few tips in order to fix it: http://pcsupport.about.com/od/findbyerrormessage/a/500servererror.htm
If you can’t manage to solve this issue try to make a new clean install via ftp: https://forum.tagdiv.com/newsmag-install-via-ftp/
Before making any changes in theme’s files it’s a good practice to backup the data base and the current wp-install. This is a security measure and in case something goes wrong you can always get back to the previous install. Also you can test your customizations an a local wp install, made on your computer.
Thanks!
Hi
To add a filter by custom taxonomy in block’s filter options you will need to edit the theme’s files like here:
– edit td_config.php and add a new field for custom taxonomies: http://screencast.com/t/O4md2SU0yrx
– edit td_data_source.php file and add the posts from custom taxonomies to query: http://screencast.com/t/GQnMoryOKvJ
Please consider that 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
In order to identify the ideal/average size you need to figure out which is the largest container that will display that particular image and upload an image bigger than that container. Then there is the post template to consider. If you use post templates with big image backgrounds, then your uploaded image has to be bigger. You need to asses your website’s layout (posts and block elements) and come up with an average image size that will work on smaller containers but also keep good quality on bigger ones.
You can read more about thumbs and featured images here: https://forum.tagdiv.com/newsmag-theme-thumbs/ – https://forum.tagdiv.com/newsmag-featured-images/
Hope this help.
Thanks!
Hi
You can achieve that by editing the loop file corresponding with the post template used for post like here: http://screencast.com/t/mP59b3MKLw
<?php
$check_views = td_page_views::get_page_views($td_mod_single->post->ID);
if($check_views > 10){
echo $td_mod_single->get_views();
}
?>
You just need to replace the number from the condition wit your number.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/Gw9a4U3hWcd
.sf-menu > .current-menu-item > a:after, .sf-menu > .current-menu-ancestor > a:after, .sf-menu > li:hover > a:after, .sf-menu > .sfHover > a:after {
background-color: transparent!important;
}
.sf-menu a:hover{
color: red;
}
Thanks!
Hi
To achieve that you will need to modify the function which generate the category tags for modules: http://screencast.com/t/Kk0twpb0E An example of a possible implementation would be the function which generate the category tags for posts: http://screencast.com/t/lU2XOqD4 – http://screencast.com/t/BYNjF8c6Xg
This is just an example. To have the function working on modules are required some customimations. You can try to implement this if you want but it’s not an easy task. Basically you will need to pass all category tags trough a foreach cycle and assign them a color from theme panel > theme colors. For posts this step it’s made by this code: http://screencast.com/t/I8kF3HauE4V
Hope this help.
Thanks!
Hi
Thanks @Chris for your help. We will add this in our documentation as soon as possible.
@Spyrosm I’ve checked your site again and the meta tags seams to be set properly. However when I’ve checked a post with Facebook developer tool I found this errors: http://screencast.com/t/CmPYjIjdw7p5 This are the current information which facebook have at the moment about this post. Please note that those information are not updated automatically. However you can force facebook to update them by using this options: http://screencast.com/t/PQL6a2ib0Jpa
Also make sure that the meta tags are set properly for each posts. We recommend to use SEO By Yoast plugin for this meta tags.
Thanks!
Hi
Unfortunately I can’t provide a solution now as we didn’t tested the plugin with the theme and I can’t say how can be tracked. You can try to open a thread on Ad Rotate forum about this. They should be able to provide a more accurate answer in this regard.
Thanks!
Hi @tawigroup
Unfortunately the theme does not have any options or widgets with this feature. As @Chriss suggested you could try a plugin with a similar functionality. I can’t make any recommendation in this regard as we didn’t tested any of those plugins and we’re not aware of theirs functionality. You could try to look on forums and check which plugins have the best reviews, then you can try a few of them and use the one which suit you best.
Thanks!
Hi
You can try this css but then will be disadvantage because this border will become visible in footer: http://screencast.com/t/pi3OtdNStAc4 This is the only way to fix this for the moment. Another solution would be to edit the plugins files and try to increase the z-index for the drop-down menu. This is not possible with custom css from “outside” because the drop-down menu it’s it’s whitin an iframe and can’t be targeted.
Hope this help.
Thanks!
Hi
I’ve test this on my side and seems that the vimeo player works fine only when it’s first added on the page, after that can’t be edited again. I’ve added this on our issue tracker and theme’s developers will inspect it in shortest time possible.
Thanks for reporting this and sorry for any inconvenience.
Hi
Please check this tutorial about how can you add icons to the menu: https://forum.tagdiv.com/newsmag-how-to-add-icons-in-menu/ and the css class for the icon indicated in the image can be found here: http://fortawesome.github.io/Font-Awesome/icon/bars/
Thanks!
Hi
From what I can see from your screen you want to modify the block’s pagination. Unfortunately this is not an easy task and the solution from the indicated topic won’t work in that case. If you need this and 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 speed customization services at the moment.
Thanks!