- NewspaperFlex Block Builder and Flex Loop Builder
- NewspaperHow to use the Flex Blocks cache option
- NewspaperHow to edit modules for Flex Block X
- NewspaperHow to insert a block inside the content of a post
- NewspaperFlex Block Settings Guide
- NewspaperMeta Info on Modules and Blocks
- NewspaperTheme modules and blocks
- NewspaperThumbnails – Fix strange looking images on blocks
- NewspaperBlock settings tutorial
- NewspaperCategory Tag on Modules/blocks
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperSearch setup for custom post type
- NewspapertagDiv Opt-In Builder – Emails
- NewspaperBookmark – Save For Later
- NewspaperModules Builder in Newspaper Theme
- NewspaperFilters and sorting for taxonomies
- NewspaperUser review system
- NewspaperWooCommerce: Happy “Add to Favorites!”
- NewspaperLockers
- NewspaperLeads
Hi,
We will keep this in mind thanks again for your suggestion.
Have a nice day!
@manuel
yes… just google it 😉
https://developers.google.com/speed/pagespeed/module/filter-lazyload-images
Objective
Optimize browser rendering and reduce number of HTTP round-trips by deferring the loading of images which are not in the client’s viewport. This filter implements the PageSpeed rules for optimizing browser rendering and minimizing round trip times.
The lazyload_images filter defers loading of images until they become visible in the client’s viewport or the page’s onload event fires. This avoids blocking the download of other critical resources necessary for rendering the above the fold section of the page.
**
where we ran into trouble was the “onscroll” feature, which hides things until you scroll down, which would seem to make sense, but with the earlier version of Newspaper, we’d basically scroll down and the images would be too lazy and not load at all !
Now, both the theme and mod_pagespeed have been updated since last time I tried this, so it’s on my to do list to revisit 🙂 I would have gotten back to this, but was really sick for 3 months, and only now getting back to ‘normal” and waaay catching up on stuff. 🙂
Hello,
Since i’ve updated the theme, tinymce has messed up changing the fonts of the back-end such as ‘wp-admin/post-new.php’.
In the HTML of the backend editor it says:
<body id="tinymce" class="mce-content-body content post-type-post post-status-pending post-format-standard mceContentBody wp-editor html5-captions" onload="window.parent.tinymce.get('content').fire('load');" contenteditable="true">
In the css of the backend editor now, it says:
element.style {
}
html .mceContentBody {
max-width: 700px;
max-width: 1074px;
font-family: 'PT Sans', sans-serif;
font-size: 16px;
line-height: 27px;
}
body {
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
font-size: 13px;
line-height: 19px;
color: #333;
margin: 10px;
}
body {
background-color: #FFFFFF;
color: #000000;
font-family: Verdana,Arial,Helvetica,sans-serif;
font-size: 11px;
scrollbar-3dlight-color: #F0F0EE;
scrollbar-arrow-color: #676662;
scrollbar-base-color: #F0F0EE;
scrollbar-darkshadow-color: #DDDDDD;
scrollbar-face-color: #E0E0DD;
scrollbar-highlight-color: #F0F0EE;
scrollbar-shadow-color: #F0F0EE;
scrollbar-track-color: #F5F5F5;
}
body[Attributes Style] {
-webkit-user-modify: read-write;
word-wrap: break-word;
-webkit-line-break: after-white-space;
}
user agent stylesheetbody {
display: block;
margin: 8px;
}
And i can’t change ‘html .mceContentBody’, so the font is to normal? Even when i deactivate the cache plugin ‘W3 Cache’, it still doesn’t change.
Any help?
Thanks 🙂
Hi!
I use TagDiv block in sidebar. I chose to show the most pupular posts on it. How can i show only the titles of these posts without any pictures? Coz the pictures in sidebar are the same size that the rest of the pictures in other posts on the page, it looks not good.
I need to show only titles on sidebar or to make smaller picteres to devide sidebar information from the main part of the page
The block title should simply not be linkable
Hi Lucian,
By default it is blank, but still links to http://techplanet.nl/category/hardware/
It might have something to do with the fact that my Category Filter in this block is Hardware.
But still, I don’t want it linking to my Hardware section, just SHOW articles that are in my hardware section.
So how do I stop the Block title from linking, even when the field you said it empty?
Andre
ok, I think I got why google linkid is allways showing 0% clicks. The next element above has an generic id like td_uid_3_53d7796f62db9. I think google is counting clicks towards this id and since this changes pretty often the clickrate is spread across a lot of elements. You may want to consider to use date-td-uid instead of id attribute?
-
This reply was modified 12 years by
Manuel Fink.
Hi,
how can I set the thumbnail size to be displayed?
I am creating a custom module search and want to show a different thumbnail instead of the smaller one. This is the line:
return parent::get_image($thumbType, $image_link);
Thank you.
hi,
thanks for your suggestion
Thanks for you message.
Radu A.
Hi,
Is there a way to completely prevent a block title from linking to somewhere?
I don’t want it pointing anywhere. So how do I do this in the Block properties, under “Optional – custom url for this block (when the module title is clicked):”
Thank you!
Hi,
You can change the module used for Similar Posts from here http://screencast.com/t/j2QCMYK044c
Unfortunately these dose work only for module 2,3,4,5,6 which is’t default.
Regarding the title, if you are referring to the “Similar Articles” section, you can use this custom CSS in Theme Panel > Cusotm CSS:
.similar-articles .block-title {
display: none;
}
To hide the posts title use this CSS:
.similar-articles .td_mod_wrap .entry-title {
display: none;
}
Hope this helps!
Thanks
Hi Lucian,
The Vies column is not added by Newspaper Theme?
See:
<th scope=”col” id=”td_post_views” class=”manage-column column-td_post_views” style=””>Views</th>
Thanks,
Hi,
The logo appears there because it’s like a menu-item from that list now. Please chose the “header style 2” from Theme Panel and set to hide the header only on screens with the minimum width of 768px using this code in Custom CSS > Theme Panel:
@media (min-width: 768px) {
.td-header-bg {
display: none !important;
}
}
Also remove this code:
.td-header-bg {
display: none !important;
}
and
@media (max-width: 767px) {
.td-header-bg {
display: block !important;
}
}
from Theme Panel > Custom CSS filed.
Hope this helps!
Sorry about this!
Let me know if works!
@seitenprofi Use the same method to add the logo like a menu-list item and them position it using CSS like you want it.
For the logo to be shown on mobile chose the menu style 2 and use the @media or the advanced CSS from Theme Panel http://screencast.com/t/CvwEyAOxSxb2 to hide the header from other screens or the above CSS:
@media (min-width: 768px) {
.td-header-bg {
display: none !important;
}
}
Thanks
-
This reply was modified 12 years by
Lucian.
hi,
the blocks display one or more module (each module is a post).
also the slide is a module and is display in the slide block but is a little different because the slide html code has to wrapp the post html code.
http://screencast.com/t/MhaG1UDcZ3h
Thanks for you message.
Radu A.
Thx Lucian! No big deal! So far I went for little more complex css selectors. Got everything working.
I just realized that google linkid (plugin for google analytics to track where on page users are clicking) (https://support.google.com/analytics/answer/2558867?hl=en) requires id’s. Thus if you start integrating this you may want to consider also integrating an id fields.
I added a class and an id to the different page areas e.g.
similar ariticles id=”td_similararticles”
sidebar id=”td_sidebar_left” & id=”td_sidebar_right”
footer id=”td_footer”
This not only makes styling with css easier but also allows linkid to work. You may want to integrate the id tags in your theme too?
I am setting excerpts (type letters)
and most settings work well only I don’t understand from the color coding what is the mapping between slides (which also have titles) and the modules.
(Basically – there is no mapping I suppose… – none seem to affect them and the title is VERY short!)
Is there a work around or am I missing something ?
Hello, I have just noticed after updating to the new 4.0.2 Newspaper version that the ajax pagination is not working, specifically on my home page. I have, below my featured slider, “Block 8” from the VC that I am using. When you load the page, block 8 looks fine, but when you click the pagination buttons, it loads the next set of 6 posts but remains “translucent/foggy” as if it were still loading.
Here is a screenshot: http://www.screencast.com/t/3GmiAi2YzNGb
Any ideas?
Hey, i use New comments block in right sidebar, when there are some comments i see only the name of person who commented and the name of the post.
Is there an option to display a kind of preview of the comment in this block too?
Hi,
You can do it via css, add this in Theme Panel > Custom CSS:
.widget_text .block-title span {
background-color: #2b2b2b;
}
.widget_text .block-title {
border-bottom: 2px solid #2b2b2b;
}
Thanks
Hi,
@dhvanesh
Please remove the css I gave you before and try this:
@media (min-width: 768px) {
.td-header-bg {
display: none !important;
}
}
@media (max-width: 767px) {
.td-header-bg {
display: block !important;
}
}
@seitenprofi
I’m not sure that I understand where you want the logo to appear. Can you please provide more details on what are trying to achieve or maybe a screenshot of something similar?
Thanks
-
This reply was modified 12 years by
Lucian.
Hi,
Unfortunately the theme doesn’t have such a feature, I have added this in our todo list, if more people will request these, we will implement this.
Thanks for your message
Thanks Lucian,
I thought it was possible to get to the result just using blocks and modules, not changing code (it will be lost at every theme update). Never mind, I will use the theme like this. Not very exciting, but it works.
Mario
Hi,
Depends on what you want to do. You can take a look on how are they used on blocks here: http://screencast.com/t/zRDQoQmgef or on pages via loop.php http://screencast.com/t/5B8tjDhU41
Hope this helps!
Thanks!
Hello! I found another issue, when i click “cargar más (load more)” in “noticias (news)” block it repeat the content…