• 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

chillybin

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 68 total)
1 2 3 4 →
  • Author
    Posts
  • March 3, 2014 at 7:17 am in reply to: Enterprise – Pro – White border around Genesis responsive slider #93180
    chillybin
    Member

    Add this CSS

    .genesis_responsive_slider .flexbox {
    border: 0;
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    March 3, 2014 at 7:14 am in reply to: Help Please – Need to Identify Background Area to Change Colour #93179
    chillybin
    Member

    Look for this line

    .home-even, 
    .home-odd {
        padding: 0px 0 0px;
    }

    and change it to this, it will close the gap up for you

    .home-even,
    .home-odd {
      padding: 0px;
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    March 3, 2014 at 7:06 am in reply to: Customization of Genesis #93178
    chillybin
    Member

    I would download the Genesis Sample child theme and do your customisations in there for the colours, then you can make any updates you need to the Genesis Parent theme and your child theme will not be affected. Do you have a copy of the changes your developer made? You could try and copy and paste those into the child theme.


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 19, 2014 at 7:30 pm in reply to: Multi-agents for Agentpress possible? #91309
    chillybin
    Member

    In theory it should be possible (i've not used agentpress however) by just creating multiple authors/accounts/agents.

    You can then list each property and assign the created user account to that property.

    Using some PHP or widgets you could output the agents information as well at the bottom of the listing (you can add bio information under each user account)

    Hope this helps


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 12, 2014 at 8:04 am in reply to: Post Excerpts at the Beginning of Each Post #89960
    chillybin
    Member

    This should help

    add_action('genesis_entry_header','custom_excerpt', 11);
    function custom_excerpt() {
      if ( is_single() )
      ?><div class="content-box"><? 
      the_excerpt();
      ?></div><?
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 9:41 am in reply to: Please help me with – Fatal error: Cannot redeclare _verify_activate_widget() #89831
    chillybin
    Member

    Ok, it just looked like a weird IP address...

    Do you have the functions from your child theme as well?


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 9:39 am in reply to: @font face Issues #89830
    chillybin
    Member

    I'm not using Parallax pro, just a custom theme. Thanks for letting me know about the work issue, i've been having issues with Royal Slider and W3 Total Cache, it seems to need manual refreshing every day... A problem for another day...

    Do you have a link to your site? the fonts folder should be in

    wp-content/themes/bossa/fonts/

    where the style.css file is in

    wp-content/themes/bossa/style.css

    Otherwise you could use the following for each of the fonts

    @font-face {
    font-family: ‘open_sansregular’;
    src: url(‘http://www.domain.com/wp-content/themes/bossa/fonts/opensans_regular_macroman/OpenSans-Regular-webfont.eot’);
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 9:30 am in reply to: Post Excerpts at the Beginning of Each Post #89827
    chillybin
    Member

    Add this to functions.php

    add_action('genesis_entry_header','custom_excerpt', 11);
    function custom_excerpt() {
      the_excerpt();
    }

    So then you can use the excerpt area in wordpress (use screen options if not showing) to write your own excerpts.

    You can change the number 11 at the end higher or lower to position the excerpt in the entry meta area


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 9:23 am in reply to: lightbox vimeo embed help #89824
    chillybin
    Member

    You can try this

    WP Video Lightbox

    OR

    Responsive Lightbox & Gallery


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 9:18 am in reply to: Link as Button #89823
    chillybin
    Member

    Just add the class="button" to each link

    <a href="http://wbxpress.com/category/bcwd/" class="button">Backward Classes</a>

    Then add this to your style.css file

    a.button {
        background-color: #222;
        border-radius: 3px;
        color: #fff;
        cursor: pointer;
        display: inline-block;
        padding: 8px 12px;
        padding: 0.8rem 1.2rem;
    }
    
    a.button:hover {
        background-color: #ed702b;
        text-decoration: none;
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 9:17 am in reply to: Help Formatting Author.php (Minimum Pro) #89822
    chillybin
    Member

    A couple of issues with opening and closing php tags, try this snippet

    <?php
    
    add_action( 'genesis_before_loop', 'include_author_info' );
    function include_author_info() {
        $curauth = (isset($_GET['author_name'])) ? get_user_by('slug', $author_name) : get_userdata(intval($author)); ?>
        <h2><?php echo $curauth->display_name; ?></h2>
        <?php echo $curauth->user_description;
    }
    
    //* Run the Genesis loop
    genesis();

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 9:06 am in reply to: Please help me with – Fatal error: Cannot redeclare _verify_activate_widget() #89817
    chillybin
    Member

    Can you paste your functions.php file here? http://hastebin.com

    It looks like your site may have been hacked though, it's trying to source these images


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 9:02 am in reply to: Genesis custom query pagnination problem #89814
    chillybin
    Member

    i've found that i have to add this at the top of the loop

    global $post;

    to any pages that I'm having pagination issues with

    wp_reset_query();

    Also helps placed at the end of the loop


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 9:00 am in reply to: Need a 4 column layout option #89813
    chillybin
    Member

    What about just putting them in the top right of the page? so you don't need an additional column. Maybe something like the Smart Layer styling of http://www.addthis.com


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 8:54 am in reply to: Header has moved to the left on Outreach on an iPad #89810
    chillybin
    Member

    Hi,

    You should be able to add this into your style.css file which will keep the logo aligned to the left and stop it falling off the page

    #header {
      background-position: left center;
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 8:44 am in reply to: post category url address guidance needed #89805
    chillybin
    Member

    Most likely you will need to do some reading up about .htaccess rules, i don't have a simple snippet for you sorry


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 11, 2014 at 8:42 am in reply to: Removing Genesis Sample Default Footer Text #89804
    chillybin
    Member

    You can find some snippets here

    http://my.studiopress.com/snippets/footer#credits


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 8:50 am in reply to: Tweaking the Style Sheet #89668
    chillybin
    Member

    remove the extra # here as well

    color: ##000fff;


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 8:17 am in reply to: custom links for genesis responsive slider #89663
    chillybin
    Member

    This slider is great and supports what you need, and is quite a bit cheaper

    http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380
    http://codecanyon.net/item/royalslider-touch-content-slider-for-wordpress/700256


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 8:13 am in reply to: @font face Issues #89661
    chillybin
    Member

    Check the location of your fonts directory

    The way you have it set up is that its looking for this folder

    domain.com/fonts

    if you have it as a sub directory of your child theme, you will want to use

    fonts without the first /


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

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

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