mjhead
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Duena] Issues with editing ExcerptHi.
It’s occurs because you exceed standart wordpress excerpt length. So you need to increase default excerpt length.
Add the below code in your functions.php
function new_excerpt_length($length) { return 200; } add_filter('excerpt_length', 'new_excerpt_length');Increase the count as per your wish.
Forum: Themes and Templates
In reply to: [Duena] Still having problems with "Read More text"Hi.
For change this text you need to edit file standart.php in post-formats folder.Find next code there:
<?php if ( 'false' != of_get_option('post_button')) { ?> <a href="<?php the_permalink() ?>" class="more_link"><?php _e('Read more', 'duena'); ?></a> <?php } ?>and change Read more text any way you want.
Note, if you will be make any changes don’t forget use child themes for it. You can find great tutorial here http://codex.wordpress.org/Child_Themes.
Also you have second way – Duena is translate ready theme, but unfortunately now we haven’t possibility include more translate files into theme package, but you can do your own translate for yourself – here you can find some tips
Forum: Themes and Templates
In reply to: [Duena] Sidebar widgets begin at the end of the contentHi,
Looks like you have some plugins installed which include Bootstrap styles into theme, this styles are broke same styles included by theme.
For examplepadding-right: 15px; padding-left: 15px;on .container css class and some others
Forum: Themes and Templates
In reply to: [Duena] Slider helpHi @andrei rubino
First of all you need to make sure that your slider enabled. You can do it in Appearence -> Theme Options -> Slider (visualisation), option Show slider must be set to Enabled.
Than you need to attach featured image to your post. Because slider get slides from blog posts featured images.
And you need to add more than one post, to force slider to start sliding. If you leave one posts you get only one big image, not slider
Forum: Themes and Templates
In reply to: [Duena] top barHi,
Find the next code in your style.css.page-wrapper:before { background: url("images/page-top-bg.jpg") no-repeat scroll center 0 #FF5B5B; content: ""; height: 6px; left: 0; position: absolute; right: 0; top: 0; }This code fragment responsible for styling this bar, you can change it any way you want.
Also I recommend you to use child theme for making changes in your themeForum: Themes and Templates
In reply to: [Duena] Changing all the pinkIf you will be make all changes directly in theme, you need to edit style.css, bootstrap.css, flexslider.css, if you will use own child theme – you can override all styles in child theme’s style.css, just copy needed code from parent theme and edit it how you want.
Forum: Themes and Templates
In reply to: [Duena] widget not moving to the sidebar and slider issuesTry to clear cache in Mozilla, maybe it’s some deep caching…
Forum: Themes and Templates
In reply to: [Duena] widget not moving to the sidebar and slider issuesYep, I’ve tested it one more time just now – prev/next buttons in your slider works fine. I check it in last version Chrome, Mozilla and IE 8-10. Strange…
Forum: Themes and Templates
In reply to: [Duena] Creating completely blank pageHi. Sorry to keep you waiting long.
Don’t quite understand what I could try for you (: I gave you code of page template you needed, it’s works, I tested it.
Did you looked for WordPress Codex article about Page Templates(link)? All you need to create own one you can find here.
I hope you succeed (:
Forum: Themes and Templates
In reply to: [Duena] widget not moving to the sidebar and slider issuesHi.
1) Hmmm… I watch on your site, looks like slider controls works fine.
2) Have you any plugins installed on your site? Problem may be with some of them
Forum: Themes and Templates
In reply to: [Duena] Changing all the pinkHi. You can change any colors you want only via CSS files. Also I recommend you to use child theme for this reasons.
Hex of color you need is #FF5151
Forum: Themes and Templates
In reply to: [Duena] cart box positionHi,
you can find Woocommerce compatibility package for Duena here.
It’s package – is simple WordPress plugin, which makes Duena theme compatible with Woocommerce plugin, so you need just upload it into plugins directory and activate from dashboard. Be careful with nested directories (for correct work files structure after uploading must be plugins/duena-woocommerce-compatibility-master/duena-woocommerce-compatibility.php)This plugin adds only basic compatibility, so almost all styles gets from Woocommerce default CSS
Forum: Themes and Templates
In reply to: [Duena] Portfolio of a specific category?Hi,
you can find this small update here – required files is options.php and inc/extras.php – it’s only files you need to replace in your theme.
To update your own theme you need to replace appropriate files in yuor theme with files from Github. There are no possibility to change this files via child theme, so you need to be very careful with replacing this files. Make this update only if you sure that you changing right files.
When update will be done in your Appearance->Theme Options->General will be added option Category slug for portfolio page
Forum: Themes and Templates
In reply to: [Duena] Plugin (post date tags) custom date entryHi,
If I quite understand your question, you need go to Settings->General in your admin panel and you have Date format option thereForum: Themes and Templates
In reply to: [Duena] Slider Image Not Showing@terence1
You have featured images attached to your blog posts?