- NewsmagHow to update a plugin
- NewsmagHow to update the theme
- NewsmagHow to update the WPBakery plugin
- NewsmagCategory templates
- NewsmagWhat’s included in Newsmag theme package
- NewsmagAjax view count
- NewsmagSmart Lists
- NewsmagFeatured images
- NewsmagFeatured image or video
- NewsmagModal window
- NewsmagtagDiv slider gallery
- NewsmagVideo playlist
Hi,
Unfortunately I can’t see an easy way of doing that as modifying the width of the main container would cause other issues with other elements so you would have a lot to customize.
Also noticed while checking your site that you use the 4.1.3 version of Visual Composer plugin so please update it to the latest version which you can find in the plugin folder that came with your theme files and use this guide to do it right: https://forum.tagdiv.com/how-to-update-visual-composer-plugin-wpbakery/
Sorry for the inconvenience!
Thanks for the message!
Hi,
You can use the custom css to fix the issue with the grey background:
@media (max-width: 467px) {
.td-big-grid-post-1,
.td-big-grid-post-2,
.td-big-grid-post-3,
.td-big-grid-post-4 {
width: 50%;
max-height: 110px;
}
}
This fix will be also include in the next theme version so either use this css or you wait until update which will be tomorrow or the monday.
@fbengo The social networks aren’t set to appear on header style 6 so that is why you don’t have them there.
Thanks
Hi,
We are sorry for the inconvenience! This usually appears because the server security module blocks the access to admin-ajax.php file. Try to verify the console for error while saving the settings on the Theme Panel, usually it displays a 403 or 404 error.
Contact your server administrator and explain the situation, as it’s requested many times during the a save the file it’s treated as threat so it’s banned. You can report false positives to your server administrator to remove it from the banned list.
You can also try this:
* http://screencast.com/t/MVBAYGfgepr
* http://screencast.com/t/yFJ0LFAvK
Also make sure you updated the theme to the latest version as we have adjusted this to make fewer requests so it might not happen again.
Please let me know!
Thanks
Hi,
Thanks for your suggestion. I will add this on out feature requests list and we will consider it for future updates but we have to be very carefully though what we chose to implement as we have over 170 feature requests on our list so if more people will ask for this we will try to do it, until then if you need it we suggest to try to find a plugin for it.
Thanks
installed shop.
when ordering appears incomprehensible code.
Moreover, it appears only in IE.
In Google Chrome’s OK
ie:
http://s017.radikal.ru/i412/1411/d6/7edff2d60762.jpg
google chrome:
http://s57.radikal.ru/i155/1411/c8/cb9203cbeb45.jpg
this is my func file child-theme
<?php
/* ----------------------------------------------------------------------------
WordPress booster framework - this is our theme framework - all the content and settings are there
It is not necessary to include it in the child theme only if you want to use the API
*/
if (!defined('TD_THEME_WP_BOOSTER')) {
include TEMPLATEPATH . '/includes/td_wordpres_booster.php';
}
//Удаление цветовой схемы
remove_action( 'admin_color_scheme_picker', 'admin_color_scheme_picker' );
//Редактирование полей в профиле
function modify_contact_methods($profile_fields) {
// Add new fields
//$profile_fields['twitter'] = 'Twitter Username';
//$profile_fields['facebook'] = 'Facebook URL';
//$profile_fields['gplus'] = 'Google+ URL';
$profile_fields['dopplr'] = 'VK';
$profile_fields['delicious'] = 'Battlelog';
// Remove old fields
unset($profile_fields['google']);
unset($profile_fields['evernote']);
unset($profile_fields['dribbble']);
unset($profile_fields['digg']);
unset($profile_fields['blogger']);
unset($profile_fields['deviantart']);
unset($profile_fields['forrst']);
unset($profile_fields['github']);
unset($profile_fields['googledrive']);
unset($profile_fields['googlemaps']);
unset($profile_fields['grooveshark']);
unset($profile_fields['html5']);
unset($profile_fields['lastfm']);
unset($profile_fields['linkedin']);
unset($profile_fields['myspace']);
unset($profile_fields['path']);
unset($profile_fields['picasa']);
unset($profile_fields['pinterest']);
unset($profile_fields['posterous']);
unset($profile_fields['reddit']);
unset($profile_fields['sharethis']);
unset($profile_fields['slashdot']);
unset($profile_fields['spotify']);
unset($profile_fields['stackoverflow']);
unset($profile_fields['stumbleUpon']);
unset($profile_fields['tehnorati']);
unset($profile_fields['sharethis']);
unset($profile_fields['addthis']);
unset($profile_fields['behance']);
unset($profile_fields['tumblr']);
unset($profile_fields['viddler']);
unset($profile_fields['virb']);
unset($profile_fields['windows']);
unset($profile_fields['woordpress']);
unset($profile_fields['zerply']);
unset($profile_fields['paypal']);
unset($profile_fields['yahoo']);
unset($profile_fields['vimeo']);
unset($profile_fields['rss']);
unset($profile_fields['soundcloud']);
return $profile_fields;
}
add_filter('user_contactmethods', 'modify_contact_methods');
//Удаление админбара для всех кроме админа
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}
//логотип при входе
function my_login_logo(){
echo '
<style type="text/css">
#login h1 a { background: url('. get_bloginfo('template_directory') .'/images/logo.png) no-repeat 0 0 !important; }
</style>';
}
add_action('login_head', 'my_login_logo');
//Теперь нам необходимо сделать так, чтобы логотип ссылался не на сайт wordpress.org, а на наш с вами.
//Тут тоже особо трудного ничего нет, добавляем всего лишь еще одну строку
add_filter( 'login_headerurl', create_function('', 'return get_home_url();') );
//Всплывающую подсказку что сайт работает на WordPress надо тоже убрать, и добавить свою фразу.
//Тут нам поможет эта строка:
add_filter( 'login_headertitle', create_function('', 'return "Brothers in Games - Сообщество любителей поиграть вместе";') );
//убрали лого из админбара
add_action( 'wp_before_admin_bar_render', function() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}, 7 );
//убрали ненужные виджеты
function shailan_remove_dashboard_widgets() {
// Remove Quick Press Widget
remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
// Remove Incoming Links Widget
remove_meta_box( 'dashboard_incoming_links', 'dashboard', 'normal' );
// Remove Recent Comments Widget
remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' );
// Remove Latest Plugins Widget
remove_meta_box( 'dashboard_plugins', 'dashboard', 'normal' );
// Remove WordPress Blog Widget
remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );
// Remove Other WordPress News Widget
remove_meta_box( 'dashboard_secondary', 'dashboard', 'side' );
}
add_action('wp_dashboard_setup', 'shailan_remove_dashboard_widgets' );
//удалили версию из футера админки
function my_footer_shh() {
remove_filter( 'update_footer', 'core_update_footer' );
}
add_action( 'admin_menu', 'my_footer_shh' );
//удалили указание на вп в футере
function remove_footer_admin () {
echo '';}
add_filter('admin_footer_text', 'remove_footer_admin');
//удалили таб помощи сверху
add_action('admin_head', 'mytheme_remove_help_tabs');
function mytheme_remove_help_tabs() {
$screen = get_current_screen();
$screen->remove_help_tabs();
}
//убрали метатег из хедера показывающий использование вп
function fjarrett_remove_wp_version_strings( $src ) {
global $wp_version;
parse_str(parse_url($src, PHP_URL_QUERY), $query);
if ( !empty($query['ver']) && $query['ver'] === $wp_version ) {
$src = remove_query_arg('ver', $src);
}
return $src;
}
add_filter( 'script_loader_src', 'fjarrett_remove_wp_version_strings' );
add_filter( 'style_loader_src', 'fjarrett_remove_wp_version_strings' );
//Hide WP version strings from generator meta tag
function wpmudev_remove_version() {
return '';
}
add_filter('the_generator', 'wpmudev_remove_version');
//скрытие пунктов меню слева от посторонних глаз
add_action( 'admin_init', 'my_remove_menu_pages', 999 );
function my_remove_menu_pages() {
// If the user does not have access to publish posts
if(!current_user_can('administrator')) {
remove_menu_page('bsf-dashboard');
remove_menu_page('wpcf7');
remove_menu_page('edit.php?post_type=explandict');
remove_menu_page('tools.php');
}
}
// get the "author" role object
$role = get_role( 'author' );
// add "organize_gallery" to this role object
$role->add_cap( 'unfiltered_html' );
// убираем инфу о неправильном пароле при входе
add_filter('login_errors',create_function('$a', "return null;"));
// убираем из кода страницы упоминание о Yoast WordPress SEO plugin
add_action('get_header', 'rmyoast_ob_start');
add_action('wp_head', 'rmyoast_ob_end_flush', 100);
function rmyoast_ob_start() {
ob_start('remove_yoast');
}
function rmyoast_ob_end_flush() {
ob_end_flush();
}
function remove_yoast($output) {
if (defined('WPSEO_VERSION')) {
$output = str_ireplace('<!-- This site is optimized with the Yoast WordPress SEO plugin v' . WPSEO_VERSION . ' - https://yoast.com/wordpress/plugins/seo/ -->', '', $output);
$output = str_ireplace('<!-- / Yoast WordPress SEO plugin. -->', '', $output);
}
return $output;
}
Hi.
I cant update my theme on themeforest. Because envato doesnt give a permission to download it. I have that warning: http://prntscr.com/5amysi
Anyone help?
Hi,
Sorry for the inconvenience but we have some issue with the latest version of the speed booster plugin which we are currently investigating and hopefully we can provide the fixed version of the plugin on the next theme update, until then we suggest to use the previous version 2.5, if you don’t have at you can send an email at contact@tagdiv.com with a request for it and we will send it to you.
Thanks
Hi,
Thanks Christopher!
@digitalbulgaria First please send your site’s URL so I can inspect it and also make sure you deactivate all plugins and empty cache and/or purge files id you use any CDN hosting services then check again.
@worldchris you can find the changes and list of modified files here: https://forum.tagdiv.com/topic/update-theme-using-envato-plugin-without-losing-customizations/
Scroll down to this section: http://screencast.com/t/1k9oBNAija
Thanks
Hi,
Thanks @Steven!
Unfortunately we do have an issue with tagdiv speed booster plugin which is the cause of the css flash. I have also tested this and noticed that this issue, as you all figured out by now only happens when using the latest version of the speed booster plugin (3.0).
Added this on our issue list, we will investigate it and we will try to find a solution asap and hopefully we can provide the fixed version on the next theme update, until then you can use the previous version of the plugins which works fine(2.5).
Sorry for the inconvenience and thanks for understanding!
Hi,
First you should localize your WordPress: http://codex.wordpress.org/WordPress_in_Your_Language
Install WordPress in your language then automatically the theme will use the rtl.
Search the forum for suggestion and fixes for the issue you may encounter with this and you should also consider that unfortunately we recently have decided that starting with the next theme update we will not include rtl support within the theme. You can still use the theme as it id but unfortunately you cannot updated it as you will lose the rtl support.
Sorry for the inconvenience!
Thanks for the message and for understanding!
Hi Lucian,
I updated the theme, currently we have 4.6, but we still have this issue.
P.s. Ads don’t appear either because of fill rate in your region, or because you hide cookies. I currently see the ads, but we need to turn them off for mobile/tablets devices
Please advise
I too have some customized things in my theme. Just curious what was changed in this update prior to installing it.
Hi,
Is it alright if I update only the modified files via FTP?
Thank you
Hi,
I tried to integrate an image in a post but it’s loading and nothing appears.
I put the url to integrate an image and it’s working.
Unfortunately for the featured image, you can only choose image from libraries or upload it and again it’s not working. ERROR appears when I’m ulploading an image.
I noticed nothing appear when I choose “grid” in the library. It’s just loading. But it’s ok when it’s in “list”
On my others wordpress sites it’s alright… I don’t understand.
I updated the theme and WordPress recently.
Could you help me?
Thanks
I’ve had some time here the past couple of days since I was installing the theme myself, and was also doing some major site backup stuff, dbase update on ecom system and had some “wait and watch the progress bar” kind of things, hence helping out a little to pay forward all the help I’ve gotten over the years with my own WordPress troubles the past decade 🙂
I have added this code <?php echo do_shortcode('[td_ad_box spot_id="custom_ad_1"]'); ?> below <div class="td-ss-main-content"> at page.php. Now the add looks great on all pages, but where should I add the shortcode for the other sites (tags, categories…)?
And where should I add the code at single posts? I have tested it with “Article top ad”, but with this option the ad will displayed below the “featured image”. For “Style 1” (little thumbnail) is this option ugly and I want it direct below the menu.
It would be a very cool feature when there are some hooks so it is possible to add ads via function.php. So I have to change every template-site with every update…
OK. I have deleted the media query’s. Now it works.
Is it possible that in a new update the media query’s are in an extra css-file or an option in the theme panel? It would be very helpful.
Ok the reason i was not seeing this flicking of the site b4 is because i never updated my td speed booster plugin to the latest Version 3.0,i was still using the Version 2.5,well after updating to the new version i’ve notice the flicking of the site like the other 2 person above,when you go to a post on ur site the site is flicking,after going back to the old version that flicking is not there,the new td speed booster is really the issue,may be is best to go back to the old Version 2.5 till the team sort this issue out Version 3.0…
-
This reply was modified 11 years by
Steven.
The search is fixed since the update. I am working on the wp-admin fix in another thread/email. You can close this one. Thanks!
Hi,
I guess you’re referring to the Big Grid which is not a slider and doesn’t have such an option. On the normal slider the feature is there but the option is missing, we’ll fix it in the next update.
Thank you, Emil G.
Hi,
Unfortunately I can’t give you and exact answer, hopefully on Friday or at the latest at the start of next week as we have a lot of work, short time and few resources. You will receive a notification from themeforest when an update will be available.
Hope you understand! Thanks for the message!
Hi,
Glad you managed to fix the issuer with the video playlist.
Regarding the other issues you have, I’m not sure I understand which theme icons are not working I have also checked your site and haven’t found any issues so please provide more details or a screenshot would also help.
I have tested the social sharing and like/tweet issue and you are right the like/tweet option can be set without the sharing buttons. I have added this issue on our todo list and we will fix this in the next theme update.
Please let me know!
Thanks
-
This reply was modified 11 years by
Lucian.
Hi,
@Teejoow
As Christopher said you don’t need to activate it just use this guide and delete the WPBakery Visual Composer plugin then install it like this: https://forum.tagdiv.com/how-to-update-visual-composer-plugin-wpbakery/
Thanks
Hi,
after installing Revolution Slider I get the following message trying to activate it:
Revolution Slider Error:no update action taken!
or on other occasions I got a longer message about a fatal error. I tried deleting it and uploading it from the zip that came with the theme, but still getting the same error messages. So far I could not activate the plugin.
Thanks for your help!