• 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

manavecplan

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 52 total)
1 2 3 →
  • Author
    Posts
  • February 15, 2018 at 1:41 am in reply to: Custom Archive Template #216551
    manavecplan
    Member

    Thanks for responding Sridhar!

    I already have a grid for posts on /blog. What I wanted to do was create a grid for posts on /blog/archives.

    While I couldn't get a grid, creating a better looking Archive for posts (from the default) was easier than I expected.

    Here's how I created a better looking default Archive page in Authority Pro:

    1. Create a page called Archive.
    2. Select the Blog Template.
    3. Add the a Custom HTML widget (linking to the Archive page) to one of the Front Page widgets.

    Result

    I'm pretty that's not actually the way to do it but I guess it works.

    April 4, 2017 at 1:36 am in reply to: Return to Blog link from Single Post #204258
    manavecplan
    Member

    Works like a dream, Brad!

    Added a class in there for styling and it's all magic now... 🙂

    April 3, 2017 at 7:18 am in reply to: Single post design #204217
    manavecplan
    Member

    Your solution worked perfectly Victor! Danke!

    March 20, 2017 at 3:26 am in reply to: Styling Post Title #203431
    manavecplan
    Member

    Thanks Brad!

    Quick followup question: would that mean that I need a separate function for each post I write?

    January 4, 2017 at 5:29 am in reply to: Custom Ordered List #198734
    manavecplan
    Member

    Hey Victor,

    Got around to testing it today...

    The styling worked just fine with the .entry-content .listicled selector.

    Thanks much for helping out! 🙂

    December 30, 2016 at 3:40 am in reply to: Custom Ordered List #198482
    manavecplan
    Member

    Hey Victor,

    Tried both options but neither have worked out...

    Nothing seems to be hitting the numbers in the ordered list at all...

    December 28, 2016 at 10:47 am in reply to: Custom Ordered List #198359
    manavecplan
    Member

    Hey Victor,

    Fair point...

    Rolled up a dummy post below which has the same styling.

    Test

    December 20, 2016 at 3:18 pm in reply to: Single Post Container Width #197926
    manavecplan
    Member

    Perfect!

    Removing the margins sorted it right out...

    Thanks a ton Victor! 🙂

    July 22, 2016 at 10:37 am in reply to: Page Layout #190013
    manavecplan
    Member

    You, sir, are a star!

    As usual, worked like a charm!

    Thank you ever so much... 🙂

    July 6, 2016 at 10:24 am in reply to: Sub-header anchor links #188962
    manavecplan
    Member

    *bump*

    June 29, 2016 at 1:00 pm in reply to: Sub-header anchor links #188593
    manavecplan
    Member

    That question provided a great bit of learning Christoph! 😀

    So, I checked the console and the network both...

    When I check the console, it gave me the following error: Uncaught SyntaxError: Unexpected token < anchor.js?ver=1.1:5

    When I tab over too Network, it tells me that this is a 304 Not Modified error; which apparently isn't an error at all.

    So, so close...

    function add_anchors() {
          wp_enqueue_script( 'anchora_script', get_stylesheet_directory_uri() . '/js/anchor.js', array ( 'jquery' ), 1.1, true);
    	}
    add_action( 'wp_enqueue_scripts', 'add_anchors' );
    
    June 28, 2016 at 11:47 am in reply to: Sub-header anchor links #188459
    manavecplan
    Member

    No go... 🙁

    Current code looks like this but neither function fires:

    function add_anchors() {
          wp_enqueue_script( 'anchor_script', get_template_directory_uri() . '/js/anchor.js', array ( 'jquery' ), 1.1, true);
          wp_enqueue_script('anchor_script');
    	}
    add_action( 'wp_enqueue_scripts', 'add_anchors' );
    
    function adda_anchors() {
          wp_enqueue_script( 'anchora_script', get_stylesheet_directory_uri() . '/js/anchor.js', array ( 'jquery' ), 1.1, true);
          wp_enqueue_script('anchora_script');
    	}
    add_action( 'wp_enqueue_scripts', 'adda_anchors' );

    Also, to be clear, the js file is inside the js folder inside the Genesis Child Theme folder

    June 25, 2016 at 5:50 am in reply to: Read More Styling #188268
    manavecplan
    Member

    Hey Christoph,

    Your post helped me dig a bit further and helped me solve it! Works like a charm now... 🙂

    All I needed to do was add a class to the PHP code that I'm using and target it accordingly.

    The amended PHP would be:

    //Adding a Read More for manual excerpts
    function manual_excerpt_more( $excerpt ) {
    	$excerpt_more = '';
    	if( has_excerpt() ) {
        	$excerpt_more = '&nbsp;<a class="manual-excerpt-more-link" href="' . get_permalink() . '" rel="nofollow">READ MORE ?’</a>';
    	}
    	return $excerpt . $excerpt_more;
    }
    add_filter( 'get_the_excerpt', 'manual_excerpt_more' );

    The amended CSS would be:

    a.manual-excerpt-more-link {
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "Montserrat-SemiBold";
    text-transform: uppercase;
    padding:5px 0px 0px 0px;
    letter-spacing:1px;
    background:none;
    display:block;
    text-decoration: none;
    /*text-align: center;*/
    }
    June 16, 2016 at 7:41 am in reply to: Post layout #187682
    manavecplan
    Member

    Hey Marcy,

    That was absolutely spot on!

    Thank you ever so much! 🙂

    June 16, 2016 at 6:02 am in reply to: Get rid of Site-Title underline for Genesis child theme #187675
    manavecplan
    Member

    Looks just fine to me, no underline visible... check: http://i.imgur.com/HiklHpL.png?1

    However, to answer the question, the code I'd use is

    .site-title {
    	text-decoration: none;
    }
    June 14, 2016 at 7:59 am in reply to: Post layout #187526
    manavecplan
    Member

    Hey Marcy,

    Thanks so much! Almost there...

    This is what I'm currently using:

    /*ASIDE HEADER*/
    .format-aside .entry-header .entry-meta .entry-title {
        display: none;
    }

    There's just one niggle in that the title of the aside can be seen i.e. the .entry-title isn't kicking in.

    How do I knock off the Aside title as well?

    June 3, 2016 at 4:11 am in reply to: Post Image formatting #186833
    manavecplan
    Member

    Hey Christoph,

    Thank you ever so much!! That worked just perfectly...looks absolutely beautiful! 🙂

    May 18, 2016 at 5:15 am in reply to: Entry Meta Layout #185823
    manavecplan
    Member

    Hey Christoph,

    Thanks for chiming in!

    That's an elegant solution for sure...I think using the plugin means this is more a PHP resolve than anything else?

    Here's the thing, I'm averse to using a plugin for just one bit of visual treatment... 🙁

    May 2, 2016 at 11:04 pm in reply to: Custom PHP file #184870
    manavecplan
    Member

    Perfect! Thanks a ton Victor....that worked like a charm! 🙂

    April 4, 2016 at 12:11 am in reply to: CSS for a button #182852
    manavecplan
    Member

    Sorry, I meant the class of the button is "button search"

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

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