• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Jummul

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 1 through 20 (of 26 total)
1 2 →
  • Author
    Posts
  • February 27, 2018 at 1:55 am in reply to: Menu opening speed (Genesis Sample Theme) #217046
    Jummul
    Member

    Thanks Victor, that was it!

    April 3, 2014 at 12:38 pm in reply to: Exclude Uncategorized from [post_categories] #98328
    Jummul
    Member

    Yeah 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).

    September 8, 2013 at 2:19 am in reply to: Make responsive unresponsive #61321
    Jummul
    Member

    Something else, I now notice that the viewport still seems to be active on Android.

    September 8, 2013 at 2:14 am in reply to: Make responsive unresponsive #61319
    Jummul
    Member

    Thanks! 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?

    August 12, 2013 at 12:29 pm in reply to: Scroll content over the header #55833
    Jummul
    Member

    That 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.

    August 6, 2013 at 3:25 pm in reply to: Style first post differently #54452
    Jummul
    Member

    I 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.

    August 4, 2013 at 11:20 am in reply to: Style first post differently #54135
    Jummul
    Member

    No 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!

    August 4, 2013 at 10:49 am in reply to: Style first post differently #54125
    Jummul
    Member

    Thanks 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..

    August 4, 2013 at 3:36 am in reply to: Style first post differently #54066
    Jummul
    Member

    I 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?

    July 31, 2013 at 12:33 am in reply to: Highlighting author's comments #53326
    Jummul
    Member

    Works like a charm! Thanks a LOT! Too bad this forum doesn't have Karma.

    July 30, 2013 at 8:39 am in reply to: Highlighting author's comments #53210
    Jummul
    Member

    I've made a test page here:

    Uitslagen enquête A Cup of Life

    You can logon with the password 'test' to view the comments. 'Shifra' is the admin user and author of all the websites posts.

    July 30, 2013 at 3:29 am in reply to: Highlighting author's comments #53183
    Jummul
    Member

    Ah, 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.

    July 29, 2013 at 12:59 pm in reply to: Highlighting author's comments #53091
    Jummul
    Member

    Works amazing! Thanks so much, I can handle it from here. Just one thing: what's the difference between bypostauthor 'p' and bypostauthor?

    July 8, 2013 at 12:47 am in reply to: Grid style thumbnail view for category pages #49765
    Jummul
    Member

    I 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..

    July 7, 2013 at 2:26 pm in reply to: Grid style thumbnail view for category pages #49681
    Jummul
    Member

    Neither can I..

    And is it possible to style the category pages in such a way that they only show post excerpts and thumbnails?

    July 7, 2013 at 1:01 pm in reply to: Grid style thumbnail view for category pages #49670
    Jummul
    Member

    hmm. Are there options that don't require me to buy more? 🙂

    July 7, 2013 at 12:31 pm in reply to: Grid style thumbnail view for category pages #49666
    Jummul
    Member

    Tried 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 🙂

    July 6, 2013 at 8:42 am in reply to: Change header size #49515
    Jummul
    Member

    Thanks! I noticed when clearing cache in chrome. I thought I did that already. Thanks for the help!

    July 6, 2013 at 5:30 am in reply to: Change header size #49496
    Jummul
    Member

    I had changed that also (forgot to mention).

    The website in question is acupoflife.nl

    July 6, 2013 at 4:00 am in reply to: Unable to remove excessive line breaks #49486
    Jummul
    Member

    I'm bumping this. My issue still stands and I'm hoping someone has the solution.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 26 total)
1 2 →

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble