D5 Creation
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [D5 CORPORATE LITE] Changing Color Scheme on D5 Corporate LiteFree version has one color scheme.
Forum: Themes and Templates
In reply to: [Small Business] problem with Small BusinessThank you all for all these comments.
Forum: Themes and Templates
In reply to: [Small Business] How to control number of slidesIf you visit our theme page you will find that the free version is supported for latest 02 posts slideshow. You can also find the Free Version and Pro Version features list there. Small Business Theme Page.
Forum: Themes and Templates
In reply to: [Small Business] SlideshowIf you visit our theme page you will find that the free version is supported for latest 02 posts slideshow. You can also find the Free Version and Pro Version features list there. Small Business Theme Page.
Forum: Themes and Templates
In reply to: [Small Business] problem with Small BusinessHello,
You need to use featured images with your posts which will be shown as the sliding images. Pro version has the option to remove the featured boxes.
Thanks
No, The Free Version also has the functionality of Custom Header ,Custom Background and Custom Menu. Please find it under Appearance
You can insert your logo using the Custom Header Option
Please go to Appearance > Header and you will get the Logo Upload Option.
This image may help you to find: https://i.imgur.com/QmjF7.jpg
Forum: Themes and Templates
In reply to: Trouble unlinking uploaded background image from new pagesNice Design after customization!
You can use custom style within page template.The problem occurs when you use the_excerpt() instead of the_content()
Open the functions.php and go to Line no 97. Remove the 04 linesfunction d5businessline_auto_excerpt_more( $more ) { return ' …' . d5businessline_continue_reading_link(); } add_filter( 'excerpt_more', 'd5businessline_auto_excerpt_more' );
and paste the following lines
function d5businessline_excerpt_length( $length ) { global $blExcerptLength; if ($blExcerptLength) { return $blExcerptLength; } else { return 50; //default value } } add_filter( 'excerpt_length', 'd5businessline_excerpt_length', 999 ); function d5businessline_excerpt_more($more) { global $post; return '<a href="'. get_permalink($post->ID) . '" class="read-more">Read the Rest...</a>'; } add_filter('excerpt_more', 'd5businessline_excerpt_more');