• 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

jodieb

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 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • July 2, 2015 at 3:04 pm in reply to: Swank Theme Portfolio Alignment Issue #158221
    jodieb
    Member

    I figured out what was causing this. It seems the titles were just a wee bit too long. They appeared to fit exactly above the image but when I changed the font size to make it a wee bit smaller everything lined up perfectly.

    June 19, 2015 at 2:40 pm in reply to: Using Lifestyle Theme and no comments area is appearing #156846
    jodieb
    Member

    Scratch my comment about the table column in the database. I guess you can't view single columns. Man I am so frustrated!

    June 19, 2015 at 2:39 pm in reply to: Using Lifestyle Theme and no comments area is appearing #156845
    jodieb
    Member

    What in Jetpack could cause this?

    June 19, 2015 at 2:39 pm in reply to: Using Lifestyle Theme and no comments area is appearing #156844
    jodieb
    Member

    No that was not one of the plugins. There is nothing in the wp-config regarding comments.

    Thinking about the past plugins, I decided to check out the database for this site. It seem that the column in the Posts table the relates to comments has a problem (comment_status). All I get when I try to view this column is the message below.

    I tried to run the database repair tool built into WP but it didn't find any issues. I am not sure what to do next to try and fix this.

    Notice in ./libraries/tbl_columns_definition_form.inc.php#55
    Undefined variable: server

    Backtrace

    ./libraries/structure.lib.php#2453: include(./libraries/tbl_columns_definition_form.inc.php)
    ./tbl_structure.php#45: PMA_displayHtmlForColumnChange(
    string 'annette_wrdp1',
    string 'wp_posts',
    NULL,
    string 'tbl_structure.php',
    )

    June 19, 2015 at 2:06 pm in reply to: Using Lifestyle Theme and no comments area is appearing #156837
    jodieb
    Member

    Here is what is installed and active there are no disabled plugins:
    Akismet
    Analytics360
    BackUpWordPress Backup Plugin
    Contact Form by ContactMe.com
    Genesis Simple Edits
    Genesis Simple Hooks
    Genesis Title Toggle
    Google Analytics Dashboard for WP
    Growmap Anti Spambot Plugin
    Image Widget
    Jetpack by WordPress.com
    Jetpack Module Control
    MailChimp for WordPress Lite
    My Page Order
    Shareaholic
    Thank Me Later
    TinyMCE Advanced
    WordPress SEO

    I would also like to add that when I went in to clean up this site for the client there were literally 25+ other plugins in there both active and inactive that I uninstalled and deleted.

    June 19, 2015 at 1:14 pm in reply to: Using Lifestyle Theme and no comments area is appearing #156824
    jodieb
    Member

    It shows up and is checked. I did mention that I had checked on this in my initial post.

    June 19, 2015 at 10:28 am in reply to: Using Lifestyle Theme and no comments area is appearing #156808
    jodieb
    Member

    I did try checking the box for pages and comments appeared on pages but still not on the posts. There were no new template files created at all.

    I did turn off all the plugins after making sure all the necessary boxes were checked and still the comments did not appear.

    Here is the code from functions.php:

    <?php
    //* Start the engine
    include_once( get_template_directory() . '/lib/init.php' );

    //* Setup Theme
    include_once( get_stylesheet_directory() . '/lib/theme-defaults.php' );

    //* Set Localization (do not remove)
    load_child_theme_textdomain( 'lifestyle', apply_filters( 'child_theme_textdomain', get_stylesheet_directory() . '/languages', 'lifestyle' ) );

    //* Child theme (do not remove)
    define( 'CHILD_THEME_NAME', __( 'Lifestyle Pro Theme', 'lifestyle' ) );
    define( 'CHILD_THEME_URL', 'http://my.studiopress.com/themes/lifestyle/' );
    define( 'CHILD_THEME_VERSION', '3.1' );

    //* Add HTML5 markup structure
    add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' ) );

    //* Add viewport meta tag for mobile browsers
    add_theme_support( 'genesis-responsive-viewport' );

    //* Enqueue Scripts
    add_action( 'wp_enqueue_scripts', 'lifestyle_load_scripts' );
    function lifestyle_load_scripts() {

    wp_enqueue_script( 'lifestyle-responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );

    wp_enqueue_style( 'dashicons' );

    wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Droid+Sans:400,700|Roboto+Slab:400,300,700', array(), CHILD_THEME_VERSION );

    }

    //* Add new image sizes
    add_image_size( 'home-large', 634, 360, TRUE );
    add_image_size( 'home-small', 266, 160, TRUE );

    //* Add support for custom background
    add_theme_support( 'custom-background', array(
    'default-image' => get_stylesheet_directory_uri() . '/images/bg.png',
    'default-color' => 'efefe9',
    ) );

    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    'header_image' => '',
    'header-selector' => '.site-title a',
    'header-text' => false,
    'height' => 110,
    'width' => 320,
    ) );

    //* Add support for additional color style options
    add_theme_support( 'genesis-style-selector', array(
    'lifestyle-pro-blue' => __( 'Lifestyle Pro Blue', 'lifestyle' ),
    'lifestyle-pro-green' => __( 'Lifestyle Pro Green', 'lifestyle' ),
    'lifestyle-pro-mustard' => __( 'Lifestyle Pro Mustard', 'lifestyle' ),
    'lifestyle-pro-purple' => __( 'Lifestyle Pro Purple', 'lifestyle' ),
    'lifestyle-pro-red' => __( 'Lifestyle Pro Red', 'lifestyle' ),
    ) );

    //* Reposition the primary navigation
    remove_action( 'genesis_after_header', 'genesis_do_nav' );
    add_action( 'genesis_before_header', 'genesis_do_nav' );

    //* Modify the size of the Gravatar in the author box
    add_filter( 'genesis_author_box_gravatar_size', 'lifestyle_author_box_gravatar' );
    function lifestyle_author_box_gravatar( $size ) {

    return 96;

    }

    //* Modify the size of the Gravatar in the entry comments
    add_filter( 'genesis_comment_list_args', 'lifestyle_comments_gravatar' );
    function lifestyle_comments_gravatar( $args ) {

    $args['avatar_size'] = 60;
    return $args;

    }

    //* Remove comment form allowed tags
    add_filter( 'comment_form_defaults', 'lifestyle_remove_comment_form_allowed_tags' );
    function lifestyle_remove_comment_form_allowed_tags( $defaults ) {

    $defaults['comment_notes_after'] = '';
    return $defaults;

    }

    //* Add support for 3-column footer widgets
    add_theme_support( 'genesis-footer-widgets', 3 );

    //* Add support for after entry widget
    add_theme_support( 'genesis-after-entry-widget-area' );

    //* Relocate after entry widget
    remove_action( 'genesis_after_entry', 'genesis_after_entry_widget_area' );
    add_action( 'genesis_after_entry', 'genesis_after_entry_widget_area', 5 );

    //* Register widget areas
    genesis_register_sidebar( array(
    'id' => 'home-top',
    'name' => __( 'Home - Top', 'lifestyle' ),
    'description' => __( 'This is the top section of the homepage.', 'lifestyle' ),
    ) );
    genesis_register_sidebar( array(
    'id' => 'home-middle',
    'name' => __( 'Home - Middle', 'lifestyle' ),
    'description' => __( 'This is the middle section of the homepage.', 'lifestyle' ),
    ) );
    genesis_register_sidebar( array(
    'id' => 'home-bottom-left',
    'name' => __( 'Home - Bottom Left', 'lifestyle' ),
    'description' => __( 'This is the bottom left section of the homepage.', 'lifestyle' ),
    ) );
    genesis_register_sidebar( array(
    'id' => 'home-bottom-right',
    'name' => __( 'Home - Bottom Right', 'lifestyle' ),
    'description' => __( 'This is the bottom right section of the homepage.', 'lifestyle' ),
    ) );

    //* Add the Page Title section
    add_action( 'genesis_after_header', 'cegg_pagetitle' );
    function cegg_pagetitle() {

    if (is_active_sidebar( 'pagetitle' )) {
    genesis_widget_area( 'pagetitle', array(
    'before' => '<div class="pagetitle widget-area"><div class="wrap"',
    'after' => '</div></div>'
    ) );
    }
    }

    //* Register widget areas
    genesis_register_sidebar( array(
    'id' => 'pagetitle',
    'name' => __( 'Page Title', 'cegg' ),
    'description' => __( 'This is the page title section.', 'cegg' ),
    ) );

    June 19, 2015 at 9:52 am in reply to: Using Lifestyle Theme and no comments area is appearing #156804
    jodieb
    Member

    I have done that as well and comments are checked for posts but not pages.

    February 4, 2015 at 2:37 pm in reply to: adding sidebar to whitespace pro #139689
    jodieb
    Member

    I would like an answer to this also, There have been several times I would have liked to use this theme but needed a sidebar.

    September 26, 2014 at 5:39 pm in reply to: Align widgets horizontally on Parallex home page #125875
    jodieb
    Member

    Every page on your whole site is just showing me a registration page.

    September 26, 2014 at 4:42 pm in reply to: Align widgets horizontally on Parallex home page #125871
    jodieb
    Member

    Brad I am not able to see your link.

    February 1, 2013 at 8:16 am in reply to: Change the order of blog title and meta info in Balance Theme #17043
    jodieb
    Member

    I am still struggling with this.  I have tried all the things I have been able to find on my own and nothing is working.  Please give me some advice.

    January 31, 2013 at 12:18 pm in reply to: Change the order of blog title and meta info in Balance Theme #16786
    jodieb
    Member

    I am also having trouble getting the featured image to show up in the size I wish.  I want it to be 200px by 292px but no matter what I change in the loop it shows up full size.

    Jodie B

  • Author
    Posts
Viewing 13 posts - 1 through 13 (of 13 total)

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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