mjhead
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Duena] Blurred featured image from blog postsHi.
First of all try to regenerate your thumbnails with this plugin. Also check your images – featured thumbnail default dimension is 770*295px, if image is smaller than that dimensions – it will be shown with real size, then, if it’s width smaller than 770px, it will be stretched to this width, and become ‘blurred’, so you need use as featured images equal or larger than 770*295pxForum: Themes and Templates
In reply to: [Duena] Hide Featured Image WithIn The PostHi.
Enable or disable featured images for single post or for posts on blog page you can at Appearance->Theme Options->Blog.
Featured image dimensions is 770*295px. If uploaded image larger than that dimensions it will be cropped to this size, if smaller – pasted with real size.Forum: Themes and Templates
In reply to: [Bueno] 1.0.2 – What changed?Hi,
No, there are no features with this update – it was minor bug hotfix – fixed ‘href’ attributes in Social block links in sidebarForum: Themes and Templates
In reply to: [Bueno] sliderFirst of all try to regenerate your thumbnails with this plugin. Also check your images – slider thumbnail dimension is 770*360px, if image will be smaller than this dimension – it will not be cropped and pasted into slider with real size, than, if it’s width smaller than 770px, it will be stretched to this width, and it’s height is automatically will become larger
Forum: Themes and Templates
In reply to: [Bueno] sliderHi,
Can you, please, give a link on your siteForum: Themes and Templates
In reply to: [Duena] Portfolio of a specific category?Hi, @serecrea
This update was actual for version 1.0.7. In current version 1.1.0 this option is already built-in. You can find it in Appearance->Theme Options->General->Category slug for portfolio page.
To fix your problem you need to upload and replace Duena theme into your wordpress themes directory.
P.S. also some strange thing with your error – parser says that error on line 1294, but in file options.php on Github only 1291 lines…Forum: Themes and Templates
In reply to: [Duena] Words being split in halfForum: Themes and Templates
In reply to: [Bueno] pages errorsHi,
Can you please be more specific, ’cause is difficult to understand, when this error is happens. Can you please give a link on a page with this error, for example?Forum: Themes and Templates
In reply to: [Bueno] social network widgetHi,
thanks for finding this. We’ll fix it as soon as possible.Until update not ready, fixed file functions.php you can find here
Forum: Themes and Templates
In reply to: [Duena] menu depthHi,
First of all, before make any changes I recommend you to create Deuna child theme and then you can put all css code in the childs theme style.css (you can find tutorial here)
Then add to your style.css in child theme next code:.navbar_inner > div > ul li li:hover > ul, .navbar_inner > div > ul li li.sfHover > ul, .navbar_inner > ul li li:hover > ul, .navbar_inner > ul li li.sfHover > ul { left: 101%; top: -10px !important; }Forum: Themes and Templates
In reply to: [Duena] Sliding effectHi,
check this, pleaseForum: Themes and Templates
In reply to: [Duena] problem within the flexslider.cssYou add Galerie post with post format gallery after your first post. On blog page this post format try to display a slider with images, attached to your post. You don’t attach any images, but slider still trying to show it and create place for pagination, but haven’t images to show, so pagination jumps under pervios post. It’s our mistake, we’ll fix it with update.
Forum: Themes and Templates
In reply to: [Duena] much Portfolio pages filterable by categoryHi
If I understand you in right way, maybe this topic can help you
Forum: Themes and Templates
In reply to: [Duena] problem within the flexslider.cssHello,
Can you please give a link on your blog?
Forum: Themes and Templates
In reply to: [Duena] how do i display full text on the homepageHi
First off all I reccomed you to create your own child theme for Duena for making such changes. You can find tutorial on WordPress Codex
Then you need to create in you child theme folder post-formats and copy into it file standard.php from Duena theme (it located in the post-formats directory).
Open copied file and find next code there:
<?php if ( 'false' != of_get_option('post_excerpt')) { ?> <div class="excerpt"> <?php $excerpt = get_the_excerpt(); if (has_excerpt()) { the_excerpt(); } else { echo duena_string_limit_words($excerpt,55); } ?> </div> <?php } ?> <?php if ( 'false' != of_get_option('post_button')) { ?> <a href="<?php the_permalink() ?>" class="more_link"><?php _e('Read more', 'duena'); ?></a> <?php } ?>you can replace all this code with
<?php the_content(''); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'duena' ), 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>And you will have full post content on your home (blog) page