Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Montezuma Theme »

Changing Post Order


  #1  
Old Jul 15, 2013, 12:24 PM
EugeneA
 
7 posts · Jul 2013
Hello,

I have created a two column post layout on my site by placing . As is stands now my site displays the same posts side by side (did so by adding two postformat.php in the content div).
11
22
33
..
..

Like I said, the same post are displaying side by side- which I do not want. I'd like it to display posts as such:
12
34
56
..
..

Any ideas?

Thanks,
Eugene.
  #2  
Old Jul 15, 2013, 03:11 PM
jerryc
 
367 posts · Oct 2012
Florida
I'm pretty sure this has been asked and answered on this forum. It was a while ago, but you should be able to find it if you dig.
  #3  
Old Jul 22, 2013, 01:28 PM
EugeneA
 
7 posts · Jul 2013
I've been digging and searching. I've found related threads- some seem to be related to another theme tho. What thread you are talking about?

I've read this thread, which I believe is similar to what I am trying to accomplish.

Jerryc, In one of your post in this Thread: 3 Column Post

You said: The grid part is pretty easy with MZ. You'd edit whatever main template you were using. Here is a basic post and a more advanced one on grid layouts.

To make the posts layout into the grids will probably require some advanced php. You may want to see the last post in this thread.

You'd probably first sort your posts in reverse chrono. Assuming you'd want your posts to lay out 1, 2, 3 across the first row, then 4, 5, 6 below that, you'd use a "for" loop, starting with the latest thread, and increment your counter by 3, so your first column would have posts 1, 4, 7 .... In the second column, you'd start one higher, so you'd have posts 2, 5, 8 ..., and one higher for the third, ending with 3, 6, 9 ....

P.S. Remember, PHP starts counting array items at 0, so you'd really have 0, 3, 6 ... in the first column, etc.
--------
I'm not quite understanding. How to I change the PHP to start counting in the arrangement that you have stated?

Any help would be appreciated.

Thanks
  #4  
Old Jul 22, 2013, 02:17 PM
jerryc
 
367 posts · Oct 2012
Florida
I'm going to have to call on other members of this forum to give you the other pieces. While I know quite a bit about html, php, and css, I'm rather new to WP and know almost nothing about posts. I only use WP for pages.
  #5  
Old Jul 22, 2013, 05:44 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
@jerryc: a page is just a special type of a post
  #6  
Old Jul 22, 2013, 07:27 PM
jerryc
 
367 posts · Oct 2012
Florida
Quote:
Originally Posted by juggledad
@jerryc: a page is just a special type of a post
Yes, but excerpts of them don't get listed on the home page, which is what the poster wants to do, only in columns, and I can't help on this anymore than I have. Do you have some ideas on how to increment posts so they line up in columns, juggledad? This has been asked before, and I expect others will ask it again.
  #7  
Old Jul 22, 2013, 07:50 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
@jerryc
Quote:
but excerpts of them don't get listed on the home page
correct because they are a special type of post.

If you only work with pages, shouldn't you refrain from offering suggestions for questions about posts?

@eugenea I know of no examples to show you how to do what you want to do. While I think it might be do able, for me to experiment and test it and write up directions would take more time that I am willing to donate to the forum at this time do to my other commitments. My paying customers and family come first.

I would suggest playing, possible count the posts giving the first a class of 'postcol1' and the second a class 'postcol2' the third 'postcol3' and then reset it so the fourth gets 'postcol1' etc

Then you could style it with CSS.
  #8  
Old Jul 22, 2013, 09:52 PM
jerryc
 
367 posts · Oct 2012
Florida
Quote:
Originally Posted by juggledad
If you only work with pages, shouldn't you refrain from offering suggestions for questions about posts?
While I don't work with wp posts, I do know some php. So, perhaps somebody who knows enough about posts can take what I have shared about php and come up with a solution. It's called collaboration. I'd love to see more of it in this forum.

Quote:
Originally Posted by juggledad

I would suggest playing, possible count the posts giving the first a class of 'postcol1' and the second a class 'postcol2' the third 'postcol3' and then reset it so the fourth gets 'postcol1' etc

Then you could style it with CSS.
When I first read this, I loved it. Then I realized that in order to have the most recent post at the top of the left column and the second most recent at the top of the second column, you'd have to reclassify all the posts every time you added one. That would get pretty tedious.

There should be a pretty easy way to make a PHP array the extracts of the posts, sorted with the most recent first. Then, a for loop for each column, incremented by the number of columns, will put them into the correct columns.

After you get the post excerpts into an array called "$post_excerpts" sorted in reverse chrono, here's how I'd write the code for column 1 of a three column by 6 post long index page:

PHP Code:
for ($i 0$i 18$i+=3)
    echo 
$post_excerpts[$i]; 
For column 2, the code would be the same, only the for loop would start with $i = 1. Column 3 would start with $i = 2. (Remember, PHP numbers its array elements starting at 0.)

On the subsequent index pages, it'd probably be easier to just do them in one column.

Last edited by jerryc; Jul 22, 2013 at 09:55 PM.
  #9  
Old Jul 22, 2013, 10:09 PM
jerryc
 
367 posts · Oct 2012
Florida
Quote:
Originally Posted by jerryc
There should be a pretty easy way to make a PHP array the extracts of the posts, sorted with the most recent first.
If nothing else, whatever code is typically being used to put the code for each excerpt onto the index page could be used, only the output could be captured with output buffering, then parsed into an array, then lined up in columns. Here's an example of output buffering being used with MZ.

Last edited by jerryc; Jul 23, 2013 at 12:16 AM. Reason: typo
  #10  
Old Jul 23, 2013, 12:48 AM
CrouchingBruin's Avatar
CrouchingBruin
 
299 posts · Aug 2010
Santa Monica, CA
One question I would have for the OP: is the design supposed to be fixed, fluid, or responsive? That is, when viewed through a narrow viewport like a smart phone, what happens to the columns? Should the posts transform from:
1 2
3 4
5 6
to
1
2
3
4
5
6
?
Or do they stay side-by-side with either the same absolute width or percentage width?
__________________
My Montezuma-themed sites: ESHS Girls Basketball Team, Venice Hongwanji Buddhist Temple
Please consider making a donation to BytesForAll for their great themes!
  #11  
Old Jul 23, 2013, 03:52 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Quote:
When I first read this, I loved it. Then I realized that in order to have the most recent post at the top of the left column and the second most recent at the top of the second column, you'd have to reclassify all the posts every time you added one. That would get pretty tedious.
As you say Jerry, you don't know how posts work. Try reading the Wordpress codex and you will find that posts by default, are returned in date sequence, newest first, but it is possible to sort them in many different ways.

If you don't know an answer for sure, please go research it and test it before giving advice. This will help the person asking the question, or anyone in the future looking at the thread (they won't get incorrect or misleading information) and it will save the moderators time from having to review every post you make.
  #12  
Old Jul 23, 2013, 10:02 AM
jerryc
 
367 posts · Oct 2012
Florida
Quote:
Originally Posted by juggledad
As you say Jerry, you don't know how posts work. Try reading the Wordpress codex and you will find that posts by default, are returned in date sequence, newest first, but it is possible to sort them in many different ways.
Except your solution would override that by forcing them into specific columns with the class designation. If somebody had their latest post classed as postcol1, then added another post, the previous post would have to be reclassified as a postcol2, and all the others would need to be reclassed accordingly to maintain the order

1 2 3
4 5 6.


Quote:
If you don't know an answer for sure, please go research it and test it before giving advice. This will help the person asking the question, or anyone in the future looking at the thread (they won't get incorrect or misleading information) and it will save the moderators time from having to review every post you make.
I know this for sure. Test your solution and you'll see.

Last edited by jerryc; Jul 23, 2013 at 10:05 AM.
  #13  
Old Jul 23, 2013, 10:16 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Jerry, class are assigned while a page is being built, not when the post is created. Please stop making statements that are false and misleading

When you create a post, you can assign a category or a tag to it, but not a class or id. Classes and ID's are part of HTML syntax, as someone who claims to know HTML, CSS and php, you should know that
  #14  
Old Jul 23, 2013, 11:00 AM
jerryc
 
367 posts · Oct 2012
Florida
You're right, juggledad. I don't understand how your css solution to this would work at all.
  #15  
Old Jul 23, 2013, 11:14 AM
EugeneA
 
7 posts · Jul 2013
Quote:
Originally Posted by CrouchingBruin
One question I would have for the OP: is the design supposed to be fixed, fluid, or responsive? That is, when viewed through a narrow viewport like a smart phone, what happens to the columns? Should the posts transform from:
1 2
3 4
5 6
to
1
2
3
4
5
6
?
Or do they stay side-by-side with either the same absolute width or percentage width?
This exactly. On a smaller screen post would be in 1 column- As I have it, it works as such.

On wider screens it comes back to 2 columns.

I've figured out how to divide it, that was no problem.

I just need to learn how to have the post display in the order I've asked.

BTW: Thank you for all your support guys.

Last edited by EugeneA; Jul 23, 2013 at 11:22 AM.
  #16  
Old Jul 23, 2013, 11:14 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Jerry, The OP was talking about modifying the template. My suggestion was to put code in the template to assign the classes to the posts and do the positioning with CSS based on those classes.

This is something I did with the Atahualpa theme. I wrote a multi column/custom query template so i do know a little about what I was suggesting.

It would seem that you have made assumptions about what I was suggesting instead of saying you do not understand. This has caused me to spend way to much time on this thread which is why I will again request that you do not make suggestions if you don't know how wordpress works. Go do some homework before making suggestions.
  #17  
Old Jul 23, 2013, 02:14 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
On reading this thread another idea occurred to me which I just tried and it seems to work.
This would create two columns by floating the posts. You could create three or more by adjusting the width percentage.
You could, of course, add other breakpoints. The following would, at 400px stop the floating of posts so as to display well on mobile devices. This assumes you have a variable width site.
HTML Code:
@media screen and (max-width: 400px) {
.post {float: none; width: 100%;}
}
@media screen and (min-width: 600px) {
.post {
    float: left ;
    width: 40%;
    padding: 0 15px;}
}
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #18  
Old Jul 23, 2013, 02:50 PM
jerryc
 
367 posts · Oct 2012
Florida
Brilliant, simple, elegant solution, Larry. No custom php required, and responsive.
  #19  
Old Jul 23, 2013, 03:29 PM
EugeneA
 
7 posts · Jul 2013
Quote:
Originally Posted by lmilesw
On reading this thread another idea occurred to me which I just tried and it seems to work.
This would create two columns by floating the posts. You could create three or more by adjusting the width percentage.
You could, of course, add other breakpoints. The following would, at 400px stop the floating of posts so as to display well on mobile devices. This assumes you have a variable width site.
HTML Code:
@media screen and (max-width: 400px) {
.post {float: none; width: 100%;}
}
@media screen and (min-width: 600px) {
.post {
    float: left ;
    width: 40%;
    padding: 0 15px;}
}
Thanks for this. Experimenting with it now.

Would this work with the MZ theme? seeing as it uses grids?
Eugene

Last edited by EugeneA; Jul 23, 2013 at 04:15 PM.
  #20  
Old Jul 23, 2013, 04:24 PM
jerryc
 
367 posts · Oct 2012
Florida
Quote:
Originally Posted by EugeneA
Would this work with the MZ theme? seeing as it uses grids?
It looks like it should. Try it. You might also adjust your widths. Play with it.

Please post a link with your results.
  #21  
Old Jul 23, 2013, 04:36 PM
EugeneA
 
7 posts · Jul 2013
Thanks,

It seems to have worked - still tweaking it.

Problem is, it also messes up the format of my actual posts.

Which CSS file should I place the code in?

Eugene,
Anzelcore.com - click on any post and you'll see what i mean.

Last edited by EugeneA; Jul 23, 2013 at 05:46 PM.
  #22  
Old Jul 24, 2013, 07:02 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
I only see one column of posts on your home page
  #23  
Old Jul 24, 2013, 07:07 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
@EugeneA... A question.

Why do you have your site title and tagline showing twice with the second taking up a huge amount of screen real estate? On a mobile device this shows as one over the other both the same size.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #24  
Old Jul 24, 2013, 04:56 PM
EugeneA
 
7 posts · Jul 2013
@lmilesw

I'm aware of this. I'm not quite done with the design as of yet.

@juggledad

I reset the layout- I was tweaking it yesterday but can't figure out how to target only the post on the index.

Thanks,
Eugene

Last edited by EugeneA; Jul 24, 2013 at 04:59 PM.
  #25  
Old Jul 24, 2013, 05:07 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Quote:
can't figure out how to target only the post on the index.
if you mean the posts on the front page use 'body.home' as the beginning of your CSS selector. That will say to the browser 'if the body has a class of 'home' and ..rest of selectors... apply these CSS rules'

Last edited by juggledad; Jul 25, 2013 at 02:29 AM.

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Changing order of page menu bar ofpeb Page & Category Menu Bars 13 Jan 5, 2012 10:07 PM
Changing category order in category menu bar, not in sidebar cat. list paulae Page & Category Menu Bars 13 Mar 30, 2011 05:36 PM
my-category-order plugin order by 'order' not working darrenk Page & Category Menu Bars 3 Mar 24, 2010 06:56 AM
changing post order accessart Atahualpa 3 Wordpress theme 0 Mar 27, 2009 04:59 PM


All times are GMT -6. The time now is 03:48 AM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.