• 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

pjwdesign

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 - 21 through 40 (of 42 total)
← 1 2 3 →
  • Author
    Posts
  • September 14, 2015 at 5:21 am in reply to: Custom text for Post listing #165397
    pjwdesign
    Member

    Thanks for reply Brad. Perhaps dd not explain clearly. The 'archive intro' intro is for the whole page/category? I was hoping to make each post intro unique not just an extract from the post detail page. Hope that's clear

    September 8, 2015 at 1:04 am in reply to: Beautiful Pro Banner image just on home page #164882
    pjwdesign
    Member

    Many thanks Brad that's perfect.

    September 3, 2015 at 12:08 pm in reply to: Change Read more… when using tag #164488
    pjwdesign
    Member

    That's perfect - many thanks Davinder

    September 3, 2015 at 9:30 am in reply to: Change Read more… when using tag #164451
    pjwdesign
    Member

    Thanks for reply - its not on home tho. Standard category listing page.

    September 3, 2015 at 9:15 am in reply to: Change Read more… when using tag #164445
    pjwdesign
    Member

    Thank you for response - had tried this but odd its not working for me - the Child Theme is News Pro.

    September 1, 2015 at 12:34 pm in reply to: Can a specific navigation link be targeted with a class? #164231
    pjwdesign
    Member

    That's perfect many thanks.

    August 28, 2015 at 9:16 am in reply to: Altitude Pro border at bottom of first section #163898
    pjwdesign
    Member

    Correction..relative not absolute

    .greenh {
    position: relative

    August 28, 2015 at 8:37 am in reply to: Altitude Pro border at bottom of first section #163886
    pjwdesign
    Member

    Thanks for feedback - odd I could not see itin FF and Chrome on a mac...however

    I think I have fixed it.....I created a div

    .greenh {
    position: fixed;
    height: 100px;
    background-color:#B6BF00;
    bottom: 0;
    width: 100%;
    }
    Then inserted it in Front-page.php

    genesis_widget_area( 'front-page-1', array(
    'before' => '<div id="front-page-1" class="front-page-1"><div class="image-section"><div class="flexible-widgets widget-area' . altitude_widget_area_class( 'front-page-1' ) . '"><div class="wrap">',
    'after' => '</div></div></div><div class="greenh"></div></div>',

    August 28, 2015 at 7:41 am in reply to: Altitude Pro border at bottom of first section #163880
    pjwdesign
    Member

    Thank you for taking the time - I have tried this and now added !important. Still no luck.

    I have a test set up at - added that style inline.

    http://pjwpreview.co.uk/

    June 15, 2015 at 11:41 am in reply to: Removing entry_content from archive #156279
    pjwdesign
    Member

    Thank you for such a quick response - simple and works perfectly.

    April 16, 2015 at 10:16 pm in reply to: Create a year archive for each category #148175
    pjwdesign
    Member

    Just to add this would be to have an archive of year for EACH category separately.

    March 2, 2015 at 11:39 am in reply to: Education – remove posts or static page from home page #142873
    pjwdesign
    Member

    Excellent that worked. many thanks.

    June 4, 2014 at 9:04 am in reply to: 100% width genesis responsive slider help please! #108064
    pjwdesign
    Member

    Ok that worked many thanks

    March 3, 2014 at 7:46 am in reply to: Enterprise – Pro – White border around Genesis responsive slider #93191
    pjwdesign
    Member

    Perfect. Many thanks, much appreciated.

    October 9, 2013 at 10:37 am in reply to: Remove the tagline from posts in eleven40 #65980
    pjwdesign
    Member

    Thanks for patience Brad- I did try without the ! - will take a look at the suggested link

    October 9, 2013 at 8:04 am in reply to: Remove the tagline from posts in eleven40 #65966
    pjwdesign
    Member

    I did (see below) this in place now....again not showing on home page as well as pages/posts
    //* Reposition the site description
    remove_action( ‘genesis_site_description’, ‘genesis_seo_site_description’ );
    add_action( ‘genesis_before_content_sidebar_wrap’, ‘sp_custom_header’ );
    function sp_custom_header() {if ( !is_front_page() ) {
    ?>
    <h2 class="site-description" itemprop="description">Header here</h2>
    <?php
    }
    }

    If it helps url of site is jrabutler.com. Many thanks

    October 9, 2013 at 7:42 am in reply to: Remove the tagline from posts in eleven40 #65962
    pjwdesign
    Member

    Many Thanks Brad getting nearer....Both !is_front_page() and !is_single() (used seperately) remove header from posts and pages which is great but also from the Home Page.....

    //* Reposition the site description
    remove_action( ‘genesis_site_description’, ‘genesis_seo_site_description’ );
    add_action( ‘genesis_before_content_sidebar_wrap’, ‘sp_custom_header’ );
    function sp_custom_header() {if ( !is_front_page() ) {
    ?>
    <h2 class="site-description" itemprop="description">Header Here</h2>
    <?php
    }
    }

    October 9, 2013 at 6:49 am in reply to: Remove the tagline from posts in eleven40 #65948
    pjwdesign
    Member

    Thank you Brad I tried the following..(below)....this caused the pages to be blank (tagline still in posts) am I doing something wrong with the code? Many thanks

    //* Reposition the site description
    remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
    add_action( 'genesis_before_content_sidebar_wrap', 'sp_custom_header' );
    function sp_custom_header() {if (!is_page() || !single() ) {
    ?>
    <h2 class="site-description" itemprop="description">Header Here</h2>
    <?php
    }
    }

    October 3, 2013 at 6:07 am in reply to: Eleven40 tagline just on home page #65193
    pjwdesign
    Member

    Update - whilst trying to customise it I found the solution for pages but not posts {if (!is_page()) { ......How can I make this work for posts as well..many thanks

    //* Reposition the site description
    remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
    add_action( 'genesis_before_content_sidebar_wrap', 'sp_custom_header' );
    function sp_custom_header() {if (!is_page()) {
    ?>
    <h2 class="site-description" itemprop="description">Good communication persuades. Great communication convinces.<br /> Invest in the best.</h2>
    <?php
    }
    }

    September 25, 2013 at 6:37 am in reply to: Have more control over the top text in Eleven 40 #64066
    pjwdesign
    Member

    Thanks Brad I got there in the end - initially I just wanted to ad a <br> tag but good start.

    //* Reposition the site description
    remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
    add_action( 'genesis_before_content_sidebar_wrap', 'sp_custom_header' );
    function sp_custom_header() {
    ?>
    <h2 class="site-description" itemprop="description">All great companies have a great story.... and know how to tell it. <br >We’ll help you tell yours.</h2>
    <?php
    }

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 42 total)
← 1 2 3 →
« Previous Page

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 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