Hi,
For the moment we don’t want to depend on other plugins, but we may add something optional in a future update.
Thank you, Emil G.
Hi,
You could check this – https://yoast.com/404-error-pages-checking/
And use a plugin to redirect them.
Thank you, Emil G.
Hi,
Did you use the code provided in the documentation? – http://screencast.com/t/S2uB7W0Fssb
Please post the code used on your banners so i can take a look. You can doit via pastebin – http://pastebin.com/ , just submit the code and paste the link here.
Thank you, Emil G.
Hi,
You set a background on one of the categories – https://www.bestvpnservicemag.com/web-security-news/security-network/ , check inside Theme Panel -> Categories – http://screencast.com/t/cYFA0Txy5Q
The posts import the background from their categories.
Thank you, Emil G.
-
This reply was modified 11 years by
Emil G.
Hi,
We have this on our list, we plan to add it in a future update, i cannot say exactly when it will be implemented because we have a lot of features on the list and we take them in order.
Until then an alternative would be to use the tag filter, set a certain tag for the posts you want to display and use it on blocks/widgets to display those posts – http://screencast.com/t/nPcAzoocJiH
Thank you, Emil G.
Hi,
The theme doesn’t have such an option, you have to use a plugin like Adrotate or Simple Ads Manager.
Thank you, Emil G.
Hi,
First try to disable all plugins and see if the issue is still there.
If this doesn’t work then the issue may be caused by the max_input_vars value on your server, default is 1000 and you may have reached the limit. If the host allows it (check the host documentation) you can change it via php.ini to 5000 , save and restart Apache (it’s also stated in the documentation).
If the host doesn’t allow this you have to ask the host administrator to change this value for you.
Thank you, Emil G.
Hi,
The count fields should appear in the post edit section – http://screencast.com/t/hDHTDMAk5rpf – http://screencast.com/t/hD0IoE313R
Check if it increments when you open/view the post. It should also reset once every seven days.
Thank you, Emil G.
Hi,
The tablets don’t have proper support for this feature yet, we also specified this behavior in the Theme Panel – http://screencast.com/t/4CRCRnI4N
If we find a working solution we will fix this in a future update.
Thank you, Emil G.
Hi,
It may be something else, please send an email at contact@tagdiv.com , paste a link to this conversation and provide wp-admin and ftp access so i can take a look.
Thank you, Emil G.
Hi,
Replace the code with this one:
function get_the_tags($post_id) {
$buffy = '';
$td_post_tags = get_the_tags($post_id);
if ($td_post_tags) {
$buffy .= '<ul class="td-tags td-post-small-box clearfix">';
$buffy .= '<li><span>' . __td('TAGS') . '</span></li>';
foreach ($td_post_tags as $tag) {
$buffy .= '<li><a href="' . get_tag_link($tag->term_id) . '">' . $tag->name . '</a></li>';
}
$buffy .= '</ul>';
}
return $buffy;
}
and this:
<?php echo $this->get_the_tags($this->post->ID);?>
Thank you, Emil G.
-
This reply was modified 11 years by
Emil G.
Hi,
I’ve sent your proposal to our designer, we may implement something similar in a future update. Thanks for your suggestion.
Have a nice day, Emil G.
Hi,
The 7 days post sorting was not designed to work with cache, we have it on our list, we’ll fix it in one of the future updates. Do you have the latest version of the theme?
Thank you, Emil G.
Hi,
Try to open the browser console and save the settings, see if any error appears – http://screencast.com/t/Zx7Hc9QPW
I suspect the access to the admin-ajax.php file is restricted from the serves, in this case you have to talk with the server administrator to remove the restriction.
Thank you, Emil G.
Hi,
It seems to be a theme issue, it happens when you open the forum page. We’re going to fix it as soon as possible.
Thank you, Emil G.
Hi,
You could check the documentation on how the CPT can be added on themes – http://codex.wordpress.org/Post_Types
Or you could look for a plugin which does this automatically.
Thank you, Emil G.
Hi,
Edit each module and add the following code: – http://screencast.com/t/9C3OBjKp
function get_the_tags() {
$buffy = '';
$td_post_tags = get_the_tags();
if ($td_post_tags) {
$buffy .= '<ul class="td-tags td-post-small-box clearfix">';
$buffy .= '<li><span>' . __td('TAGS') . '</span></li>';
foreach ($td_post_tags as $tag) {
$buffy .= '<li><a href="' . get_tag_link($tag->term_id) . '">' . $tag->name . '</a></li>';
}
$buffy .= '</ul>';
}
return $buffy;
}
and
<?php echo $this->get_the_tags();?>
Result – http://screencast.com/t/LXiSfg6TQh
Thank you, Emil G.
-
This reply was modified 11 years by
Emil G.
Hi,
Unfortunately we didn’t do any tests with watermark plugins so i cannot advise you, sorry. Hopefully someone who uses such a plugin can provide some feedback. Until then you could look for an alternative – http://www.designmaz.net/best-watermark-plugins-wordpress/
Thank you, Emil G.
Hi,
Did you used youtube videos that have double quotes (“) on the title? if you did modify the following code like this – http://screencast.com/t/MukMpaiwnVRN and try again
htmlentities($obj['entry']['media$group']['media$title']['$t'])
This issue will be fixed in the next update.
Thank you, Emil G.
-
This reply was modified 11 years by
Emil G.
Hi,
The theme doesn’t have such an option, it’s only possible with modifications on the code. You could try to change it – http://screencast.com/t/KP2t9iGfqwWq , but note that i didn’t made any tests, if it doesn’t work i suggest that you hire a professional developer to modify it for you.
Thank you, Emil G.
Hi,
I’ve added it on the list, we’ll included it in a future update.
Thank you, Emil G.
Hi,
That will require code modifications and when you update the theme and the plugin you’ll have to make those modifications again. A better solution would be to add it bellow (or above) the Social Counter box.
Thank you, Emil G.
Hi,
We tested the theme with WordPress SEO by Yoast, try to install it, disable all plugins and activate only Visual Composer and WordPress SEO by Yoast, see if the pagination issue is still there.
Thank you, Emil G.
Hi,
Try to delete it and see if it works. If it does it will require a condition that will prevent it’s execution for the plugin tabs.
Thank you, Emil G.
Hi,
Unfortunately i cannot provide a solution for this because i didn’t do tests with such a plugin, hopefully someone who uses one will provide some feedback.
You can also check this discussion – https://forum.tagdiv.com/topic/feature-request-members-access-areas/
Thank you, Emil G.