- Apitd_api_top_bar_template::update_key
- Apitd_api_top_bar_template::update
- Apitd_api_single_template::update_key
- Apitd_api_single_template::update
- Apitd_api_footer_template::update_key
- Apitd_api_footer_template::update
- Apitd_api_smart_list::update_key
- Apitd_api_smart_list::update
- Apitd_api_thumb::update_key
- Apitd_api_thumb::update
- Apitd_api_category_top_posts_style::update_key
- Apitd_api_category_top_posts_style::update
- Apitd_api_category_template::update_key
- Apitd_api_category_template::update
- Apitd_api_module::update_key
- Apitd_api_module::update
- Apitd_api_block::update_key
- Apitd_api_block::update
- Apitd_api_header_style::update_key
- Apitd_api_header_style::update
Hi,
If you disable the post views in Theme Panel it also disable the counts on the backend, you have to enable it and hide the frontend views (if you want) via custom css:
.entry-comments-views span{
display: none;
}
.entry-comments-views span.td-sp-ico-view{
display: none !important;
}
We’ll add separate options (hide/disable) in a future update.
Thank you, Emil G.
-
This reply was modified 11 years by
Emil G.
Hi,
Unfortunately the newspaper theme doesn’t an option for that at the moment, you could try to use a plugin for that. You will need custom modifications for that, so you can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself. We cannot offer custom work because we work hard on the development, updates, fixes and support.
Sorry for the inconvenience!
Thanks for the message!
Hi,
We plan to add a new format for the smart lists in a future update, we may also add a custom ad option for them. Unfortunately i cannot say when it’s going to be implemented, we have a lot of features on the list and we have to take them in the order of priority.
Thank you, Emil G.
Hi,
Please take a look here for your issue with profile link: https://forum.tagdiv.com/topic/profile-link-at-top-menu-not-working/
Unfortunately the theme was initially designed with an fixed grid layout and changing it would not be easy as it needs changing the width value for all elements on pages and for this you would need custom work and we cannot provide any at this time because we work hard on development, updates and support.
Sorry for inconvenience!
Thanks!
I have a multisite installation with newspaper theme.
I use one newspaper child theme for each one of the two sites I have.
Following the steps on https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/, from network admin I tried to deactivate Visual Composer.
When I hit “deactivate” whole site went white.
I now cannot enter the network admin and I cannot see the front-end too.
I deleted the plugin files from the server with ftp, but I cannot still view the site. Is there a solution to this?
remember you can’t update VC by over-writing original folder.
You need to wipe the old plugin from server, then upload new version via FTP.
I do it manually from uncompressed files to ensure it all uploads properly from FTP software log.
Manual minification of the theme style.css file
(e.g., /wp-content/themes/Newsmag/style.css)
Open style.css in a text editor, such as TextPad on Windows, BBEdit on Mac, or other pure “text editor” – notepad on windows works (NOT WordPad!!)
Go to http://cssminifier.com/
1) in your text editor, select all in the style.css file (CNTRL+A), and copy (right click copy, or CTRL+C)
2) paste into the left box on above website (right click paste or CTRL+V), click minify
3) copy all from right box
4) paste back into your style.css file on top (over/replace) — it should now look line one long string of code, not all the line breaks. This is what “minification” does; it removes spaces and line breaks (returns).
Optionally, make new text file called style.css and upload over the original (assuming you’ve made a backup). With a good text editor, you can also save with proper line breaks (for Unix servers, for example you should save stuff with “unix line breaks” and not “windows line breaks”) — hence something like TextPad 5 or BBEdit are good choices for this kind of stuff. Other freeware “programmer editor” software works, too.
This is how you manually minify the main style.css file. Must be done after every theme update; but literally takes less than 5 minutes.
You would need to replace the original style.css file either via FTP, or using a file manager in your hosting panel.
HI, folks
I thought I’d put this in ONE place (it’s buried in the pagespeed sticky topic on the newspaper forum, but a lot to shovel through there).
This is some of the custom code I put at bottom of my functions.php file EVERY time the theme is updated, and for ALL our websites, regardless of theme (with some new code for Visual Composer in this iteration).
Basically this code helps with various things – some of which are needlessly often done in plugins and don’t need to be – including things for PageSpeed rating, and general optimizations such as default image compression level for thumbnails, etc.
Use if you wish; but please *do not* go post this in a blog article as if it’s your idea or I’ll come and punch you 🙂
*NOTE:
this also includes code you might not need
a) remove visual composer CSS from post pages
b) remove pingback URL
c) change default WP thumb compression from 90 to 50 (some like 60)
d) remove yoast admin bar (annoying)
e) add go away message for people trying to login guessing passwords; great to use with limit login attempts
f) delete enclosure in RSS feed
g) disallow some things in comments for security
AND MY MAGIC BUNNY CODE:
/*CHRISTOPHER's CUSTOM MODS - 1.10.15 rev15A - (c) 2010-2015 Chris Simmons */
remove_action( 'wp_head', 'wp_generator' ) ;
remove_action( 'wp_head', 'wlwmanifest_link' ) ;
remove_action( 'wp_head', 'rsd_link' ) ;
remove_action( 'wp_head', 'feed_links', 2 );
remove_action( 'wp_head', 'feed_links_extra', 3 );
add_filter( 'pre_comment_content', 'wp_specialchars' );
function no_errors_please(){
return 'You appear to be up to no good. Please stop now!';
}
add_filter( 'login_errors', 'no_errors_please' );
/* Disable YOAST SEO Admin Bar. */
function mytheme_admin_bar_render() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wpseo-menu');
}
// and we hook our function via
add_action( 'wp_before_admin_bar_render', 'mytheme_admin_bar_render' );
function delete_enclosure(){
return '';
}
add_filter( 'get_enclosed', 'delete_enclosure' );
add_filter( 'rss_enclosure', 'delete_enclosure' );
add_filter( 'atom_enclosure', 'delete_enclosure' );
function remove_cssjs_ver( $src ) {
if( strpos( $src, '?ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'jpeg_quality', create_function( '', 'return 50;' ) );
function remove_pingback_url( $output, $show ) {
if ( $show == 'pingback_url' ) $output = '';
return $output;
}
add_filter( 'bloginfo_url', 'remove_pingback_url', 10, 2 );
add_action('init', 'myoverride', 100);
function myoverride() {
remove_action('wp_head', array(visual_composer(), 'addMetaData'));
}
function dequeue_visual_composer_css() {
if (is_single()) {
wp_dequeue_style('js_composer_front');
}
}
add_action('wp_enqueue_scripts', 'dequeue_visual_composer_css', 1003);
Note:
last item removes Visual Composer CSS from “post” pages (single). You would not use that if you use VC for anything on posts, obviously.
It’s possible the “subscriptions” plugin may not be compatible with latest version of Visual Composer. If the plugin has not been updated since WP 4.1 came out, it may not be fully compatible with WordPress 4.1x also.
I don’t work here, but I’m not having issues with out beta install of WooCommerce with the theme and about 6 popular plugins. (Although the tabs plugin folk have updated their plugin 3x so far this month!)
Alin, is there any chance to solve this problem in the future updates? Smart list format is quite nice looking, but to implement all the ads manually is a hell.
Hi,
problems with WPBakery Visual Composer ver 4.4.2,
I disabled all plugins before, but when I go to update the new version, the system slows down everything and then exits error 501/505.
how come this problem, so do not conflict with the plugin,
Use a personal server for this system.
Tell me what to do ??
I await your solution about
Hi,
After last update i have a problem with a mobile version of my page: http://www.naszebarnsley.co.uk
Could you tell me what’s wrong or where can I change to have a good one.
Before last update everything was ok.
Kind regards
Need to use Visual Composer to create the layout as I mentioned in your other post on the same topic. You can simply update the ongoing topic, you don’t need to keep starting new ones, btw. 🙂
Hi there!
Around the time I updated to 1.4 a week ago it appeared that the website wasn’t showing any new articles. I could post, but it wasn’t visible on the front page or category or even the xml feed (which doesn’t work). According to the date on the top left page it was still January 28. Yesterday I tried to downgrade to 1.3, which did not resolve the problem, and updated to 1.5, turned on and off the theme and the website was updated and seemed to work.
But still, no new articles appear on the website and it’s still February 5 (after yesterday’s update). The feed, for example, did work yesterday but doesn’t work anymore too.
Any idea what might cause this problem? The website: http://www.electricautosport.com
I think I know a few things about wordpress, but I don’t know where to look..
Hope there is a quick fix.
Best regards,
Tim
Hi,
In this theme’s update we have renamed some shortcodes:
– td_ad_box -> td_block_ad_box
– td_authors -> td_block_authors
– td_homepage_full_1 -> td_block_homepage_full_1
– td_popular_categories -> td_block_popular_categories
– td_video_vimeo -> td_block_video_vimeo
– td_video_youtube -> td_block_video_youtube
– td_text_with_title -> td_block_text_with_title
– td_slide -> td_block_slide
– td_social_counter -> td_block_social_counter
So the renamed widgets have to be re added to each sidebar after this update. Make sure that you backup your database and if possible get the widget list from your sidebars.
Rename the short codes via SQL: https://forum.tagdiv.com/update-newsmag-to-1-5/
The shortcodes shouldn’t be a problem, they will just appear on page as a code, you have to locate them and manually modify them to the new format: http://screencast.com/t/Da8k0HHtSD or use the SQL query (in phpmyadmin) to automatically replace them in the database – http://screencast.com/t/G1SwZNDb
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
-
This reply was modified 11 years by
Alin [tagDiv].
I’ve just updated the theme, but now I get this code in the sidebar and elsewhere. How to solved it?
Site: http://bumbum.peturhaberg.com
Hi,
I will add this on our feature requests list and we will consider it for future updates, however we have almost 200 feature requests and we have to pick very carefully what we implement, if more people will request this we will consider it.
Thanks for the message!
Hi unfortunately that does not work ’cause we’re running a magazine with hundreds of authors.
I’d found this plugin https://wordpress.org/plugins/wp-biographia/, but i think it would be a great addon for a next update. []s
HI, thx for the update.. will wait then..
jkx
Hello,
I’m reporting a grammar issue on Newspaper theme.
It says ‘Welcome! Login in to your account’ when you click the login button.
It should read: ‘Welcome! Login to your account’
How do i change this? Or will you in the latest update?
Hi,
We plan to add options to the ad system in a future update, until then a solution may be to look for a plugin who can handle your type of ad or modify the theme code which is not an easy job.
Thank you, Emil G.
Hi,
We’ll fix it in the next update, thanks for reporting this.
Until then modify the code here – http://screencast.com/t/Y6mjJUgx0
If you're not happy with the results, please do another search
Thank you, Emil G.
-
This reply was modified 11 years by
Emil G.
Hi,
I have tested this using one of the videos you’ve used and had the same issue: http://screencast.com/t/GOCdGAuO5O so it seems that this might be due to the theme as it seems that for some video it can’t download the big thumb image. I will add this to out issue tracker list for further testing and we will fox this as soon as possible and within the next update.
Sorry for the inconvenience!
Thanks
Hi guys, we are facing issue with translation after the update.. please have a look http://screencast.com/t/U9Az5171kR its translated and saved within theme dashboards http://screencast.com/t/3UKB3J8v
also the login screen shows some english text evn tho we have it translated..
what to do?
¨
Glad you have managed to sort this out finally!
Thanks for the update and please let me know if you other theme related issues!