No search results were found in Documentation!
Hi,
Our theme is compatible with the latest version of woocommerce. You can update the theme using this guide:
https://forum.tagdiv.com/how-to-update-the-theme-2/
then : https://forum.tagdiv.com/how-to-update-visual-composer-plugin/
As for the child theme, that will need updating too. There is no update proof way of altering the theme files:
https://forum.tagdiv.com/topic/setting-up-child-theme/
Then you can update your plugin.
Thank you!
Hi,
Well the widgetized sidebar element (I presume you are referring to) will grab a sidebar from the widgets area of wordpress. Does your sidebar in the widgets area have widgets set to it? Please check that area and then use the widgetized sidebar element to pull a sidebar into a page. It works properly for us so i cannot recreate the issue on my end.
Plugins can also interfere so please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
Yes, this is available for the default wordpress themes. Our theme already has this implemented in the theme panel under the custom code section so you do not have to use any child theme for any custom css. You can simply use the theme panel and all your css will apply with or without a child theme. If you do want to use a child theme and enque the css, then you should read this topic: https://wordpress.org/support/topic/theme-stanleywp-enqueuing-many-stylesheets-into-child-theme-in-correct-order/
Thank you!
Hello,
Unfortunately the browsers we tested our theme width are google chrome, Mozilla Firefox, internet explorer and opera. We did not test the theme with the Facebook browser or mobile phone specific browsers. Still you can try to disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme. as we have no such reports until now so it could be something on your end affecting the browser.
Thank you!
So I found I could drop the template file in Newspaper/mobile/<themename>.php and it picked it up.
However, I’m using a child theme. I tried adding the file in <ChildTheme>/mobile/<themename>.php and it did *not* work.
How can it be picked up in the Child Theme? As it stands now, anytime the main Newspaper theme is updated, my custom template will be blown away. And I can’t locate it in <ChildTheme>/<themename>.php, as that is the template for the non-mobile version of the file, that is still working correctly.
Thanks,
~Chris
Hello,
I need to edit the comment section of the mobile theme (I want to replace the current comment system with Facebook Comments). In previous answers to other clients you’ve suggested to edit the core files of the plugin directly but the problem is since the mobile theme is a plugin, all my customization will be lost once the mobile theme plugin will be updated. Is there any solution to avoid that?
When using a child theme, the file js_composer.min.css is being loaded AFTER the parent and child theme style sheets. The documentation for a child theme adds the style sheets in functions.php using the function:
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1000);
However, when this loads the child theme, the js_composer.min.css file is loaded after the parent and child style sheets. Is this a bug or was it intentional?
If the priority above is changed to 1001, which matches the priority from the file td_wp_booster_functions.php (below), the style sheets are loaded in the correct order.
td_wp_booster_functions.php:
/* ----------------------------------------------------------------------------
* front end css files
*/
add_action('wp_enqueue_scripts', 'load_front_css', 1001); // 1001 priority because visual composer uses 1000
Please confirm that WooCommerce 2.6.11 is full compatible with Version 7.6 – December 20th, 2016?
What is the best way to update the theme (i use child theme)?
The child theme do not need any code update confirm?
What is the best way to update WooCommerce (before OR after update the theme)?
Really thanks.
Hello Bogdan,
custom CSS code has to be inserted via child theme as described in official WordPress guide:
If your child theme style.css contains actual CSS code (as it normally does), you will need to enqueue it as well. Setting ‘parent-style’ as a dependency will ensure that the child theme stylesheet loads after it.
Please tell me how I need to modify the following script in order to personalise the theme CSS using child theme:
<?php
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>
Hello,
This could be a plugin conflict so please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
Hello,
You should make again this changes at your theme code because the td_module_single_base.php has been overwritten with the latest update and you have lost this modification, as you can see here -> http://screencast.com/t/ZLpN8kmz Please keep in mind that at each update if you do not use the child theme and if the files which are changed cannot be written in child theme, you will lost all of your modifications and then you should make them again.
Thanks for your understanding!
Hi,
You can try this code for Header style 10 (for Header style 11 change the first class number to 11 in each of the lines), just enter it in Theme panel->Custom Css
.td-header-style-10 .td-header-main-menu .sf-menu > li > a:after {
height: 0;
}
.td-header-style-10 .td-header-main-menu .sf-menu > li > a {
color: black;
}
.td-header-style-10 .td-header-main-menu .sf-menu > li > a:hover {
background-color: #4db2ec;
}
.td-header-style-10 .td-header-main-menu .menu-item-first a:first-child {
background-color: #4db2ec;
}
Please let me know if this works for you
Thanks
-
This reply was modified 9 years by
Simion C..
Hello,
please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
Hi,
1) This is a plugin conflict so please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
2) I think you are referring to the social counter icons: https://forum.tagdiv.com/social-counter-styles-on-newspaper/
3)https://forum.tagdiv.com/video-playlist-2/
Thank you!
The child theme and customization were the problems in the above request. If you have customizations done to the thee code or the child theme, please restore the theme to it’s default code.
Thank you!
Hello,
This could be a plugin conflict so please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
Hi,
Well you do not have to use the child theme for custom css. Add the code in the theme panel-> custom css box
The code you added is not to hide the post views, but to hide the post title.
Please use this code to hide the post views:
.single .td-post-views{
display:none!important;
}
Thank you!
Hi, Thank you for your reply. As you told me, I try to clear cache and reset cdn files. but I can’t find it. So Could you join my id, and solve the problem?
my wordpress manager page url is http://theschoolofnews.com/wp-login.php?loggedout=true
Hello,
Sorry but no attached images are present in your request so I;ll try to answer without them but I could be wrong.
1) Your images are there only they are broken and have an opacity of 0 This is caused by a js error that prevents the lazyload animation from working properly. The number 1 reason for this is plugin conflicts.
please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
2) Sorry but without an example I cannot know which buttons you are referring to.
3) I assume you are referring to the playlist element: https://forum.tagdiv.com/video-playlist-2/
If you have any further questions please open a new topic on our official support forum at https://forum.tagdiv.com/forum/newsmag/
The comments section here is destined for presale questions.
Thank you!
Bogdan B
//
Hi there, I bought your awesome theme. but I had a problem.
First, I can not see any photos in all posts. Thumbnails come out. I do not know what’s wrong. (attached picture 1)
I think name server changing… what address is?
Second, I do not know how to modify the youtube video’s link. (attached picture 3) my youtube channel is this. https://www.youtube.com/channel/UCg822xJeDaGAkp7IApqsETA How can I add?
짱피디 – YouTube
http://www.youtube.com
하루에 한 번! 딱 1분만 보면 짱! 똑똑해지는 짱피디의 뉴스인대용! 홈페이지 : http://www.jjangpd.com 페이스북 : http://www.facebook.com/jjangpd
I can not find it even if I try to find it.
I’ll wait for your contact. Best regards.
url : http://theschoolofnews.com/
item purchase code :
Licensor’s Author Username:
tagDiv
Licensee:
jang jooyoung
Item Title:
Newspaper
Item URL:
https://themeforest.net/item/newspaper/5489609
Thank you very much.
————————————
You can view and reply to the message at https://themeforest.net/item/newspaper/5489609/comments?page=508&filter=all#comment_15148309
Do not reply to this email.
Regards,
Envato Market Team
Psst! Remember – this is not a marketing email. Since you have an Envato Account, we want to keep you informed about transactions, operational updates or changes to our websites.
Hello, recently we tried upgrading the theme to 7.5 so that then we could upgrade it to 7.6, problem is that block_16 and some others changed its style as you can see in the imgur album below
As you can see the block (in that case its block 16) lost its style.
How can we go about reversing this issue?
We’re using your provided child theme
Thanks in advance
hello team ,
I am facing some errors in newsmag theme .
1. Some of functions linked to JQuery not working properly such as “Trending Now ” section arrows for forward and backward are not working.
2. When i test the code in w3c validator the following major errors are found .
#1 Error: Bad value EditURI for attribute rel on element link: The string edituri is not a registered keyword.
From line 23, column 237; to line 23, column 339
-json/’ /><link rel=”EditURI” type=”application/rsd+xml” title=”RSD” href=”http://tectrick.org/xmlrpc.php?rsd” /><link
#2 Error: Duplicate ID td_uid_36_585f9f01ecf8a.
From line 136, column 141; to line 136, column 220
lock-row”><div class=”td-trending-now-wrapper” id=”td_uid_36_585f9f01ecf8a” data-start=””><div c
#3 Error: Element style not allowed as child of element div in this context. (Suppressing further errors from this subtree.)
From line 188, column 3429; to line 188, column 3442
0254136″ ><style scoped>.td_ui
Contexts in which element style may be used:
Where metadata content is expected.
In a noscript element that is a child of a head element.
Content model for element div:
Flow content.
#4 Error: Element style not allowed as child of element div in this context. (Suppressing further errors from this subtree.)
From line 199, column 7958; to line 199, column 7971
0264a3d” ><style scoped>.td_ui
Contexts in which element style may be used:
Where metadata content is expected.
In a noscript element that is a child of a head element.
Content model for element div:
#5 Error: Element style not allowed as child of element body in this context. (Suppressing further errors from this subtree.)
From line 220, column 8274; to line 220, column 8311
panel –><style type=”text/css” media=”screen”>/* cus
Contexts in which element style may be used:
Where metadata content is expected.
In a noscript element that is a child of a head element.
Content model for element body:
#6 Warning: The first occurrence of ID td_uid_36_585f9f01ecf8a was here.
From line 136, column 60; to line 136, column 114
;</script><div id=td_uid_36_585f9f01ecf8a class=”td_block_inner”><div c
Hello,
I don’t want to display the post view count so I decided to hide it using CSS (I can’t disable them as per the note in 7 days post sorting):
.td-post-template-default .td-post-title {
display: none;
}
The problem is this trick is not working on my child theme’s style.css (the current active theme is the child theme you provided). The rules above are working on custom code/custom css section of the theme though.
Hi,
Please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
If you still have trouble please contact us via email at contact@tagdiv.com and provide wp-admin so we can login and investigate.
Thank you!
Hello rdiv,
Here -> http://screencast.com/t/gkCHWNmnN you will see a list with all the files which can be overwritten from td booster. As you can see, the td_block.php does not occur. For more information about our child theme support, please consult here -> https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thanks for the message!
Hello adrapper,
Please try to make a new clean install from scratch with the latest version of the theme via FTP, install only the plugins that come bundled with the theme packet, disable the child theme if you are using this and check the results. Until now, we do not have any bad reports in this regard and I suspect your problem happens due to your theme installing. First of all, try to make a full backup to your database to be safe.
Thanks fro your understanding!
Hello,
This could be a plugin conflict so please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!