Hello,
This is mi homepage and I establish the big slide and block 2. I use the block 2 to show the most popular post of the week, but I don’t want to show all the post that I have published on the week, only the 10 most popular. Now, If you press the ned button, the block 2 shows all the post of the blog.
Is any way to limit the number of post to 10?
And another question: Is any way to hide the block 2 on smartphone version? not in tablet or desktop.
Thank you
Can’t help with the second part, but the first part is simple.
http://screencast.com/t/7KzjANOY37M
Edit your block two in the page builder and select Popular (All Time) from the Sort Order box.
http://screencast.com/t/ysrIvB6lti1c
Edit your block two in the page builder and change the Limit Post Number to 10.
hi,
hide the block from css .
add the css here: http://screencast.com/t/ujSpcDHtHs
Thanks for you message.
Radu A.
Q1) But If I set 10 as the limit post number, the widget shows 10 post at the same page. What I want is to show 3 articles per page and when I click on the next button, the widget loads 3 more. But here is the problem, with this configuration the widget load all the post that I have published in the page and what I want is to show the 10 most popular post of the weekend. So, when the widget load the last article (10) stopp loading more articles.
Q2) OK, but what css code I have to add to hide the block 2 on smartphones?
Hi,
1. You need to set the block to show 3 post and if you use next prev ajax or load more button http://screencast.com/t/icj0autHV2 this will load the following posts, but this don’t have a limit in your case 10 and stop.
2. You need to inspect your site and see the selector for the Block 2 and hide is from CSS using display: none for mobile, you have in Theme panel -> Custom CSS this: http://screencast.com/t/sjeNacfQ that you can use for custom CSS only for mobile.
If you don’t manage the CSS part, give us your site URL to take a look and we will provide you the right CSS
Thanks!
1. Ok. But is any way to implement the limit in 10 post?
2. This is my webpage: http://actualidadiwatch.com
hi,
limit the post number: http://screencast.com/t/Xv177uGovK
to hide block 2 use this css here:
.wpb_wrapper .td_block_wrap.td_block2 {
display: none;
}
here : http://screencast.com/t/76ZDS1nZfgcg
Thanks for you message.
Radu A.
Q1) Yes, I know that option, but it is now what I want. If I set 10 post limit, the widget shows 10 post at the same page and look unstructured. What I want is to show the post 3 by 3, but not all the post of my blog, only the 10 most popular post of the week. I mean, limit the widget to 10 post.
Q2) How it works the function “USE 7 DAYS POST SORTING”. I have enabled this options in one of my widgets, but I thought that the rank of the most popular post of the week is reset every week. Is this true or the most popular post is maintained every week?
In the case that the second option was true, is there any option to reset the ranking every week?
hi,
Q1)
take a look at the filters when you add your blocks to the page:
http://screencast.com/t/CiDo8BdCth
http://screencast.com/t/pdTGYuh55
http://screencast.com/t/Ld9Gz4bKySFx
if you cannot do what you want from those filters then you have to modify the code of the theme. if you are not a programmer my advice is to hire one, it will save a lot of time.
Q2) the 7 day counter has an array of 7 position. each day only one position is increased (and every time a position is increased the sum of all position is made).
next week the position will be reset to 1 and it will be increase again.
for example on friday, the position 4 is increase, next week on monday the position 4 is set to 1 (at first entry on the post) and the counter start increasing the 4 position on the array.
Thanks for you message.
Radu A.