• 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

Davinder Singh Kainth

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 18 posts - 2,161 through 2,178 (of 2,178 total)
← 1 2 3 … 107 108 109
  • Author
    Posts
  • November 25, 2012 at 10:57 pm in reply to: Add "the number of comments" next to the comment title #1687
    Davinder Singh Kainth
    Member

    Following code should help:

    // B3- Modify comments header text in comments
    add_filter( 'genesis_title_comments', 'child_title_comments');
    function child_title_comments() {
    return __(comments_number( '{ No Comments }', '{ 1 Comment }', '{ % Comments }' ), 'genesis' );
    }

    Source - http://www.rickrduncan.com/add-comment-number-to-comment-title


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 25, 2012 at 10:52 pm in reply to: Genesis Responsive Slider not showing post title #1686
    Davinder Singh Kainth
    Member

    1. Other setting to confirm, on Slider Settings make sure width and height is specified as 570 X 380

    2. If still does not work, move the slider widget to different widget area and check if title appears.

    3. Disable all plugins, except slider plugin in attempt to isolate the issue.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 25, 2012 at 10:37 pm in reply to: Search multiple sites with search widget? #1685
    Davinder Singh Kainth
    Member

    For this use Google Search custom search box by specifying websites from where results should be displayed, instead of default wp search. http://www.google.com/cse/


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 25, 2012 at 10:35 pm in reply to: Header size for News Theme #1684
    Davinder Singh Kainth
    Member

    Size is 960px X 110px

    You can confirm this by checking following code in style.css file in news theme installed at your end.


    #header {
    background-color: #fff;
    border-left: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
    border-top: 1px solid #d5d5d5;
    min-height: 110px;
    margin: 0 auto;
    overflow: hidden;
    width: 960px;
    }


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 25, 2012 at 10:31 pm in reply to: Getting Started #1683
    Davinder Singh Kainth
    Member

    For playing around learning theme designing, it is always good to setup WordPress on your local PC.

    1. Use WAMP software to install WordPress offline on your computer.

    2. Install Genesis and child theme (you can use free base child theme for studiopress).

    3. Understand and try to learn on Genesis Hooks. See here "http://genesistutorials.com/visual-hook-guide/", there is also plugin for real time learning.

    4. Once you know hooks location, goto Studiopress tutorials section and try few codes in functions.php and see what changes they do.

    In this way, you will get hang of things and then move CSS Style changes for modifying look of the website theme.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 25, 2012 at 10:18 pm in reply to: Genesis Responsive Slider not showing post title #1681
    Davinder Singh Kainth
    Member

    Did you enable "Display Post/Page Title in Slider" option in slider settings found at Genesis >Slider Settings


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 22, 2012 at 5:54 am in reply to: Responsive Slider – images cache? #1262
    Davinder Singh Kainth
    Member

    While uploading new image, you should click on "use as featured image" button at the bottom of image upload screen.

    Or

    You should delete all exisiting images from image upload screen for specific post and then upload new image.

    Also, make sure you delete cache, if using any plugin for the same.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 21, 2012 at 5:46 am in reply to: Genesis Responsive Slider won’t show photos at full size #1090
    Davinder Singh Kainth
    Member

    Check sytle.css for

    img {
    max-width: 98%;
    }

    Change 98 to 100%

    Make sure you delete current image from post and re-upload image of size 780?—300 to check on the issue.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 21, 2012 at 5:32 am in reply to: Fabric Child resize logo space #1089
    Davinder Singh Kainth
    Member

    You can also modify other remaining part of the header (widget header on the right side) using following code:

    #header .widget-area {
    float: left;
    padding: 20px 0 0;
    width: 778px;
    }

    Here 778 is width of right widget in the header. You can play around with 778 and 180 (width of the logo) as per requirement - assuming your header width is set to 960px (as is the case in majority of child themes).


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 21, 2012 at 5:30 am in reply to: Fabric Child resize logo space #1088
    Davinder Singh Kainth
    Member

    Use following:

    /* Image Header - Partial Width
    ------------------------------------------------------------ */
    .header-image #header #title-area {
    background: url(images/logo.png) left top no-repeat;
    }
    .header-image #title-area,
    .header-image #title,
    .header-image #title a {
    display: block;
    float: left;
    height: 60px;
    overflow: hidden;
    padding: 0;
    text-indent: -9999px;
    width: 180px;
    }
    .header-image #description {
    display: block;
    overflow: hidden;
    }

    Above 180 and 60 is width and height of the logo image displayed at top left part of the header.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 21, 2012 at 5:18 am in reply to: Remove widget title from just one widget? #1085
    Davinder Singh Kainth
    Member

    Try this:
    1. Drag tag cloud widget.
    2. In the title box type   
    3. Click Save,   will disappear from title box.

    Preview your tag cloud widget, it should appear without any title in the final result.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 21, 2012 at 1:19 am in reply to: exclude category in home page serenity theme #1077
    Davinder Singh Kainth
    Member

    If using blog layout, then use code under title "Exclude Category from Blog" on following link:

    source - http://www.billerickson.net/customize-the-wordpress-query/


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 21, 2012 at 12:26 am in reply to: Genesis Responsive Slider won’t show photos at full size #1075
    Davinder Singh Kainth
    Member

    1. Say you have set 960 X 200 pixels as dimension in slider settings.

    2. Edit photo that you want to display in slider to 960X200 size.

    3. Open specific post, upload that photo - while in upload photo box, click "use this as featured image" button and close that box.'

    No need to embed that photo inside the post. Similarly, you repeat for photos you want to display in slider - they should appear fine. Though this is  time consuming, result is very neat!


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 21, 2012 at 12:20 am in reply to: Gaming Clan Website – Almost Done [Lifestyle] #1074
    Davinder Singh Kainth
    Member

    Looking good and going with the topic of the website. One suggestion though - highlight the header logo little bit 🙂


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 20, 2012 at 11:51 pm in reply to: Creating A Slider On Homepage of Focus Theme #1073
    Davinder Singh Kainth
    Member

    Step 1 Add new widget area "homepage-feature" below header using following code in functions.php file.

    genesis_register_sidebar( array(
    'id' => 'homepage-feature',
    'name' => __( 'Homepage Feature', 'custom' ),
    'description' => __( 'This is Homepage feature section', 'custom' ),
    ) );
    /** Top Homepage feature section */
    add_action( 'genesis_after_header', 'news_homepage_feature', 9 );
    function news_homepage_feature() {
    if ( is_home() && is_active_sidebar( 'homepage-feature' ) ) {
    echo '';
    dynamic_sidebar( 'homepage-feature' );
    echo '';
    }
    }

    source - http://www.basicwp.com/add-new-widget-genesis-homepage/

    Step 2. Install Genesis responsive slider and drag the slider widget into "homepage-feature" widget area.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 20, 2012 at 11:45 pm in reply to: Header troubles #1071
    Davinder Singh Kainth
    Member

    This should help:


    #header {
    background:#000;
    width:100%;
    }
    #header .wrap {
    margin: 0 auto;
    overflow: hidden;
    width: 960px;
    }

    1. Above header class show black background covering full width.
    2. Header wrap define style in content portion of 960px, you can add background style to give different color or image.

    Ideally, you need to set header to 100% width and add new header wrap class style.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 20, 2012 at 11:37 pm in reply to: Remove widget title from just one widget? #1069
    Davinder Singh Kainth
    Member

    I guess you figured it out, just had to keep "title" box of widget box blank.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    November 20, 2012 at 11:34 pm in reply to: Read More Button #1067
    Davinder Singh Kainth
    Member

    To remove Read More... just add following code to functions.php file


    // Remove read more - basicWP.com
    add_filter( 'get_the_content_more_link', 'child_read_more_link' );
    function child_read_more_link() {
    return '';
    }

    source - http://www.basicwp.com/remove-read-more-link-posts-genesis/


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

  • Author
    Posts
Viewing 18 posts - 2,161 through 2,178 (of 2,178 total)
← 1 2 3 … 107 108 109
« Previous Page

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

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