Find MagPress on Google+

Cabinstock

http://www.magpress.com/wp-content/uploads/2012/10/cabinstock-wordpress-theme-thumb-170x150.png Wordpress Themes Ronald ,,,,,,,,,,,,,,,,,,

   Running a Business and Monetize site?

    Using the theme but need to remove our links
    for commercial and business use. please consider:
Price - $37.00
License - GNU General Public License
Unlimited concurrent domain and multisite domain uses for personal or clients and commercial projects

cabinstock wordpress theme

Cabinstock WordPress theme is a 3 columns grid HTML5/CSS3 Responsive WordPress template by MagPress.com. This theme has theme options, featured content and categories, Adsense ready, etc.

Tags: , , , , , , , , , , , , , , , , , ,
Zip http://www.magpress.com/wp-content/uploads/2012/10/cabinstock-wordpress-theme-thumb-170x150.png
Version 1.1

- Minor change on lib/functions/theme-functions.php.

Version 1.0

- Initial release v1.0.

WordPress
Download (2066) Demo/Preview 7 Comments

   Running a Business and Monetize site?

    Using the theme but need to remove our links
    for commercial and business use. please consider:
Price - $37.00
License - GNU General Public License
Unlimited concurrent domain and multisite domain uses for personal or clients and commercial projects

Version and Changelog

Version 1.1

- Minor change on lib/functions/theme-functions.php.

Version 1.0

- Initial release v1.0.

7 Comments Already

  1. leena Cabinstock http://www.magpress.com/wordpress-themes/cabinstock.html

    hi ronal hope u fine .this theme really great, i useing this theme , but when i share some post on facebook or google + thene i can’t see tumb like others wp theme, why ? plz hel me

    hi ronal hope u fine .this theme really great, i useing this theme , but when i share some post on facebook or google + thene i can’t see tumb like others wp theme, why ? plz hel me

    • Ronald Cabinstock http://www.magpress.com/wordpress-themes/cabinstock.html

      the theme will auto get the post featured images when submit to facebook. do you have any featured image attach to the posts?

      the theme will auto get the post featured images when submit to facebook. do you have any featured image attach to the posts?

  2. Harpreet Cabinstock http://www.magpress.com/wordpress-themes/cabinstock.html

    i am using cabinstock theme for my blog but i want to modify it to small change.. i want to increase the thumbnail size to full width of content box and in order as follows:
    1. TITLE (with big fonts)
    2. TEXT
    3. THUMBNAIL (max width as width of content box)

    and you themes are very nice.. i appreciate your work. :)

    thanks

    i also want to make the left sidebar i.e menu , sticky. so while scrolling it should stick to the browser window and float with scrolling.

    sorry i want to make left white columns sticky.

    i am using cabinstock theme for my blog but i want to modify it to small change.. i want to increase the thumbnail size to full width of content box and in order as follows:
    1. TITLE (with big fonts)
    2. TEXT
    3. THUMBNAIL (max width as width of content box)

    and you themes are very nice.. i appreciate your work. :)

    thanks

    i also want to make the left sidebar i.e menu , sticky. so while scrolling it should stick to the browser window and float with scrolling.

    sorry i want to make left white columns sticky.

    • Ronald Cabinstock http://www.magpress.com/wordpress-themes/cabinstock.html

      hi harpreet, first open home.php and index.php and replace this code to for both php

      http://pastebin.com/Cn6pX9Ch

      and then open style.css and add this css code for the featured images thumb tweak and sticky left menu

      #custom #post-entry div.post-thumb {
          height: auto;
          margin: 20px 0 0;
          max-height:250px;
          width: 100%;
      }
      
      #custom #left-container {
          float: left;
          position: fixed;
          width: 250px;
      }
      

      hi harpreet, first open home.php and index.php and replace this code to for both php

      http://pastebin.com/Cn6pX9Ch

      and then open style.css and add this css code for the featured images thumb tweak and sticky left menu

      #custom #post-entry div.post-thumb {
          height: auto;
          margin: 20px 0 0;
          max-height:250px;
          width: 100%;
      }
      
      #custom #left-container {
          float: left;
          position: fixed;
          width: 250px;
      }
      
  3. Franz Cabinstock http://www.magpress.com/wordpress-themes/cabinstock.html

    How to remove the number of reads in the homepage under each post title?
    Thank you

    How to remove the number of reads in the homepage under each post title?
    Thank you

    • Ronald Cabinstock http://www.magpress.com/wordpress-themes/cabinstock.html

      hi open lib/templates/post-meta.php edit line 31 from

      <?php if( !is_singular() ): ?>
      <?php if ( function_exists( 'get_wp_post_view' ) ) { $view_count = get_wp_post_view( get_the_ID() ); if(!$view_count) { $view_count = '0 Read'; } elseif( $view_count == '1' ) { $view_count = '1 Read'; } else { $view_count=$view_count. ' Reads'; }?><span class="post-view"><a title="Click here to read <?php the_title(); ?>" href="<?php echo the_permalink(); ?>"> <?php echo $view_count; ?></a></span>
      <?php } ?>
      <?php endif; ?>

      to

      <?php /* if( !is_singular() ): ?>
      <?php if ( function_exists( 'get_wp_post_view' ) ) { $view_count = get_wp_post_view( get_the_ID() ); if(!$view_count) { $view_count = '0 Read'; } elseif( $view_count == '1' ) { $view_count = '1 Read'; } else { $view_count=$view_count. ' Reads'; }?><span class="post-view"><a title="Click here to read <?php the_title(); ?>" href="<?php echo the_permalink(); ?>"> <?php echo $view_count; ?></a></span>
      <?php } ?>
      <?php endif; */ ?>

      hi open lib/templates/post-meta.php edit line 31 from

      <?php if( !is_singular() ): ?>
      <?php if ( function_exists( 'get_wp_post_view' ) ) { $view_count = get_wp_post_view( get_the_ID() ); if(!$view_count) { $view_count = '0 Read'; } elseif( $view_count == '1' ) { $view_count = '1 Read'; } else { $view_count=$view_count. ' Reads'; }?><span class="post-view"><a title="Click here to read <?php the_title(); ?>" href="<?php echo the_permalink(); ?>"> <?php echo $view_count; ?></a></span>
      <?php } ?>
      <?php endif; ?>

      to

      <?php /* if( !is_singular() ): ?>
      <?php if ( function_exists( 'get_wp_post_view' ) ) { $view_count = get_wp_post_view( get_the_ID() ); if(!$view_count) { $view_count = '0 Read'; } elseif( $view_count == '1' ) { $view_count = '1 Read'; } else { $view_count=$view_count. ' Reads'; }?><span class="post-view"><a title="Click here to read <?php the_title(); ?>" href="<?php echo the_permalink(); ?>"> <?php echo $view_count; ?></a></span>
      <?php } ?>
      <?php endif; */ ?>
      • Franz Cabinstock http://www.magpress.com/wordpress-themes/cabinstock.html

        thank you

        thank you

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <span style="">

«