Cabinstock
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: Adsense Ready, Black, CSS3, Custom Header, Custom Menu, Featured Content, Featured Images, Fixed Width, Full Width Template, HTML5, Left Sidebar, Responsive, Right Sidebar, Sidebar Footer, Theme Options, Threaded Comments, Three Columns, White, Widget Ready
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
the theme will auto get the post featured images when submit to facebook. do you have any featured image attach to the posts?
Hi Ronald,
it’s few week I have the same problem. Sharing on social network it doesn’t show any image.
do you any attach featured image in post?
Hi! Thank you very much for the answer.
No, i don’t have featured images. I tried to solve the problem choosing an image as Featured but nothing changed.
Updating: I discovered that if I use a shorten url service like goo.gl, and I share the link on facebook, i can choose the thumbnail among all image of the page.
Btw, it isn’t very convenient: i can share goo.gl’s links, but my follower will share the original link.
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.
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
[php]
#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;
}
[/php]
How to remove the number of reads in the homepage under each post title?
Thank you
hi open lib/templates/post-meta.php edit line 31 from
[php]<?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; ?>[/php]
to
[php]<?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; */ ?>[/php]
thank you
Hello! How can I show the full post in the main page with embeded media content? For example: Soundcloud, Youtube, etc.
PD: Sorry about my English.
Thank you! Best Regards,
John.
open home.php go to line 34 and edit this
[php]<?php echo get_featured_post_image("<div class=’post-thumb’>", "</div>", 150, 150, "alignleft", "thumbnail", ‘image-‘.get_the_ID() ,get_the_title(), false); ?>
<?php get_the_featured_excerpt($excerpt_length=45); ?>[/php]
to
[php]<?php echo the_content(‘..read more’); ?>[/php]
Thank you,I really love you 🙂