Title: simplethemes's Replies | WordPress.org

---

# simplethemes

  [  ](https://wordpress.org/support/users/simplethemes/)

 *   [Profile](https://wordpress.org/support/users/simplethemes/)
 *   [Topics Started](https://wordpress.org/support/users/simplethemes/topics/)
 *   [Replies Created](https://wordpress.org/support/users/simplethemes/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/simplethemes/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/simplethemes/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/simplethemes/engagements/)
 *   [Favorites](https://wordpress.org/support/users/simplethemes/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 97 total)

1 [2](https://wordpress.org/support/users/simplethemes/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/simplethemes/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/simplethemes/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/simplethemes/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/simplethemes/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/simplethemes/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] Jigoshop Products Are Showing as Posts on Shop Page](https://wordpress.org/support/topic/jigoshop-products-are-showing-as-posts-on-shop-page/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/jigoshop-products-are-showing-as-posts-on-shop-page/#post-6092202)
 * Resolved via email support.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] How to create a fixed Menu](https://wordpress.org/support/topic/how-to-create-a-fixed-menu/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-create-a-fixed-menu/#post-6548411)
 * I use this for fixed menus:
    [https://github.com/bbarakaci/fixto](https://github.com/bbarakaci/fixto)
 * You’ll need to download it, upload /dist/fixto.min.js to a newly created skeleton_childtheme/
   js/ directory in your child theme.
 * Next, enqueue it in your child skeleton_childtheme/functions.php like so:
 *     ```
       function my_custom_scripts() {
           $version = wp_get_theme()->Version;
           wp_enqueue_script('fixto',get_stylesheet_directory_uri()."/js/fixto.min.js",array('jquery'),$version,true);
           wp_enqueue_script('child-custom',get_stylesheet_directory_uri()."/js/custom.js",array('jquery'),$version,true);
       }
       add_action( 'wp_enqueue_scripts', 'my_custom_scripts');
       ```
   
 * Create another file in skeleton_childtheme/js/ named custom.js and insert this:
 *     ```
       jQuery(document).ready(function($) {
           $('#navigation').fixTo('body');
       });
       ```
   
 * Add the following css to your style.css:
 *     ```
       #navigation {
           z-index: 9;
       }
       body.logged-in.admin-bar #navigation.fixto-fixed {
           padding-top: 32px;
       }
       ```
   
 * and you’ll have:
    [http://cl.ly/2K1V3y3x0P3Q](http://cl.ly/2K1V3y3x0P3Q)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] How can I remove the title tag and replace it with a logo file?](https://wordpress.org/support/topic/how-can-i-remove-the-title-tag-and-replace-it-with-a-logo-file/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-can-i-remove-the-title-tag-and-replace-it-with-a-logo-file/#post-6563244)
 * Actually [@vamsi](https://wordpress.org/support/users/vamsi/) is correct, but
   the image should be resized or it will look like a banner image.
 * In your child theme, you could also hook into `skeleton_child_logo()`:
 *     ```
       function my_custom_logo() {
           ?>
           <a class="logotype-img" href="<?php echo esc_url( home_url( '/' ) );?>" title="<?php echo esc_attr( get_bloginfo('name','display'));?>" rel="home">
               <img src="path/to/logo.png" alt="logo">
           </a>
           <?php
       }
       add_filter( 'skeleton_child_logo','my_custom_logo');
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] Remove Sidebar – same setup as demo](https://wordpress.org/support/topic/remove-sidebar-same-setup-as-demo/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/remove-sidebar-same-setup-as-demo/#post-6815356)
 * Sorry, I don’t have a demo xml available but will put on my todo list.
 * As for the wide page (no sidebar) just select the no sidebar page template:
 * [http://cl.ly/2z122B0t3k0E](http://cl.ly/2z122B0t3k0E)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] Use widget in Extras area?](https://wordpress.org/support/topic/use-widget-in-extras-area/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/use-widget-in-extras-area/#post-6897959)
 * The best way to do this is to create (register) a new widget location to hold
   your widget:
 *     ```
       function my_extra_sidebar() {
       	register_sidebar( array(
       		'name'          => __( 'Extra Widget Area', 'smpl' ),
       		'id'            => 'my-extras-sidebar',
       		'description'   => __( 'Extra widget area', 'smpl' ),
       		'before_widget' => '<div id="extras-widget" class="%1$s">',
       		'after_widget'  => '</div>',
       		'before_title'  => '<h3 class="widget-title">',
       		'after_title'   => '</h3>',
       	));
       }
       add_action( 'widgets_init', 'my_extra_sidebar' );
       ```
   
 * Now, we can hook it into the skeleton_child_header_extras() filter:
 *     ```
       function show_my_extra_sidebar() {
       	do_shortcode(dynamic_sidebar( 'my-extras-sidebar'));
       }
       add_filter('skeleton_child_header_extras','show_my_extra_sidebar');
       ```
   
 * Notice we wrapped it in do_shortcode() so that shortcodes will work inside the
   widgets. We also gave it an id of `#extras-widget` so the CSS would look something
   like:
 *     ```
       #extras-widget {
       	float: right;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] Removing "by [my login]" with posts](https://wordpress.org/support/topic/removing-by-my-login-with-posts/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/removing-by-my-login-with-posts/#post-6936796)
 * You could just add an empty function to your child theme which will override 
   the parent theme.
 *     ```
       function skeleton_posted_on() {
       	//do nothing
       }
       ```
   
 * Obviously, if you wanted to change the functionality you’d want to duplicate 
   the function and edit as needed.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] Decreasing space between Navigation menu and Slider](https://wordpress.org/support/topic/decreasing-space-between-navigation-menu-and-slider/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/decreasing-space-between-navigation-menu-and-slider/#post-7030080)
 * It looks like the slider you’re using bases the height of the slider on the largest
   image in the set. This one in particular is causing the faux margin. [http://cl.ly/2k290F0v2W0T](http://cl.ly/2k290F0v2W0T)
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Smpl Skeleton] Not as "child friendly" as they imply](https://wordpress.org/support/topic/not-as-child-friendly-as-they-imply/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/not-as-child-friendly-as-they-imply/#post-7887668)
 * Thanks for the less than favorable review. I’m sorry it didn’t work out for you.
 * For future reference, the inline styles are imposed by the theme customizer. 
   That’s the tradeoff. If you don’t need them, you can just dequeue and pass off
   the responsibility to the child theme like so:
 *     ```
       add_action( 'wp_enqueue_scripts', 'customize_it_yourself');
       function customize_it_yourself() {
       	wp_deregister_style( 'skeleton-style' );
       }
       ```
   
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Smpl Skeleton] Close but no Cigar](https://wordpress.org/support/topic/close-but-no-cigar-4/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/close-but-no-cigar-4/#post-7926668)
 * Thanks for the less than favorable review. I’m sorry it didn’t work out for you.
 * For future reference, the inline styles are imposed by the theme customizer. 
   That’s the tradeoff. If you don’t need them, you can just dequeue and pass off
   the responsibility to the child theme like so:
 *     ```
       add_action( 'wp_enqueue_scripts', 'customize_it_yourself');
       function customize_it_yourself() {
       	wp_deregister_style( 'skeleton-style' );
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] One and a half images and description at the bottom](https://wordpress.org/support/topic/one-and-a-half-images-and-description-at-the-bottom-1/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/one-and-a-half-images-and-description-at-the-bottom-1/#post-5066224)
 * It looks like you have the CSS enabled in Jigoshop. If you’re using the older
   version of the theme with Jigoshop support, then you need to disable the styles
   imposed by Jigoshop in the plugin settings.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] Google Script not showing](https://wordpress.org/support/topic/google-script-not-showing/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/google-script-not-showing/#post-5253860)
 * This forum is for the current WP.org version of the theme. If you’ll open up 
   a ticket in Github I’ll see what I can do for the 1.x (2011) version.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] Previous Header Logo images not available](https://wordpress.org/support/topic/previous-header-logo-images-not-available/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/previous-header-logo-images-not-available/#post-5198238)
 * I believe this was a WordPress customizer issue that was addressed in WP 4.0.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Shortcodes] css problem](https://wordpress.org/support/topic/css-problem-34/)
 *  Plugin Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/css-problem-34/#post-5140215)
 * In the plugin settings located under Settings → Writing, you can disable the 
   JS/CSS assets and include them in your theme as you wish. The SASS source is 
   also included.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] smpl-skeleton customizer error](https://wordpress.org/support/topic/smpl-skeleton-customizer-error/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/smpl-skeleton-customizer-error/#post-5131717)
 * This sounds like either an issue with your migration or permissions on the uploads
   directory.
 * Migrating WordPress: [http://codex.wordpress.org/Moving_WordPress](http://codex.wordpress.org/Moving_WordPress)
   
   WordPress Permissions: [http://codex.wordpress.org/Changing_File_Permissions](http://codex.wordpress.org/Changing_File_Permissions)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smpl Skeleton] Blog Page problems](https://wordpress.org/support/topic/blog-page-problems-3/)
 *  Theme Author [simplethemes](https://wordpress.org/support/users/simplethemes/)
 * (@simplethemes)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/blog-page-problems-3/#post-5163203)
 * Apologies for the delayed reply. Looking at the above URL, it looks like you 
   were able to resolve this. Let me know if you’re still having issues and I’ll
   be glad to investigate further.

Viewing 15 replies - 1 through 15 (of 97 total)

1 [2](https://wordpress.org/support/users/simplethemes/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/simplethemes/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/simplethemes/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/simplethemes/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/simplethemes/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/simplethemes/replies/page/2/?output_format=md)