Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Center area post/pages (http://forum.bytesforall.com/forumdisplay.php?f=32)
-   -   Juggledad's multi column/custom query (http://forum.bytesforall.com/showthread.php?t=17493)

wesleydeboer May 6, 2012 06:45 AM

Juggledad's multi column/custom query
 
Hello!

I have two questions

1. I have all latest versions of WP and Atahualpa. And in one of the latest versions you added Juggledad's multi column/custom query. I'm not sure if im right but this should make it possible to have multiple columns on pages and posts-pages right?. If so could someone explain how to make make a two or three column page of this page http://wesleydeboer.com/schoolwork/. I just can't figure out how to do it.


2. In the header of the pages I've put my social media buttons. I used the overlay header function but i'm not able to click them. When you click you go to home. Only when I put "clickable header" on no they work. Is there a possibility to have them both work?

Thanks for you help

Wesley

juggledad May 6, 2012 09:39 AM

Quote:

If you use this template, think about donating to me. I spent many long hours figuring out how to do this, testing an debugging it. Sending me a donation will encourage me to continue to support this template and Atahualpa.

You can use the 'Donate to Juggledad' button on the donate page

This PAGE template will allow you to use one template on any number of pages and have different options per page. It is a combination of a custom query and multi-column template (variable columns per page).

* you can code a custom query...or not
* you can choose to display the page TITLE...or not
* you can choose to display the page TEXT...or not
* you can define multiple columns...as many as you want, 1 to n (but any more that 5 or 6 makes them very narrow (with CSS you can define how wide each column should be)
* you can display x posts above the column

And the settings are unique to each page you use the template on.

============
INSTALLATION
============

This template currently (as of version 3.7.5) is included with the theme
1) download the attached file and unzip it.
2) upload it to your Atahualpa folder
3) edit a page in the backend and select the template 'JUGGLEDAD's Multi Column/Custom Query'

============
USAGE
============
If you wish to have multiple columns, add a custom field called 'number_of_columns' and put a number in the value field.

If you wish to have a post (or 3 or 10) above the columns, add a custom field called 'posts_above_the_column' and put a number in the value field.

If you wish to have show the page 'title', add a custom field called 'show_page_title' and put 'yes' or 'no' in the value field

If you wish to have show the page 'text', add a custom field called 'show_page_text' and put 'yes' or 'no' in the value field

If you wish to have custom query, add a custom field called 'custom_query' and put a custom query in the value field.

to craft a query, go to http://codex.wordpress.org/Function_...ce/query_posts
to see the variations you can code. You use what is inside the quotes. For example, if you see
query_posts('cat=2,6,17,38');
you would only enter
cat=2,6,17,38
into the custom field.

Here are some sample queries:
category_name=Direction
category_name='Staff House'
tag=animal
post_status=publish&posts_per_page=10
post_status=draft
post_type='movie' (yes you can use custom post types)
post_type='page' (you can have a page of 'pages')

====================
controlling the column widths
====================
You can easily control how wide the post columns will be by adding a couple selectors and rules to the 'CSS Inserts' option. By adding the 'body.page-id-nnnn' to the CSS Selector, you can customize the width per page. For example: Here is what might add for a three column page and a four column page

body.page-id-1493 .mccq_column1 {width: 33%;}
body.page-id-1493 .mccq_column2 {width: 33%;}
body.page-id-1493 .mccq_column3 {width: 33%;}

body.page-id-2367 .mccq_column1 {width: 20%;}
body.page-id-2367 .mccq_column2 {width: 20%;}
body.page-id-2367 .mccq_column3 {width: 10%;}
body.page-id-2367 .mccq_column4 {width: 50%;}

====================
LICENSE
====================
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

Support for any problems encountered will be on an 'as my time permits' unless you want to hire me - in that case, send me a private message and I'll tell you my rates.

juggledad May 6, 2012 09:39 AM

Quote:

2. In the header of the pages I've put my social media buttons. I used the overlay header function but i'm not able to click them.
you may need to add some CSS to increase the z-index

willclark218 Jul 25, 2012 01:29 PM

I had a heck of a long post but was logged out and didn't know it.. rats.. but this is bad a** jd.. definitely going to donate when I'm not so friggin broke.. figured out the bio thing also... sort of.. I'm not a programmer but can usually follllow directions, even when they give me a headache.. I do have one question though and I hope its not a bug.. I can get the posts to show up on the correct pages but the comments are closed for some reason.. Enabled on screen options and through quick edit.. still no luck.. am I being stupid?.. thx..
Will

willclark218 Jul 25, 2012 04:27 PM

fixed it..

juggledad Jul 25, 2012 05:28 PM

I like this type of question :p

crateov Jan 12, 2013 10:42 AM

Hello!

I have a few of questions and donated for the help. :)

1. On http://crateov.com/podcasts/ I am trying to show only one category on the page. I read through how to put certain categories and I think I am confused. For the "custom query" I did this:

// -------------------------------------------------------------------------
// get the custom query
// -------------------------------------------------------------------------
$my_custom_field = $custom_fields['cat=11'];
if (is_array($my_custom_field)) {
foreach ( $my_custom_field as $key => $value ) {
if ($key == 'cat=11') {$mccq_args= $value;}
}
}


I changed the custom_query into 'cat=11' and Don't know if that's how to change 'custom_query' into a certain category but it didn't help. It still post all the categories.

2. How do I change to the page theme into a "Multi Post Pages" because it's using the POST/PAGE INFO ITEMS of my "Homepage" instead of the "Multi Post Pages". The Kicker is different between my Homepage and Multi Post Pages and this would help me design the site to fit the theme.

3. How do you remove the excerpts from the post.

4. also, I am having trouble adjusting the post column sizes for http://crateov.com/podcasts/. I used this:

body.page-id-0228 .mccq_column1 {width: 320px;}
body.page-id-0228 .mccq_column2 {width: 320px;}
body.page-id-0228 .mccq_column3 {width: 320px;}

on CSS insert, but it doesn't look even.

juggledad Jan 12, 2013 02:28 PM

crateov:
Quote:

1. On http://crateov.com/podcasts/ I am trying to show only one category on the page. I read through how to put certain categories and I think I am confused.
you don't touch the template
go back and read post 2 of this thread
Quote:

2. How do I change to the page theme into a "Multi Post Pages"
you don't it is a 'page' page
Quote:

3. How do you remove the excerpts from the post.
you can add another custom filed 'number_of_full_posts' and set the value to 99999 - but if you have a log post and then a short post they won't look good together.
Quote:

4. also, I am having trouble adjusting the post column sizes for http://crateov.com/podcasts/. I used this:
body.page-id-0228 .mccq_column1 {width: 320px;}
your page id is incorrect - take a look at the <body...> statement in the source to see what it should be

Also you have a table that is in the source before the <body...> statement. You probally put it in the wrong option in the 'Add HTML/CSS Inserts' option.

crateov Jan 13, 2013 07:56 AM

Thanks for the reply Juggledad, still confused about certain things:

Quote:

Originally Posted by juggledad (Post 94831)
crateov:

you don't touch the template
go back and read post 2 of this thread

I read through it again and still confused on what to do with:

"If you wish to have custom query, add a custom field called 'custom_query' and put a custom query in the value field."

I really don't know where "custom_query" on the theme beside the template area.

I want to post certain categories, so do I use this?

custom_query( 'cat=11' );

really confused about this.
Quote:

you don't it is a 'page' page
Is there a way to use the info on the Atahualpa > POST/PAGE INFO ITEMS for the kicker and byline for "Multi Post Pages"? I know it's taking it's info from the "HOMEPAGE" kicker and byline.

juggledad Jan 13, 2013 09:24 AM

Edit the page and go to the custom fields area. If you don't see it, check the screen options tab

crateov Jan 13, 2013 10:01 AM

Quote:

Originally Posted by juggledad (Post 94860)
Edit the page and go to the custom fields area. If you don't see it, check the screen options tab

Thanks. That was simple. I feel like an idiot. haha.

Is there a way to have search results use the Juggledad template?

juggledad Jan 13, 2013 06:22 PM

Quote:

Is there a way to have search results use the Juggledad template?
I've never tried using it that way.

gr870sfunk Feb 4, 2013 08:40 AM

I am using the template in order to show posts on my home page after some other text. It works great and has for months, but the problem is that the formatting on the post such as links and block quotes don't show up on the multi-post view.

www.togetherwesoar.org

When you click on the link to go into the single post page, all the formatting is there.

How can I get the links and such to show up on the home page? All the posts are showing the full post and not excerpts, btw.

WordPress 3.5.1
ATA 3.7.10

lmilesw Feb 4, 2013 08:50 AM

Does that occur even with the proper tags added to the "Don't strip these tags" box in the Excerpts section of the theme options?

gr870sfunk Feb 4, 2013 01:37 PM

Ah! That did it. I've never had to use that particular option, so I wasn't aware of it. Thanks!!

h2p Jul 10, 2013 05:20 AM

" to see the variations you can code. You use what is inside the quotes. For example, if you see
query_posts('cat=2,6,17,38');
you would only enter
cat=2,6,17,38
into the custom field.

tag=animal
...."

If I have a tag of a few words - it does not work.
tag=animal - Ok
tag='big animal' - does not work

M-SHOLEH May 8, 2014 09:07 AM

Quote:

Originally Posted by juggledad (Post 87906)
I like this type of question :p

Haloo Master juggledad
If I donate $ 5 instead of $ 10 - $ 20
What do I get??
1.Juggledad 's multi column / custom query
2. Remove Powered by Atahualpa Footer
And what else is there?? :-)

juggledad May 10, 2014 08:55 AM

If you donate $5 you will get our thanks.
If you donate $20 you get access to the gold forums and the gold forum tutorials and get directions to remove the footer credits.
If you donate $100 you get access to the gold and diamond forum and better response from the moderators.

Alan_OldStudent Dec 23, 2014 02:39 AM

Quote:

Originally Posted by juggledad (Post 84779)
============
USAGE
============
If you wish to have multiple columns, add a custom field called 'number_of_columns' and put a number in the value field....(???)

Hello,

I'm new at some of this, and I wanted to use this template. But I got stuck right here, because I don't have a clue how or where to add a "custom field." Are the words "number of columns=3" written into the page itself? Is there another place to add custom fields?

I know it's the holidays and you probably are busy, but I really need to get this done rather quickly. A hint would be appreciated.

Regards,
Alan

juggledad Dec 23, 2014 04:56 AM

Custom fields are part of Wordpress. When you edit the page, if you don't see the custom fields section, click the screen options - top right of the screen - and check the option on

Alan_OldStudent Dec 23, 2014 04:34 PM

Quote:

Originally Posted by juggledad (Post 111035)
Custom fields are part of Wordpress. When you edit the page, if you don't see the custom fields section, click the screen options - top right of the screen - and check the option on

Thanks JD,

I'm sure I'll have further questions later on.


Regards,

Alan OldStudent
The unexamined life is not worth living—Socrates
Gracias a la vida, que me ha dado tanto—Violeta Parra

DanDan Feb 25, 2015 09:53 AM

I simply cannot get this to work. Perhaps I am not using it right. Is it to show the blog posts on the post page in three columns rather than one post on top of another horizontially?

I am using the latest version of wordpress and the latest version of Atahualpa on a godaddy server, using the template_multi_column_custom_query template, have added the custom field number_of_columns and value 3, added the css and cannot get it to work. When it did not work I deactivated all the plugins, didn't help.

What did I forget to do?

If this is not the right mod, can you direct me to a mod that will do what I need to do?

Thanks,

Dan

juggledad Feb 25, 2015 11:01 AM

It's a multi column custom query template
see http://forum.bytesforall.com/showthread.php?t=15718

DanDan Feb 25, 2015 07:01 PM

I see my error, I was trying to get the blog page to go into three columns, not a regular page. It works now.

Thanks!

Dan


All times are GMT -6. The time now is 11:45 AM.

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