• 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

dmcleod87

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 64 total)
1 2 3 4 →
  • Author
    Posts
  • July 24, 2016 at 12:47 pm in reply to: moved post/page titles, post titles disappeared on archive page #190035
    dmcleod87
    Member

    thanks for sharing...glad it worked for you but unfortunately that wasn't the solution i was after.

    with my original code above, this is what the posts page currently looks like.. It has the page title in the banner, but the post title is missing, it should be in the space above the date. in this screenshot of the individual post page, the title is in the banner as it should be.

    can anyone point out what i'm doing wrong? adding add_action( 'genesis_entry_header', 'genesis_do_post_title' ); adds the post title back in as seen here but then it's duplicated on normal pages as seen here

    July 21, 2016 at 7:59 pm in reply to: moved post/page titles, post titles disappeared on archive page #189981
    dmcleod87
    Member

    no sorry i never did figure it out...i've deleted the screenshot link by accident too...if i remember i'll post another later in case someone comes across a solution.

    March 18, 2016 at 11:48 pm in reply to: moved post/page titles, post titles disappeared on archive page #181836
    dmcleod87
    Member

    no ideas on this problem? here is a screenshot to help visualise what i'm referring to - screenshot

    any help would be greatly appreciated!

    February 25, 2016 at 5:00 pm in reply to: adding pagination to custom post type page template #179925
    dmcleod87
    Member

    figured it out. using the tutorial i mentioned above and following brad's advice, i added parts of the snippet to my custom template, rather than to functions.php

    hope this helps someone else in the future!

    <?php
    /*
    Template Name: Portfolio Item
    */
    
    remove_action('genesis_loop', 'genesis_do_loop');
    
    add_action('genesis_loop', 'custom_loop');
    
    function custom_loop() {
    
        global $paged;
        $args = array('post_type' => 'portfolio');
    
    	genesis_markup( array(
    			'html5'   => '<div %s>',
    			'xhtml'   => '<div class="navigation">',
    			'context' => 'adjacent-entry-pagination',
    	) )
    
        ?>
    
    	<article itemtype="http://schema.org/CreativeWork" itemscope="itemscope" class="post-<?php print $pageid; ?> page type-page status-publish entry">
    	<div class="entry-content" itemprop="text">
    
    	<div class="custom-page-content">
    	<?php if(have_posts()) : while(have_posts()) : the_post();
    
    	echo '<div class="intro-text-wrapper">';
    
    	/* Display the page title */
    	echo '<h1 class="page-title"> ' . get_field('project_page_title') . ' </h1>';
    
    	/* The following code displays the Advanced Custom Fields meta boxes */
    	echo '<div class="intro-text"> ' . get_field('project_intro_text') . ' </div>';
    
    	echo '</div>';
    
    	/* Show page content below intro text */
    	do_action( 'genesis_entry_content' );
    
    	// Add pagination Portfolio Post Type
    	echo '<div class="pagination-previous alignleft">';
    	previous_post_link();
    	echo '</div>';
    
    	echo '<div class="pagination-next alignright">';
    	next_post_link();
    	echo '</div>';
    
    	echo '</div>';
    
    	endwhile; endif; ?>
    
    	</div></div></article>
    
    	<?php }
    
    genesis();
    February 20, 2016 at 2:05 am in reply to: adding pagination to custom post type page template #179451
    dmcleod87
    Member

    hi brad,

    it's a single-portfolio.php template. is this snippet what i would be looking for? https://wpbeaches.com/add-custom-post-type-navigation-links-in-genesis/

    i tried it just then and no luck.

    March 27, 2015 at 1:58 am in reply to: new portfolio based on modern portfolio #145779
    dmcleod87
    Member

    from memory you will need to combine it with the Types plugin to setup a custom post type. sorry i can't be of more assistance at the moment as i'm away at the moment...maybe try the plugin documentation?

    March 27, 2015 at 1:06 am in reply to: new portfolio based on modern portfolio #145775
    dmcleod87
    Member

    hi RavenManiac no unfortuantely i didn't. earlier in this thread there is a link to the plugin i ended up going with to setup my portfolio. try that instead...worked perfect for me and have used it on other clients sites.

    November 21, 2014 at 2:07 am in reply to: logo stretched safari/ipad #132355
    dmcleod87
    Member

    thanks! i don't know how i missed that...needed a pair of fresh eyes!

    October 26, 2014 at 12:16 am in reply to: full width background behind home widgets #129244
    dmcleod87
    Member

    thanks for clearing that up...i'm still getting my head arounds hooks and genesis as a framework so thanks again for the help!

    October 26, 2014 at 12:07 am in reply to: full width background behind home widgets #129242
    dmcleod87
    Member

    that did the trick! i removed the css temporarily as i was playing around and forgot to add it back in so that's why it was missing.

    can you please explain the difference between the two add_action lines above, just so i can get a better understanding?

    thanks so much for your help genwrock!

    October 25, 2014 at 11:45 pm in reply to: full width background behind home widgets #129239
    dmcleod87
    Member

    thanks for the quick reply @genwrock! unfortunately the background is not full width and is contained within a wrap class still...any ideas?

    June 11, 2014 at 2:46 am in reply to: new portfolio based on modern portfolio #109332
    dmcleod87
    Member

    hi @Dag-Erling it might be best if you consult the documentation that came with the plugin.

    May 15, 2014 at 2:39 am in reply to: new portfolio based on modern portfolio #105253
    dmcleod87
    Member

    thanks for the kind words everyone!

    the icons are custom made SVG icons which change colour on hover via css.

    April 17, 2014 at 8:01 pm in reply to: can't access sub menus ipad/iphone #101085
    dmcleod87
    Member

    hi susan,

    never resolved this...tried searching the forums and via google but no luck!

    March 25, 2014 at 12:04 am in reply to: new portfolio based on modern portfolio #96525
    dmcleod87
    Member

    thanks for the kind words lynne! i thought i fixed that button but obviously not...thanks for notifying me!

    March 16, 2014 at 3:56 pm in reply to: menu to take up full width of container #95211
    dmcleod87
    Member

    hi chris,

    here is the live site, you may be able to use Firebug or Code Inspector to check out the CSS. I can't remember the exact fix that Lynne used.

    hope this helps.

    February 25, 2014 at 3:32 pm in reply to: new portfolio based on modern portfolio #92347
    dmcleod87
    Member

    no i attempted to create a portfolio using this tutorial but had some issues with getting it to display right with this child theme. in the end i went with this plugin which works great! hope this helps!

    February 23, 2014 at 8:15 pm in reply to: new portfolio based on modern portfolio #92066
    dmcleod87
    Member

    oh and feel free to make comments on how i could improve the site...i'm open to suggestions!

    January 12, 2014 at 9:22 pm in reply to: submit button looks different iphone/ipad – modern portfolio #84897
    dmcleod87
    Member

    that did the trick...thanks @nutsandbolts much appreciated!

    January 7, 2014 at 5:01 pm in reply to: issues with adding filterable portfolio modern portfolio theme #83908
    dmcleod87
    Member

    ah ok that did the trick...thanks so much!

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

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