Forum Replies Created
-
AuthorPosts
-
Jummul
MemberThanks Victor, that was it!
Jummul
MemberYeah but that's not the point. I want the category uncategorized because let's face it; some posts are uncategorizable. I want to be able to hide the category Uncategorized from the public (at léast in the post-meta).
Jummul
MemberSomething else, I now notice that the viewport still seems to be active on Android.
Jummul
MemberThanks! That did the trick.
But my header, the blue linen background, doesnt seem to adjust well. I notice the brown linen on the top right side, while the blue linen should be covering the entire header. Is this fixable?
Jummul
MemberThat is exactly what I'm trying to do! Too bad it is such a surgery. And is it possible to make the blue-linen (just the background, and the light-blue bottom border) fixed? I'd love to see my posts scrolling over it.
Jummul
MemberI tried:
global $more; if($post == $posts[0]) $more = 0; else $more = 1; the_content();and
if($post == $posts[-1]) $more = 0;and I tried widgitizing the home page and adding a Featured Post
and I tried
if ($more == -1) { //do not use the more tag on the first one. the_content(); $more = 0; //prevent this from happening again. use the more tag from now on. } else { //use the more tag the_content(__('Read more...')); }And I also tried repeating all of this with all plugins disabled. Still. No. Luck.
I think I'll become a farmer and live a happy life.
Jummul
MemberNo joy. When I change -1 to 1 it ignores the More Tag on the posts. To me this seems like the posts are not correctly numbered - it sees all the posts as the first post. I'm not sure though.
Thanks for your time and help by the way!
Jummul
MemberThanks Debra for your easy to follow instructions, yes that worked. But not quite.
For whatever reason the first post still has an active More Tag.
if($post == $posts[0]) $more = 0;just doesn't seem to work..Jummul
MemberI might understand your answer wrong, or you might understand the question wrong - I'm not sure. Your answer doesn't the way to go. Let me clarify.
I use Pretty Young Thing, yes. BUT! My home.php doesn't look anything like the original. I wanted to disable the grid-style layout of Pretty, and just return to the standard genesis loop in which you just have the_content from every post. No grid, no excerpts.
In order to keep my homepage clean I use a more tag on posts. But I want the more tag to be ignored on the first post of the first page only!
My home.php now looks like this:
<?php // remove_action( 'genesis_loop', 'genesis_do_loop' ); // add_action( 'genesis_loop', 'pretty_grid_loop_helper' ); /** Remove the post meta function for front page only */ remove_action( 'genesis_after_post_content', 'genesis_post_meta' ); genesis();Now on the support forums I've found a similar question, http://wordpress.org/support/topic/can-wp-ignore-lt-more-gt-tag-on-most-recent-post,
But when I use their advice, and add
global $more; if($post == $posts[0]) $more = 0; else $more = 1; the_content();before the loop, nothing happens.
When I change $post[0] to [1], thus having
global $more; if($post == $posts[1]) $more = 0; else $more = 1; the_content();ALL the posts ignore the More Tag I've given them.
So, the ignoring-of-the-more-tag-part works. Now for the making-sure-it-only-applies-to-the-first-post-of-the-first-page-part.
Any ideas?
Jummul
MemberWorks like a charm! Thanks a LOT! Too bad this forum doesn't have Karma.
Jummul
MemberI've made a test page here:
You can logon with the password 'test' to view the comments. 'Shifra' is the admin user and author of all the websites posts.
Jummul
MemberAh, thanks! Really helped me on this one.
But I seem to be unable to style the author comments like I want.
I added:
.comment .bypostauthor {
background: #FFE9D6;
border-style: dotted;
border-width: 1px;
border-color: #FFBC82;
}This works amazing for when my comment is a reply to someone else, but what if my comment is a comment to the post directly? It is then styled exactly as all the other comments.
Jummul
MemberWorks amazing! Thanks so much, I can handle it from here. Just one thing: what's the difference between bypostauthor 'p' and bypostauthor?
Jummul
MemberI tought so too. Onyl when I set content archives to "excerpt", my blog itself also shows excerpts.
I want my blog to show full posts, and all the other pages to show excerpts..
Jummul
MemberNeither can I..
And is it possible to style the category pages in such a way that they only show post excerpts and thumbnails?
Jummul
Memberhmm. Are there options that don't require me to buy more? 🙂
Jummul
MemberTried it. Next to the fact tat it didn't work there was just oo much mumbo jumbo in the plugin. As I said, I just want pictures and titles. No lightbox or fancy borders 🙂
Jummul
MemberThanks! I noticed when clearing cache in chrome. I thought I did that already. Thanks for the help!
Jummul
MemberI had changed that also (forgot to mention).
The website in question is acupoflife.nl
Jummul
MemberI'm bumping this. My issue still stands and I'm hoping someone has the solution.
-
AuthorPosts