Here is how it look your source code: http://screencast.com/t/1fdWkxfk is minified. Please disable all plugins, empty the cache.
How you have updated the theme? You need only to replace all files via FTP.
Hi,
Your site code seems to be minify. Please disable the minify! Do you use W3 Total cache plugin? Use W3 total cache only with Page cache enable.
Also please make sure you have copied all files on the update, what you can do is to make a full update to be sure you have all files.
Hope this help!
Thanks!
Hi,
Yes, replace this code: http://screencast.com/t/agBB1xPA with this:
<?php if ($post->post_author != '1') {
echo $td_mod_single->get_author_box();
} ?>
1 is the author ID
Thanks!
Hi,
If more people will require this we will take a look for the future updates. Thanks for the message!
Hi,
1. What do you mean not match the theme width? Show me a screenshot! The admin bar is not from our theme, the style is from wordpress.
2. I’ve tested on Galaxy S4 and works on landscape to. Why you need that ugly bar there? He is hidden by default.
We have our nice login modal that you can use it: http://screencast.com/t/VExlKmqOy
Thanks!
Hi,
Add this CSS in Theme panel -> Custom CSS
@media (max-width: 767px) {
.td-menu-header .td-sp, .sf-sub-indicator{
background-image: url('http://www.yoursite.com/wp-content/themes/Newspaper/images/sprite/elements.png');
}
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-moz-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {
.td-menu-header .td-sp, .sf-sub-indicator{
background-image: url('http://www.yoursite.com/wp-content/themes/Newspaper/images/sprite/elements2x.png');
}
}
Replace this: http://screencast.com/t/uSbxUnLN
Thanks!
Hi,
Can you check with inspector to see if the image are there and have the correct path.
Can you give me a link to inspect it myself?
Thanks!
Hi,
Is not possible from Child theme, sorry!
Thanks!
Hi,
Will be fixed in the next update ASAP.
Thanks!
If you want to update to 3.7, follow those steps: https://forum.tagdiv.com/newspaper-v-3-7/
Hi,
That not depend by the theme, make sure you have the latest plugins installed. Delete it and install it again, is located in plugin folder. td-social-counter.zip
Also can you give us your twitter username to test it on our installation?
Thanks!
Add this code: <span>Fallow Shah</span> like here: http://screencast.com/t/d8gnnrfTr
this is for the author box from the post.
If you want that on box from authors page, add it here to: http://screencast.com/t/QYYgfXqNks
Thanks!
Hi,
Of course, see here: http://screencast.com/t/n4XbZP4S
Thanks!
Hi,
Do you have the latest theme version? That is a bug with WP 3.9 and Visual Composer. You need to update to latest version 3.7 https://forum.tagdiv.com/newspaper-v-3-7/
Thanks!
Hi,
The tagDiv Speed Booster works with our recommended plugins, with others plugins could cause incompatibility.
I recommend to deactivate it if you have other plugins active.
About the issue above, I’m not sure what you have there, but what you can do to be sure that everything is fine, is to make again the Theme + Child update and remove the tagDiv speed Booster if you don’t use it. Everything should work with no errors.
Hope this help!
Thanks!
Hi,
Try this: Add this code in wp-config.php
define( 'DISALLOW_FILE_EDIT', true );
Thanks!
Hi,
A simple solution is to add the logo in menu like a normal item, add a link in menu and use like <img src="link to your logo"> to add your logo.
Then inspect the logo from menu and adjust it via CSS.
Thanks!
Hi,
@betterretailing can you give us more details about the issue with that plugin? We don’t have a license to test it.
Thanks!
Hi,
@betterretailing can you give us more details about the issue with that plugin? We don’t have a license to test it.
Thanks!
Hi,
We don’t have implemented a solution like this, sorry for the inconvenience!
We will think about that for the future updates.
Thanks for the suggestion!
Hi,
If the message not show for you, you can install the VC manually, the plugin is located in plugins folder in Theme: http://screencast.com/t/0ZmPHTuZR0
Hope this help!
Thanks for the message!
Hi,
Add this code: 'autoplay' => '2', like here: http://screencast.com/t/VzmO8sMs
Add this code in functions.php and change that 98 with your featured category ID
add_action( 'pre_get_posts', 'be_exclude_category_from_blog' );
function be_exclude_category_from_blog( $query ) {
if( $query->is_main_query() && $query->is_category() ) {
$query->set( 'cat', '-98' );
}
}
Thanks!
Hi,
You can make it via CSS, similar to this: http://screencast.com/t/Mpionp9tmt I’ve makes with Firefox inspector some CSS modification.
Hi,
1. I don’t understand your question. For me looks like this: http://screencast.com/t/EabiYbT4
2. Use this CSS for mobile
#wp-toolbar > ul > li {
display: block !important;
}
Thanks!