• 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

tsolignani

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 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • February 8, 2020 at 10:33 am in reply to: emojii support #496567
    tsolignani
    Member

    Thank you, and have a nice day!

    February 8, 2020 at 7:06 am in reply to: emojii support #496563
    tsolignani
    Member

    Thank you, but emoticon are different from emojis.

    Emoticons, or smilies, do work on my blog, while emojis do not.

    Over

    Emoji

    they talk about emojis as if they were supported out of the box from WordPress, so I suspect there is something into my theme or dababase encoding or else sending them out of whack...

    Thank you.

    February 8, 2020 at 4:59 am in reply to: emojii support #496561
    tsolignani
    Member

    Thank you, but I already tried that with no joy.

    I guess that those plugins just add a menu to the editor to add emojis, while my issue seems to be more a rendering or encoding one.

    Any other hint?

    Thank you.

    February 22, 2013 at 5:40 am in reply to: enterprise child theme with both widget and posts into the home page #22204
    tsolignani
    Member

    Now it works, sorry for the delay.

    Thank you.

     
    –
cordialmente,

    tiziano solignani, da  Mac
    http://blog.solignani.it

    February 22, 2013 at 5:15 am in reply to: enterprise child theme with both widget and posts into the home page #22201
    tsolignani
    Member

    Dropbox is still uploading it, please get back in 5 minutes (I have no idea how come is taking so long, the file is small).

    The issue is not a style one, but a structure, to me.

    Thanks.

     
    –
cordialmente,

    tiziano solignani, da  Mac
    http://blog.solignani.it

    February 22, 2013 at 4:56 am in reply to: enterprise child theme with both widget and posts into the home page #22192
    tsolignani
    Member

    Yes, but the result is ...

    https://dl.dropbox.com/u/134544/Schermata%202013-02-22%20alle%2011.45.25.png

    February 22, 2013 at 2:58 am in reply to: enterprise child theme with both widget and posts into the home page #22168
    tsolignani
    Member

    Thank you.

    Almost there! Now I can display all three widget, only they are not in a bubble on their own.

    Anyway, thanks again, it's much better now. I left it on line, should you wish to have a look.

    Have a nice day.
    –
cordialmente,

    tiziano solignani, da  Mac
    http://blog.solignani.it

    February 21, 2013 at 9:20 am in reply to: enterprise child theme with both widget and posts into the home page #21967
    tsolignani
    Member

    That's a bit beyond me.

    This is what I got into functions.php, is that useful?

    <?php
    /** Start the engine */
    require_once( TEMPLATEPATH . '/lib/init.php' );

    /** Child theme (do not remove) */
    define( 'CHILD_THEME_NAME', 'Enterprise Theme' );
    define( 'CHILD_THEME_URL', 'http://www.studiopress.com/themes/enterprise' );

    $content_width = apply_filters( 'content_width', 600, 420, 900 );

    /** Add new featured image sizes */
    add_image_size('mini', 65, 65, TRUE);
    add_image_size('homepage', 270, 80, TRUE);
    add_image_size('slideshow', 600, 235, TRUE);

    /** Add support for post formats */
    add_theme_support( 'post-formats', array(
    'aside',
    'audio',
    'chat',
    'gallery',
    'image',
    'link',
    'quote',
    'status',
    'video'
    ) );
    /** Add support for custom background */
    add_custom_background();

    /** Add support for custom header */
    add_theme_support( 'genesis-custom-header', array( 'width' => 960, 'height' => 120, 'textcolor' => '333', 'admin_header_callback' => 'enterprise_admin_style' ) );

    /**
    * Register a custom admin callback to display the custom header preview with the
    * same style as is shown on the front end.
    *
    */
    function enterprise_admin_style() {

    $headimg = sprintf( '.appearance_page_custom-header #headimg { background: url(%s) no-repeat; font-family: Droid Sans, arial, serif; min-height: %spx; }', get_header_image(), HEADER_IMAGE_HEIGHT );
    $h1 = sprintf( '#headimg h1, #headimg h1 a { color: #%s; font-size: 36px; font-weight: normal; line-height: 42px; margin: 25px 0 0; text-decoration: none; }', esc_html( get_header_textcolor() ) );
    $desc = sprintf( '#headimg #desc { color: #%s; }', esc_html( get_header_textcolor() ) );

    printf( '<style type="text/css">%1$s %2$s %3$s</style>', $headimg, $h1, $desc );

    }

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

    /** Register widget areas */
    genesis_register_sidebar( array(
    'id' => 'home-top-1',
    'name' => __( 'Home Top #1', 'enterprise' ),
    'description' => __( 'This is home top #1 section.', 'enterprise' ),
    ) );
    genesis_register_sidebar( array(
    'id' => 'home-top-2',
    'name' => __( 'Home Top #2', 'enterprise' ),
    'description' => __( 'This is home top #2 section.', 'enterprise' ),
    ) );
    genesis_register_sidebar( array(
    'id' => 'home-middle-1',
    'name' => __( 'Home Middle #1', 'enterprise' ),
    'description' => __( 'This is home middle #1 section.', 'enterprise' ),
    ) );
    genesis_register_sidebar( array(
    'id' => 'home-middle-2',
    'name' => __( 'Home Middle #2', 'enterprise' ),
    'description' => __( 'This is home middle #2 section.', 'enterprise' ),
    ) );
    genesis_register_sidebar( array(
    'id' => 'home-middle-3',
    'name' => __( 'Home Middle #3', 'enterprise' ),
    'description' => __( 'This is home middle #3 section.', 'enterprise' ),
    ) );

    February 21, 2013 at 3:14 am in reply to: enterprise child theme with both widget and posts into the home page #21908
    tsolignani
    Member

    Thank you. It works.

    Still... It's not just what I would like to have.

    If you have a look at my home page, at http://blog.solignani.it, you see the 3 footers are graphically separated from the rest of the page, in a shadow of their own.

    Whereas the home middle are glued together with posts. That's not only an eye issue, I cannot put the third widget, if I did it would get displayed at the bottom of the second one.

    What I would like to obtain is an home page where the home middle widgets stay into a bubble of their own, like the footer ones, separated from both posts and primary sidebar.

    Do you think I can do it?

    Thanks again, and let me know if and how I can acknowledge your help into the matter.
    –
cordialmente,

    tiziano solignani, da  Mac
    http://blog.solignani.it

     

     

    February 20, 2013 at 3:57 am in reply to: enterprise child theme with both widget and posts into the home page #21604
    tsolignani
    Member

    Thank you.

    It does work, but it removes the primay sidebar, the one on the right, from the home page, while I would like to keep it as well.

    Is there any way, to your knowledge?

    Should you need to have a look, I can temporarily enable one widget in the home middle, just tell me.

     

    Again, many thanks.
    –
cordialmente,

    tiziano solignani, da  Mac
    http://blog.solignani.it

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