• 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

lindebjerg

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 31 total)
1 2 →
  • Author
    Posts
  • March 22, 2015 at 1:57 am in reply to: lost Genesis settings in backend? #145173
    lindebjerg
    Member

    Hi Susan, I could not believe is was only such a simple setting:-)
    How come it was turned off? it´s never happened on a update before...
    but it´s not really important now when I know how to turn them back on again; thank you Susan.

    June 17, 2014 at 12:35 am in reply to: how to turn off Post Info, but keep Post Meta? #110128
    lindebjerg
    Member

    Hi Brad,
    perfect I got it now. I used this code

    .single-portfolio .content .entry-header .entry-meta {
    display: none;
    }

    and now it rocks;)

    Thanks,
    Jesper

    April 14, 2014 at 12:24 am in reply to: Translate "Sorry, no content matched your criteria." #100133
    lindebjerg
    Member

    resolved;)

    March 23, 2014 at 2:01 pm in reply to: Winning Agent Pro theme #96239
    lindebjerg
    Member

    Thanks Brad, I will give it a try by David;)

    March 23, 2014 at 3:54 am in reply to: Portfolio Post Type in Ambiance Pro Theme #96146
    lindebjerg
    Member

    You are so right! But I don't need to be flexible, I just need a working portfolio, when it is setup I will not change it at all.

    But I am not good in code, so I try to use a good written tutorial. I was hoping to get some help here with the 2 problems?

    March 22, 2014 at 2:37 pm in reply to: Portfolio Post Type in Ambiance Pro Theme #96092
    lindebjerg
    Member

    Why better? it does not look the same.
    Sridhar have build in a circle with and glass-icon. When the image is clicked, the full featured image will be shown in a lightbox. Each image will have a transparent overlay caption at the bottom on which first few characters of the excerpt will be shown.

    single portfolio works fine, and the portfolio backend section works fine.

    archive-portfolio.php
    I have 2 problems, I think. How unload the second picture? and how to make the lightbox work?

    <?php
    /**
     * This file adds the custom portfolio post type archive template.
     *
     */
    
    //* Force full width content layout
    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
    
    //* Remove the breadcrumb navigation
    remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
    
    //* Remove the post info function
    remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
    
    //* Remove the post content
    remove_action( 'genesis_entry_content', 'genesis_do_post_content' );
    
    //* Remove the post image
    remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
    
    //* Add portfolio body class to the head
    add_filter( 'body_class', 'sk_add_portfolio_body_class' );
    function sk_add_portfolio_body_class( $classes ) {
       $classes[] = 'portfolio-archive-page';
       return $classes;
    }
    
    //* Add featured image below post title with
    add_action( 'genesis_entry_header', 'sk_portfolio_grid' );
    function sk_portfolio_grid() {
    
    	if ( $image = genesis_get_image( 'format=url&size=portfolio' ) ) {
    
    		$my_caption = get_the_excerpt();
    		// If you do not want to show the caption uncomment the line below
    		// $my_caption = '';
    
    		$fullimage = genesis_get_image( 'format=url');
    
    		$my_url = get_permalink();
    
    		// Limit the number of characters so caption text fits in the bottom overlay
    		$my_caption_short = substr($my_caption, 0, 25);
    
    		if ( $my_caption != '' ) {
    
    			printf( '<div class="portfolio-image-wrapper">
    						<div class="portfolio-image">
    							<a href="%s" rel="prettyPhoto[pp_gal]"><img src="%s" alt="%s" class="overlay" /></a>
    						</div>
    
    						<div class="overlay-text">
    							<a href="%s">%s... <em>Read more</em> &raquo;</a>
    						</div>
    					</div>', $fullimage, $image, the_title_attribute( 'echo=0' ), $my_url, $my_caption_short );
    		}
    		else {
    			printf( '<div class="portfolio-image">
    						<a href="%s" rel="prettyPhoto[pp_gal]"><img src="%s" alt="%s" class="overlay" /></a>
    					</div>', $fullimage, $image, the_title_attribute( 'echo=0' ) );
    		}
    
    	}
    
    }
    
    //* Remove the post meta function
    remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
    
    genesis();
    March 6, 2014 at 1:26 am in reply to: How can I show the site-description in header on outreach-pro #93629
    lindebjerg
    Member

    Perfect Anitac, works;)

    February 23, 2014 at 1:52 am in reply to: header background to white? #91998
    lindebjerg
    Member

    Hallo Davinder,
    if I do so, the whole site header, incl. Navigation, site-description and more did turn white.
    But I only want the background behind the Logo to turn white?

    Now I got it right, I wrote this into the CSS:

    .site-avatar {
    	background-color: #fff!important;		
    }

    Thanks and best Regards,
    jesper

    January 14, 2014 at 3:21 am in reply to: hide sub footer left and right widgets on a few pages? #85116
    lindebjerg
    Member

    if I do so, the site turns all blank ;(

    January 13, 2014 at 4:15 am in reply to: hide sub footer left and right widgets on a few pages? #84933
    lindebjerg
    Member

    I have tried to inset your code into the function.php, but it did not change anything?

    January 12, 2014 at 12:35 pm in reply to: Outreach Pro with Portfolio #84791
    lindebjerg
    Member

    perfect,
    thanks Robin

    December 17, 2013 at 8:24 am in reply to: Magazine Pro Theme Portfolio #79756
    lindebjerg
    Member

    First time it did not work, I have just send you the theme;)

    December 17, 2013 at 5:36 am in reply to: Magazine Pro Theme Portfolio #79732
    lindebjerg
    Member

    A message that you sent could not be delivered to one or more of
    its recipients. The following addresses failed:
    <[email protected]> ?

    December 17, 2013 at 2:02 am in reply to: Magazine Pro Theme Portfolio #79696
    lindebjerg
    Member

    The sort function was included in the Latent Theme.
    I have just taken all about the Portfolio and places it into the Magazine Pro Theme.

    I mostly only make css changes. But I hope this is a solid way to get the Portfolio with sorting into Genesis. I can send you a copy of "my Theme" if you want to have a look inside?

    December 16, 2013 at 8:24 am in reply to: Magazine Pro Theme Portfolio #79465
    lindebjerg
    Member

    okay, I have used some code from this theme: http://demo.thestizmedia.com/latent/
    and the “Custom Post Type – Portfolio” Plugin. I like the sorting function and have no idea have to code it myself;)

    I have just setup 5 Portfolio articles to test responsive and float. The Portfolio seems to work fine, or?

    I have another problem, sometimes by loading the site, text, or titles scale down.
    First they are big then they get he right size?

    Have you seen this before? or on my site now?
    I have only this problem in Chrome on Mac, no problems in Safari.

    December 16, 2013 at 4:12 am in reply to: Magazine Pro Theme Portfolio #79434
    lindebjerg
    Member

    I have found the mistake myself!
    I just have to write here, then I mostly find the mistake in a minute;)

    // Remove the post image
    remove_action( 'genesis_entry_content', 'genesis_do_post_image' );

    In taxonomy-portfolio_cat.php and taxonomy-portfolio_tag.php I changed it to

    // Remove the post image
    remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );

    and it rocks;)

    December 16, 2013 at 3:07 am in reply to: Magazine Pro Post Featured Image #79423
    lindebjerg
    Member

    Sorry Brad, I did not know. I have found an other solution. Thanks for you respond anyway:)

    December 15, 2013 at 6:42 am in reply to: Magazine Pro Post Featured Image #79231
    lindebjerg
    Member
    This reply has been marked as private.
    August 4, 2013 at 1:50 am in reply to: Checkbox don´t work #54052
    lindebjerg
    Member

    Thank you for posting, we are now online here: http://christiankromann.dk/
    I have tried changing the style but it looks in every browser different:)

    August 3, 2013 at 4:38 am in reply to: Checkbox don´t work #53911
    lindebjerg
    Member

    I have just added this:
    .gform_wrapper ul.gfield_checkbox li input[type=checkbox] {
    -webkit-appearance: checkbox!important;
    }

    and it works;)

    Just the styling not, but I think this is a general "check box" problem.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 31 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