• 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 - 41 through 60 (of 64 total)
← 1 2 3 4 →
  • Author
    Posts
  • October 22, 2013 at 3:28 pm in reply to: next page button does nothing – stuck in loop #68286
    dmcleod87
    Member

    thanks summer. updated the code but still doesn't work. i'm getting in touch with the developer via tweaky.com so hopefully he can fix it.

    eamonmoriarty - i've got it pointing to http://theinfluenceronline.com/ as that is the live domain the site will eventually end up on.

    October 22, 2013 at 2:44 am in reply to: overlay post title on featured image – genesis featured posts widget #68158
    dmcleod87
    Member

    managed to get it to work through trial and error using the method here

    for those people looking to do the same, you need to edit the following CSS for Genesis Featured Posts Widget.

    .featured-content .entry {
    	position: relative; 
    	width: 100%; /* for IE 6 */
    }
    
    .featured-content .entry-title {
    	background: rgb(0, 0, 0); /* fallback color */
    	background: rgba(0, 0, 0, 0.7);
    	padding: 10px; 
    	position: absolute; 
    	top: 200px; 
    	left: 0; 
    	width: 100%; 
    }
    October 21, 2013 at 9:39 pm in reply to: next page button does nothing – stuck in loop #68129
    dmcleod87
    Member

    hi summer,

    page is a custom template. the 3 featured posts at the top are widgets. here is the code from the page template-

    
    <?php
    /* 
    Template Name: Widget Template
    
    Created for three featured widget section, by Iniyan-tweaky
    */
    //Displaying posts on this page
    remove_action( 'genesis_loop', 'genesis_do_loop' );
    add_action( 'genesis_loop', 'iniyan_loop' );
    /**
     * Remove default loop. Execute Custom Loop Instead.
     *
     * @author Greg Rickaby
     * @since 1.0.0
     */
    function iniyan_loop() {
    global $paged;
    
    	 $args = (array(
    		'order' => 'dsc',
    		'order_by'=> 'title',
    	 	'paged' => $paged,
    		'cat'=>'-14,-15,-16',
    	 	'posts_per_page' => 5
    	));
    
    genesis_custom_loop( $args );
    
    }
    
    //Featured Widgets
    add_action('genesis_before_content', 'iniyan_template');
    function iniyan_template() {
    
    echo'<div id="tweaky-widgets">';
    
    genesis_widget_area( 'featured-one', array(
           'before' => '<div class="featured-one">',
           'after' => '</div>',
       ) );
       
    
    genesis_widget_area( 'featured-two', array(
           'before' => '<div class="featured-two">',
           'after' => '</div>',
       ) );
       
    
    genesis_widget_area( 'featured-three', array(
           'before' => '<div class="featured-three">',
           'after' => '</div>',
       ) );
    
    echo '</div>';
    
    }
    
    genesis(); // <- everything important: make sure to include this. 
    October 21, 2013 at 8:39 pm in reply to: next page button does nothing – stuck in loop #68125
    dmcleod87
    Member

    anyone know how i can fix this?

    October 21, 2013 at 8:38 pm in reply to: overlay post title on featured image – genesis featured posts widget #68124
    dmcleod87
    Member

    this is what i was hoping to copy...

    Text Blocks Over Image

    anyone?

    October 21, 2013 at 2:54 am in reply to: change featured post image width #67971
    dmcleod87
    Member

    found a fix. i changed the content archive settings in theme settings. the featured image size was set to 'large (1024x1024px). after declaring the new image size and regenerating the thumbnails, i went back and chose 'post-image (800x9999px) and they all display fine now.

    thanks again for the assistance brad, much appreciated!

    October 21, 2013 at 1:38 am in reply to: change featured post image width #67965
    dmcleod87
    Member

    only problem is how do i choose this when i add the featured image in the post when i can't select an option? or do i declare that in the code somehow?

    October 21, 2013 at 1:33 am in reply to: change featured post image width #67964
    dmcleod87
    Member

    yeah i've been reading through these pages-

    http://codex.wordpress.org/Function_Reference/add_image_size
    http://codex.wordpress.org/Post_Thumbnails

    this is their example-

    add_image_size( 'category-thumb', 300, 9999 ); //300 pixels wide (and unlimited height)

    if ( function_exists( 'add_image_size' ) ) { 
    	add_image_size( 'category-thumb', 300, 9999 ); //300 pixels wide (and unlimited height)
    	add_image_size( 'homepage-thumb', 220, 180, true ); //(cropped)
    }

    i could declare a new image size and set the image to 800 wide and 9999 for the height...do you think that would work? after i regenerate thumbnails first of course...

    October 21, 2013 at 12:15 am in reply to: change featured post image width #67955
    dmcleod87
    Member

    spoke too soon. added a few new posts and had no issues, now i've added another post and again the featured image automatically reverts to a smaller size. i tried a different featured image, yet it didn't work as it did for the last post mentioned above.

    really stumped with this one!

    October 20, 2013 at 11:29 pm in reply to: change featured post image width #67948
    dmcleod87
    Member

    just an update. have swapped the featured images and it works fine. very odd.

    thanks for your help anyway brad.

    October 20, 2013 at 11:23 pm in reply to: change featured post image width #67946
    dmcleod87
    Member

    yeah i noticed that before but i assure you the image i uploaded is 800px and the filename is meant to be pattern1.jpg. it seems to be linking to 'full size' image setting but i just re-uploaded the photo as the featured image and still links to that file.

    i've deleted the post altogether as well as the images and re-created it and still it links to the smaller image. when i choose the featured image in the post i don't get to choose the size eg thumbnail, small, medium large etc...

    i think i'm having issues because i've imported all the posts/images from blogger and the posts are a mess.

    October 20, 2013 at 10:46 pm in reply to: change featured post image width #67940
    dmcleod87
    Member

    for example this posts featured image is displaying correctly and is the same width as the other-

    http://influencer.dylanmcleod.net.au/featured-three/street-smith-x-basically-boutique/

    October 20, 2013 at 10:45 pm in reply to: change featured post image width #67939
    dmcleod87
    Member

    the original size of the image is 800px. it's odd that some which are also 800px wide display at 800px wide, just not some. all post images are 800px when uploaded...

    October 20, 2013 at 8:38 pm in reply to: next page button does nothing – stuck in loop #67924
    dmcleod87
    Member

    should also mention i've based the site on the genesis sample child theme.

    October 8, 2013 at 3:19 pm in reply to: display row of 3 featured posts/images above sidebar but under header #65884
    dmcleod87
    Member

    just used the genesis featured posts widget. someone else has taken a look at my code and it works fine on a fresh install of the sample child theme, so i suspect it's something i've done to some other code which is why nothing is working.

    going to start from scratch and see how i go. thanks for your help anyway.

    October 8, 2013 at 3:46 am in reply to: display row of 3 featured posts/images above sidebar but under header #65815
    dmcleod87
    Member

    hi Brad thanks for the link.

    have added the code, added the widgets and still nothing appears. changed the category to 'featured'

    http://influencer.dylanmcleod.net.au/category/featured/

    i was hoping to make this into a home page template if possible.

    October 7, 2013 at 7:05 pm in reply to: simple social icons not displaying correctly #65763
    dmcleod87
    Member

    just an update to say i've fixed it.

    have copied the CSS from the plugin and added it my child theme CSS file. that has sorted the vertical stacking of the icons and now the icons are appearing.

    i'm sure all that wasn't necessary as i've had it working on other child themes but it works for now.

    October 7, 2013 at 5:50 pm in reply to: simple social icons not displaying correctly #65744
    dmcleod87
    Member

    sorry i meant try the website again. also i just viewed in chrome and it's in the correct spot for me, just not displaying correctly.

    October 7, 2013 at 5:47 pm in reply to: simple social icons not displaying correctly #65742
    dmcleod87
    Member

    try this http://d.pr/i/IvG0

    October 7, 2013 at 5:36 pm in reply to: simple social icons not displaying correctly #65735
    dmcleod87
    Member

    odd. what browser are you viewing it in? it's in the correct spot on my end (firefox) and i haven't altered the sidebar/widget width...

    http://d.pr/i/IvG0

  • Author
    Posts
Viewing 20 posts - 41 through 60 (of 64 total)
← 1 2 3 4 →
« Previous Page

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