Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 05-10-2010, 03:37 PM   #1
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Phloggin' WP theme + YAPB Plugin question. If you use either please help!

I've been working on a photoblog using the Phloggin' theme and YAPB Plugin.

But on my main page I can only display 7 posts.

If you use the theme you will probably know what I mean, the big top post and 6 little one's underneath.

How do I change it?

I tried the default wordpress setting thing.

"front page displays at most [box] posts on the main page" And set it to 10 and 13 and got no luck from it.

Where/how do I change it?

Thanks in advance!
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 03:40 PM   #2
awxm
Confirmed User
 
Industry Role:
Join Date: Aug 2009
Posts: 819
Not used it myself but if the wordpress settings don't fix it, then I'd be looking in the source code of index.php of the theme.
__________________
.
awxm is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 03:49 PM   #3
TheDA
Confirmed User
 
Industry Role:
Join Date: May 2006
Posts: 4,665
Quote:
Originally Posted by Si View Post
I've been working on a photoblog using the Phloggin' theme and YAPB Plugin.

But on my main page I can only display 7 posts.

If you use the theme you will probably know what I mean, the big top post and 6 little one's underneath.

How do I change it?

I tried the default wordpress setting thing.

"front page displays at most [box] posts on the main page" And set it to 10 and 13 and got no luck from it.

Where/how do I change it?

Thanks in advance!
Nothing on the "Appearance" menu for it?
TheDA is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 03:54 PM   #4
Jdoughs
Confirmed User
 
Jdoughs's Avatar
 
Industry Role:
Join Date: Mar 2004
Location: Great White North
Posts: 5,794
Quote:
Originally Posted by Si View Post
I've been working on a photoblog using the Phloggin' theme and YAPB Plugin.

But on my main page I can only display 7 posts.

If you use the theme you will probably know what I mean, the big top post and 6 little one's underneath.

How do I change it?

I tried the default wordpress setting thing.

"front page displays at most [box] posts on the main page" And set it to 10 and 13 and got no luck from it.

Where/how do I change it?

Thanks in advance!

It's inside the functions.php

PHP Code:
    $recent_photos = new WP_Query('showposts=7'); 
__________________
LinkSpun - Premier Adult Link Trading Community - ICQ - 464/\281/\250
Be Seen By New Webmasters/Affiliates * Target out webmasters/affiliates based on niches your sites are for less than $20 a month.
AmeriNOC - Proudly hosted @ AmeriNOC!
Jdoughs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 04:00 PM   #5
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Quote:
Originally Posted by FruitPanda View Post
Not used it myself but if the wordpress settings don't fix it, then I'd be looking in the source code of index.php of the theme.
I've looked through that.

Can't make it out to be honest. I'm usually ok altering code here and there but this I can't figure out
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 04:01 PM   #6
TheDA
Confirmed User
 
Industry Role:
Join Date: May 2006
Posts: 4,665
Try line 4 in index.php

$current_post = new WP_Query("showposts=7");
TheDA is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 04:02 PM   #7
Jdoughs
Confirmed User
 
Jdoughs's Avatar
 
Industry Role:
Join Date: Mar 2004
Location: Great White North
Posts: 5,794
Quote:
Originally Posted by TheDA View Post
Try line 4 in index.php

$current_post = new WP_Query("showposts=7");
That makes sense, I thought he tried the index.php already

EDIT, I think that index.php call is only if not shwoing the photoblog option
__________________
LinkSpun - Premier Adult Link Trading Community - ICQ - 464/\281/\250
Be Seen By New Webmasters/Affiliates * Target out webmasters/affiliates based on niches your sites are for less than $20 a month.
AmeriNOC - Proudly hosted @ AmeriNOC!

Last edited by Jdoughs; 05-10-2010 at 04:04 PM..
Jdoughs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 04:03 PM   #8
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Thanks Jdoughs!!!

Your the man
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 04:04 PM   #9
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Thanks Jdoughs!!!

Your the man
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 04:05 PM   #10
TheDA
Confirmed User
 
Industry Role:
Join Date: May 2006
Posts: 4,665
Quote:
Originally Posted by Jdoughs View Post
That makes sense, I thought he tried the index.php already

EDIT, I think that index.php call is only if not shwoing the photoblog option
I cheated. I looked up the site for the theme, it tells you on there

Edit:I must have picked it up wrong.
TheDA is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 04:08 PM   #11
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Quote:
Originally Posted by TheDA View Post
Try line 4 in index.php

$current_post = new WP_Query("showposts=7");
I'll do that aswell just incase.

Couldn't see that when I looked though
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-10-2010, 04:11 PM   #12
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Ok problem solved!

Thanks for your help everyone
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.