Aigars Silkalns
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Update on Page/Post not showing on actual siteI seem to have the same problem. I’ve posted a thread over at WordPress Answers:
http://wordpress.stackexchange.com/questions/62642/old-versions-of-posts-are-displayed-in-listingsForum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Fatal Error, Won't ActivateI have the same problem. PHP 5.4.5.
Are you running WP 3.4?
Thanks for reporting this issue. I will fix it right away!
Forum: Themes and Templates
In reply to: [Blaskan] [Theme: Blaskan] Captions not working in WP3.4This has now been fixed (https://github.com/persand/blaskan/issues/91).
Forum: Themes and Templates
In reply to: How to change header linkUse a child theme and override the blaskan_header_structure function in it.
I’ve created a child theme boilerplate to help you get started.
Forum: Themes and Templates
In reply to: [Blaskan] [Theme: Blaskan] Captions not working in WP3.4It will be fixed in Blaskan 2.6 which will be released next week.
Forum: Themes and Templates
In reply to: [Blaskan] [Theme: Blaskan] Captions not working in WP3.4Thanks for reporting this. I’ll have a look at it this week.
Forum: Themes and Templates
In reply to: [Theme: Blaskan] 2.4 buggy get 2.41 from githubUntil Blaskan 2.4.1 is approved on WordPress.org you can download it from here:
https://github.com/downloads/persand/blaskan/blaskan-2.4.1.zipForum: Themes and Templates
In reply to: [Blaskan] [Theme: Blaskan] Widget drag/drop not workingReally sorry about the mess.
This bug is now fixed and I’ve submitted an update to WordPress.org:
http://themes.trac.wordpress.org/ticket/7683Until then you can download Blaskan 2.4.1 from here:
https://github.com/downloads/persand/blaskan/blaskan-2.4.1.zipForum: Themes and Templates
In reply to: [Blaskan] [Theme: Blaskan] Thumbnails in excerptsCould you provide the URL to the site?
Forum: Themes and Templates
In reply to: Helpp with parent page!!!From what I can see you seem to have fixed it by yourself…?
Forum: Themes and Templates
In reply to: [Blaskan] [Theme: Blaskan] Feature Request: Print CSSThere are print styles included in style.css but for some reason they doesn’t work. Thanks for reporting this issue, I’ll have a look at it.
Thanks Voxpress!
- Create a child theme
- Copy all the contents of loop.php in Blaskan to a file called loop-index.php in your child theme
- In loop-index.php replace the code on line 51 as described below
Replace this:
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'blaskan' ) ); ?>With this:
<?php if ( is_front_page() ): ?> <?php the_excerpt(); ?> <?php else: ?> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'blaskan' ) ); ?> <?php endif; ?>Forum: Themes and Templates
In reply to: Overrule framework.css in Child themeTo override the framework.css in Blaskan with your own framework.css in your child theme add this code to the functions.php file in your child theme:
function blaskan_css_init() { if ( !is_admin() && !in_array( $GLOBALS['pagenow'], array( 'wp-login.php', 'wp-signup.php', 'wp-register.php' ) ) ) { wp_enqueue_style( 'blaskan-framework', get_stylesheet_directory_uri() . '/framework.css', array(), false, 'screen' ); wp_enqueue_style( 'blaskan-style', get_bloginfo('stylesheet_url'), array(), false, 'screen' ); } }