Mirek Kroupa
asked 10 years ago

Hey, news-carousel always displays “Video” icon. It somehow change “should be” gallery “or” text “. Version 1.0.3
The Archive Articles appear well
URL: http://www.4koridor.cz
Example Page Archive 
Mirek

2 Answers
Mirek Kroupa
answered 10 years ago

Excuse: Example Page Archive

Wilfred
answered 10 years ago

Hi Mirek,
To resolve this issue please follow my instruction:
1. Open file functions.php in your site > wp-content > your theme > functions.php
2. Replace following code – line 462

 $class = 'icon-facetime-video';

with:

 $class = 'icon-play';

3. Comment out the following code line – from line 470 to 475  (like image)

 if( $widget ) {
if( dw_focus_sidebar_has_widget( 'dw_focus_bottom', $widget->id ) ) { 
$class .= ' icon-play';
}
}

 
 
4. Add following code to Custom wp_head() code: in Dashboard > Apperance > Customize > General Setting > Custom wp_head() code

 <style>
#bottom .carousel .hentry.format-video .icon-post-format,
#bottom .carousel .hentry.format-audio .icon-post-format {
width: 32px;
height: 32px;
top: 0;left: 0;
margin: 0;opacity: 1;
}

#bottom .carousel .hentry.format-video .icon-post-format:before,
#bottom .carousel .hentry.format-audio .icon-post-format:before {
font-size: 14px;
line-height: 32px;
}
</style>

Hope this helps!

Mirek Kroupa
replied 10 years ago

Great! Thank you very much

Powered by DW Question & Answer Pro