Hi,
The menu supports Font awesome icons, they can be added like this
– https://forum.tagdiv.com/how-to-add-icons-in-menu/
You could maybe implement you own icons, with customization. Maybe something like this example, but for each menu item if you require different icons
– https://www.screencast.com/t/KjDE5pBRs
I used an icon form the media library in the example, this is the code if you want to make experiments with it
.menu-item-19934 a {
background: url("") no-repeat;
background-size: 25px;
background-position: center top;
}
The menu items IDs can be found with the browser inspector
– https://www.screencast.com/t/Gvs0RYpAs
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
If you want the same icon for all the menu items, try it like this
– https://www.screencast.com/t/jtc2gypPbvv
.sf-menu > li > a {
background: url("") no-repeat;
background-size: 25px;
background-position: center top;
}
Thanks
Hi,
This is unusual, the block title should have the color that you set when customizing the page with the composer
– https://www.screencast.com/t/3oqBQpjt
It seems there is an additional class that is applying on the title
– https://www.screencast.com/t/Z1OMYr7aoWVh
This could be the result of a plugin not functioning correctly, or miss-configured. I could give you a code as a quick fix, but you should identify what exactly is causing the issue. Deactivate all plugins except theme plugins as a test, and check if the problem is solved.
The fix would be this code, enter it in Theme panel->Custom CSS
– https://www.screencast.com/t/V49lzgTz
.block-title span{
background-color: transparent;
}
Thanks
Hi,
Please try the suggestion from the other topic and specify the results. Provide a link to your website is possible so we can inspect it.
Thanks
Hi,
You could update it if you wish, or simply leave it as it is. There should be no problem caused by the child theme itself, the code you have inside it may not work properly and may require to be adapted. Elements form the theme may have been subject to change.
Make the theme update, and see if everything works properly. Please note that the tagDiv composer will be activated by default after you update the theme
– https://forum.tagdiv.com/tagdiv-composer-tutorial/
This editor could cause issues with specific Visual composer elements. Deactivate it if that is the case.
As always please make a backup before updating
– https://forum.tagdiv.com/how-to-update-the-theme-2/
Thanks
Hi,
You could try and add this in addition to the default socials. Here is a similar topic
– https://forum.tagdiv.com/topic/how-to-add-xing-as-a-social-network/
Thanks
Hi,
The socials displayed in the top bar, footer and mobile menu, will be the ones that have an account link entered in the Theme panel->Social networks
– https://www.screencast.com/t/m2BWplvt2ZuQ
You can remove the socials from that location if you wish.
Thanks
Hi,
Maybe the plugin is removing the paragraphs, but I could not say why it is doing that. Use the browser inspector and see if that is the case. The post or page content by default has paragraphs, like this
– https://www.screencast.com/t/HQXq8807vVJa
Maybe the plugin is removing these, causing the text to be displayed continuously.
Thanks
Hi,
The post sharing cannot be moved, there is no option for that. Maybe it can be done by modifying the actual post template.
Each post template has a corresponding loop-single file (Ex: Post template 2 -> loop-single-2.php) these are located in the main theme folder.
Editing such a file you can see the structure of the post page, and the order in which the elements are placed
– https://www.screencast.com/t/RCaH18ga9rl
Thanks
Hi,
The category tags displayed on block modules have a predefined color, in the theme stylesheet. There is no option to change this color. However it could be changed with CSS.
A code like this will change the category tags background color and text color on the whole website for example
– https://www.screencast.com/t/NzsN4c15
You can change the colors to what you want, then enter the code in Theme panel->Custom CSS
.td-post-category {
background-color: red;
color:black;
}
Thanks
Hi,
If the post views are active, which they are from what I can see, and the mentioned post sorting option is enabled
– https://forum.tagdiv.com/7-days-post-sorting/
Then there should be no problem. The posts should be sorted according to the page views they get, from the moment the option has been activated.
If you use caching activate this setting as well
– https://forum.tagdiv.com/ajax-view-count/
The results should be fairly accurate if everything is set like this, please provide a link to your website so we can inspect it if there is still a problem.
Thanks
Hi,
Please send us an email at contact@tagdiv.com and provide admin login information, we will take a look at the issue. Check the theme system status as well, and make modifications if needed according to this guide
– https://forum.tagdiv.com/system-status-parameters-guide/
Ask your hosting provider to make them for you if needed.
Also paste a link to this topic in the email.
Thanks
Hi,
There have been no changes in the theme in this matter, I cannot think of a reason what theme element could be causing such an issue. It seems that someone else has the same issue and the website is not using the Newspaper theme, in the topic you mention.
We should probably wait for an update in the topic, after the moderators analyze the problem.
Thanks
Hi,
Please check these guides mentioning the steps you need to take when moving to live, double check everything to be set properly
– http://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-from-local-server-to-live-site/
– http://www.wpexplorer.com/wordpress-local-to-live/
– https://premium.wpmudev.org/blog/guide-to-migrating-localhost-wordpress-to-live-site/
Thanks
Hi,
Maybe the hosting provider can provide more details about what exactly they have identified from the theme, to be causing such issues. The error you mention usually is server related
– http://www.wpbeginner.com/wp-tutorials/how-to-fix-503-service-unavailable-error-in-wordpress/
The theme has these requirements
– https://forum.tagdiv.com/requirements-for-newspaper/
Also some modifications should be made to the WordPress and server parameters mentioned in this guide if necessary
– https://forum.tagdiv.com/system-status-parameters-guide/
The theme and theme plugins should work properly in these conditions.
Thanks
Hi,
That should not be difficult. Simply remove the demo logo, and upload you own
– https://www.screencast.com/t/UFWeLg9dWx
– https://forum.tagdiv.com/logo-favicon/
If you already did this and the old logo is still displayed, maybe you have caching installed. Try clearing all caches and check the results.
Also check after uploading your logo and saving the theme panel, if the change saved properly, meaning the new logo appears as the current uploaded logo.
Thanks
Hi,
That could be done with a code like this for example
– https://www.screencast.com/t/zcO5TiLj
.td-footer-wrapper .td-pb-span4 .footer-social-wrap {
text-align:right;
}
Thanks
Hi,
@infozoon Please provide a link to your website where this issue is happening, we will take a look. Maybe we can identify what exactly is causing the news ticker to not display properly.
Thanks
Hi,
You will have to make this modifications in the main theme file, I believe it will not work in the child theme. These are the files that can be modified through a child theme at the moment
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thanks
Hi,
This is where the demo stylesheet is loaded, you can remove or comment the code there
– https://www.screencast.com/t/8YbDK0honr
Thanks
Hi,
I don’t understand what exactly the presence of the theme panel link is causing for you. We did not have any issues before like the one you mention, or similar requests.
You could remove the theme panel link by editing this file, and removing the code
– https://www.screencast.com/t/BRZgIBJRsqI
Thanks
Hi,
That is unusual, all the demos can be installed except that one. Please check the theme system status and see if everything is set properly
– https://forum.tagdiv.com/system-status-parameters-guide/
You can ask your hosting provider to make any required changes if needed. After this deactivate all plugins except theme plugins, to rule out a plugin conflict.
Then try and install the demo again. If there is still a problem, please send us an email at contact@tagdiv.com and provide admin login information. We will take a look.
Also paste a link to this topic in your email.
Thanks
Hi,
A theme option for this does not exist at the moment, there is a solution in this topic that involves adding more custom ads manually
– https://forum.tagdiv.com/topic/how-can-i-customize-my-ads/
Thanks
Hi,
You will have to click the playlist button in order to see the videos in the playlist
– https://www.screencast.com/t/GIWlKKIDZRq
– https://www.screencast.com/t/w6oFIlFjnnwx
That is how that Visual compose element works.
Thanks
Hi,
That is a color defined in the demo’s custom design. Each demo contains custom design, like this color for the module tiles hover. You could remove the color in this case from here
– https://www.screencast.com/t/EF4yXncQ
Removing it from the demo, the colors you set in the theme panel will apply, instead of the demo design.
Or maybe use a code like this to override the demo design
– https://www.screencast.com/t/nRw3k9BWVBa
The code must be entered in Theme panel->Custom CSS, if you decide to use this method
.td-blog-fitness .td_module_wrap:hover .td-module-title a {
color: #7651a9!important;
}
Thanks
Hi,
The functions are different for modules and post pages. In addition to the file mentioned above where the function for modules is defined, this is where the posts get the categories
– https://www.screencast.com/t/l7NYtNj7SU9R
Maybe it would be best to try and use the default theme options if possible, for the moment. There might be modification in this matter in a later update, and something like this will be available by default. Sorry of this is an inconvenience for you.
Thanks