Forum Replies Created
-
AuthorPosts
-
tsolignaniMember
Thank you, and have a nice day!
tsolignaniMemberThank you, but emoticon are different from emojis.
Emoticons, or smilies, do work on my blog, while emojis do not.
Over
https://wordpress.org/support/article/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.
tsolignaniMemberThank 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 #22204tsolignaniMemberFebruary 22, 2013 at 5:15 am in reply to: enterprise child theme with both widget and posts into the home page #22201tsolignaniMemberDropbox 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
February 22, 2013 at 4:56 am in reply to: enterprise child theme with both widget and posts into the home page #22192tsolignaniMemberYes, 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 #22168tsolignaniMemberThank 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
February 21, 2013 at 9:20 am in reply to: enterprise child theme with both widget and posts into the home page #21967tsolignaniMemberThat'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 #21908tsolignaniMemberThank 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
February 20, 2013 at 3:57 am in reply to: enterprise child theme with both widget and posts into the home page #21604tsolignaniMemberThank 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
-
AuthorPosts