- NewsmagHow to update a plugin
- NewspaperHow to update a plugin
- NewsmagHow to update the theme
- NewsmagHow to update the WPBakery plugin
- NewspaperHow to update the WPBakery Page Builder plugin
- NewspaperHow to Update the Newspaper Theme
- 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
We will fix this in the next update, to be changed via Theme panel, until that you can use this CSS to change the font from pages
.page p {
font-size: 16px;
line-height: 26px
}
Thanks for the message!
Well, the sidebar is easy to remove under “page template settings” on the editing screen.
As for the header and footer, there are a few ways you could do this. Here are two:
1. You could edit the respective template files in a child theme to check the page id and only include the relevant elements if it’s not your thank you page.
For example, once you set up and activate a child theme, you could edit the header file you’ve selected in your theme panel. Find this in your-child-theme/parts/header… .php, and add this line before the first div:
<?php if (!is_page('4994')) { ?>
and this at the very end:
<?php } ?>
Your landing page id is the number that comes up when you hover over the link to edit the page: http://www.screencast.com/t/ANsTxW7C
Then you would do the same to other files you want to remove (menu-top.php, footer.php), save, upload, and clear cache.
2. If you’re not comfortable with child themes or php, you could instead do it quickly through CSS:
.page-id-4994 .td-header-bg {
display: none !important;
}
And add any container classes that you want to hide, putting them where .td-header-bg is, e.g. .td-header-menu-wrap. You can find these using inspect element.
The CSS solution isn’t great because all the content will still be downloaded by the client’s browser, but it’s very easy.
3. Create a custom page template. WordPress checks for page templates in a hierarchy of importance, including the slug and the ID, so if you your page’s slug is /email-landing and you have a template named page-email-landing.php, or page-4994.php, and so on, WordPress will use that rather than the default one. Then you could edit that one to suit your needs. You could copy page.php from the parent theme’s folder as a starting point.
From what I’ve read, this is probably the most natural solution, but it would still need a child theme to survive theme updates, and to be honest I haven’t looked at enough custom template building yet to know what to advise you. For example, you can’t just remove the call to get_header() from page.php or you’ll lose a lot more than the logo div, etc.
Those are my two cents, coming from a relatively new learner of this sort of thing. If anyone has a better solution, feel free to mention it so I can learn too. 🙂
Thanks for the idea! I didn’t want to do it on a post-by-post basis (so. many. posts.) However, I couldn’t get it to style the way I wanted, either.
So this is what I did in the end:
1. Copied td_add_single_template_class to my functions.php, removed the filter for the parent function and added a filter for my child function
2. Updated the part of the function that puts in the default class, to first check for the case where the class is ‘single_template_4’ and !has_post_thumbnail(), and if so change the class to ‘single_template_2’ before adding it
3. Updated single_template_4.php, putting this conditional in:
if (in_array('single_template_4', get_body_class()))
4. Wrapped the entire remaining code in there, then added an else and copied the equivalent content from single_template_2.php and pasted it in the same way
It works! Needless to say, I’ve learned a lot about WordPress over the last two hours :p
I’ve came across a awesome plugin that a lot off people might find very usefull,the reason i’m sharing this plugin is because it have a lot of usefull features to better ur wordpress also the theme…
Plugin is called Custom Functions by Shamim Hasan
Features:
1. Change amount of posts on the home page.
2. Change amount of posts on the search page.
3. Change length of excerpt.
4. Automatically mark as spam all comments with an url longer than set chars.
5. Set the post revisions unless the constant was set in wp-config.php already.
6. Control When Your Posts are Available via RSS.
7. Automatically empty trash after set days.
8. Change Admin footer.
9. Add favicon to head.
10. Remove unnecessary links from wp_head.
11. Redirect to home page after login.
12. Hide admin bar from front end for non admin.
13. Disable back end access for non admin users.
14. Login with both Email/username.
15. Show only own uploaded media in library.
16. Restrict user to upload only jpg,jpeg,png,gif type of media.
17. Stop images getting wrapped up in p tags when they get dumped out with the_content() for easier theme styling,
18. Call the google CDN version of jQuery for the frontend.
19. Call Googles HTML5 Shim, but only for users on old versions of IE.
20. Change login screen error messages to “Think you have gone wrong somwhere!”.
21. Show post thumbnail in RSS Feeds.
22. Disable RSS Feeds.
23. Display the Most Accurate Comment Count.
24. Custom admin menu link for all settings.
25. Enable admin to set custom background images in ‘appearance > background’.
26. Remove pings to self.
27. Sharpening resized jpg images.
28. Enable Gzip.
29. Prevent user email change from profile.
30. Block comments with no-referrer.
31. Remove word “Private: ” infront of title of private post/page.
32. Disable the theme/plugin editor in Admin.
33. Disallow anything that creates, deletes, or updates core, plugin, or theme files.
34. No more jumping for read more link.
35. Enable custom Breadcrumbs.
36. Disable Search in WordPress.
37. Disable Admin nag.
38. Remove wordpress version number.
This plugin works so great you can find it via wordpress @ this url
Hi,
Try to use the Theme with only the Visual Composer plugin and deactivate all other plugins and see if stars working.
Also please delete the plugins and install like here: https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/
Thanks
I just installed the theme and all the plugins. It asks me to update VC but I can’t (read in another posts that it isn’t necessary). Now, the Visual Composer does not work for me.
I’ve used it before and I know there should be a button above ‘Add Media’ that you click but instead it’s opened below the text field and I can’t load templates or anything. A screenshot is here: http://i59.tinypic.com/2lwvfd4.png
How do I fix this or how do I use this?
I need the VC for a lot of stuff such as the homepage so I’m stuck now.
Hi,
Can you please give us wp-access so we can check this? Please provide your wp-admin user and pass at contact@tagdiv.com and also include link to this topic in your message or specify the issues details.
Also until we can offer you a solution I can suggest you to use the filter by tag feature http://screencast.com/t/zqqRyDsY This way you will control which posts will be displayed within that block, just add a specific tag to the post you want to add and then add that specific tag into the “Filter by tag slug:” filed also.
Thanks
Hi,
Thanks for the suggestions, unfortunately not all of them can be achieved within the theme and i’m referring to the forth suggestion here, those separator between columns can’t be added because the grid was not designed to support that.
Regarding other suggestions they can be done trough the use of a plugin for that buttons for sharing you can use this plugin which I think it’s the same with the one used in your example https://wordpress.org/plugins/mashsharer/
The avatar can be added with some custom work or try to find a plugin that dose just that.
About the font size/zoom buttons you can also use a plugin if you want that, like this: https://wordpress.org/plugins/zoom-widget/ or similar.
I will also add this suggestions on our feature requests list but because we have over 150 feature requests we have to pick very carefully what we implement. If more people request this feature we will try to do it within future theme updates.
Thanks for the message!
We use last modified on our sites, but your case may be different; we’re running Apache vs Nginx which is a tad different.
I guess your problem is if you’re seeing a page saying last modified 1970 vs “yesterday” that could simply be its way of saying “not updated – ignore me for recrawl” – which is likely the case you’re seeing.
It could be the cookies your site is sending on page load, where the cookie has the 1970 expiration, and the page has yesterday.
This page might be more helpful in checking your headers, dunno:
http://www.microsoft.com/search/Tools/default.aspx
Ok got response and they don’t support.
They say I have to put in htaccess:
> Header unset Last-Modified
was wondering if this is really important because feedthebot says:
“If a search engine crawler sees a web page status code of 304 it knows that web page has not been updated and does not need to be accessed again.”
And I mean, it would be quite bad if your site wouldn’t be crawled anymore.
Or will googlebot still do this?
Hey,
One of my favorite improvements with the latest update is the “Style 3” addition with the large top photo with an inline title.
However, I’ve just disovered that the layout leaves a huge gap, and does not show the title on mobile devices.
Screen: http://i.imgur.com/YAbD1zd.jpg
Web post for comparison: http://www.vitamail.no/featured/d-vitaminmangel-dobler-risikoen-for-demens/
I’ve tried removing all my custom CSS, in case any of it messed it up, but it does not seem to make a difference. Can you help me ut here?
Thanks @Christopher /@TheMediumUTM!!
-
This reply was modified 12 years by
Lucian.
Hi,
I have checked your site and seems like the big slider post title look fine, have you managed to solve this?
This is the normal look of the title on big slider large image: http://screencast.com/t/iXHuXXfKA0Dr
You can change this from td_module_slide_big.php file like this: http://screencast.com/t/tdeImp5vTLJ
If you change that two values you will get this result: http://screencast.com/t/0g5Mdwj0jPrz
Here is the option for changing the big/small images title from big slider http://screencast.com/t/QbxAUrx5C
I have noticed that you have 3.8 theme version and i’m not sure but i don’t think you have these feature in that version so you should update the theme if you want to have this.
For the small images you can change the font-size and line height using this custom css, add it in theme panel > custom css:
@media (max-width: 1020px) and (min-width: 768px){
.iosSlider .td-big-grid-post .td-big-grid-title a {
font-size: 10px!important;
line-height: 10px!important;
}
}
Adjust the size as you like by changing the pixel value.
Hope this helps!
Thanks
-
This reply was modified 12 years by
Lucian.
Hi,
(1) Use this custom css, add in theme panel > custom css:
#rev_slider_1_1, #rev_slider_1_1_wrapper {
max-width: 100% !important;
}
.vc_custom_1407888735315 {
float: left;
}
@media (max-width: 767px){
div.vc_custom_1407609364791 {
background-color: white !important;
border-color: white !important;
}
}
(3) Like I said we will look into this and try to fix it in the next theme updates.
(4) Try this css, I have tested it and should work fine for you too, no extra spacing added, just moved the menu to center: http://screencast.com/t/fQsFTy292CPO
.td-menu-wrap #td-top-menu {
margin-left: auto;
margin-right: auto;
display: table;
padding-left: 0px;
}
Thanks for the message!
Hi,
Please follow this http://www.wpbeginner.com/wp-tutorials/how-to-add-official-linkedin-share-button-in-wordpress/ and add your button like this: http://screencast.com/t/p26gFRG117nS
You could also use a plugin for this http://help.linkedin.com/app/answers/detail/a_id/521/~/adding-the-%E2%80%9Cshare-on-linkedin%E2%80%9D-plugin
Unfortunately we cannot offer custom work as we work hard on the development, updates, fixes and support. You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
Thanks
Hi Lucian,
you can see where I am trying to use the 7 day popular posts on the front page of this site http://myturriff.co.uk/ just below the big picture, titled ‘Most Read’, I’m seeing one post from this week and 2 from 2013. The two posts from 2013 according to jetpack stats have not been viewed once in the past 30 days.
I’ve tried turning off all non required plugins and still get the same result.
I turned off W3 Total Cache when you first highlighted the issue with it so there are no caches to clear.
Any ideas
Hi,
I have tested this and seems the post style 5 doesn’t behave like it should, thanks for reporting this, we will fix this in the next theme update.
Until then if you want to stop the title spreading across the entire screen you can follow this steps:
* go to single_template_5.php file and cut this code, like this: http://screencast.com/t/svHNWgSn
* then go to loop-single-5.php file and paste the code from single_template_5.php file like this: http://screencast.com/t/QTFDiRILM1p
* save the changes you made in this two files and then the post template 5 should look like it should http://screencast.com/t/yLanQSMK9ppp
Hope this helps!
Thanks
I have some suggestions , If it would be better applied at the level of Themes and WordPress in the world , I hope that this theme up to the highest sales take place after this suggestions applied .
First, I want users to Support my request , In order to apply by Newspaper theme team.
suggestions are :
1- Action buttons post on the subject across Facebook & Twitter to share the news, similar to picture attached , This theme is for the news ! So we need to spread the news through it
2- Avatar show writer named imilar to picture attached
3- Since the theme of the news and reading, especially Fonts zooms that some readers are senior age and are difficult to read them in line with normal size < All modern news sites have this feature !!!!
4- Separator between the columns , Gives the appearance of a beautiful Theme ,
similar to picture attached
I hope that these suggestions apply in the next update
Example via the following link :
http://www.eminentculture.com/lauren-bacall-passes-away-89-can-like-bogie-bacall/
Hi,
Please update your theme to the latest version (4.2) we have fixed this, I have tested this and seems to work fine now.
Thanks
P.S. If you’re a little obsessive (like me) and are willing to pay the $28 to get the full version and make the update counter go away, it might not be worth it. Someone else just posted about trying this and found that a newer version messed with the big slider, on that particular implementation anyway: https://forum.tagdiv.com/topic/wpbakery-version-ussue/ So it’s probably best to wait for TD to update with the theme.
Just ignore it. You get a bundled version of the plugin with the theme; you can’t update VC except when the theme is updated.
You may find the documentation for this theme helpful:
https://forum.tagdiv.com/newspaper-documentation/
ref
https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/
today wp ask me to update WPBakery Visual Composer…
is not possible i try to download anda ask me user anda password.
best bet is to review the docs for the theme:
https://forum.tagdiv.com/newspaper-documentation/
really simple, but best way to do it is via FTP:
https://forum.tagdiv.com/how-to-update-the-theme/
1. How to update the theme (manual)
Here are the steps required to update the theme via FTP:
◾Connect to your FTP account using Filezilla
◾It is a good idea to make a backup of your current theme installation
◾Unzip the theme downloaded from http://www.themeforest.net to a folder, in this folder you will find a file called Newspaper.zip
◾Unzip the theme (Newspaper.zip)
◾Via Filezilla go to the wordpress theme directory “your site public html/wp-content/themes/Newspaper”
◾Overwrite the files from that FTP folder with the ones from the content of Newspaper.zip
Hi,
Glad you have managed it.
Regarding the Visual Composer, please note that this plugin is included in the theme files at it’s latest version each time the theme is updated.
Thanks!
Hi,
The menu is made using script and all the css for it it’s compressed so it’s not an easy task to modify it and you need custom work, unfortunately we cannot offer custom work as we work hard on the development, updates, fixes and support.
You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
Thnaks