Hi, I would like to display a thumbnail images for my featured post but i dont want the picture to appear a slider in my post. Is there a way to enable back the featured image button instead?
Featured images
8 posts from 2 voices-
Posted 4 months ago #
-
Hi nvd80,
Just upload 1 image on your Featured Media and it will function like the Featured Image. It will become a slider if the Featured Media contains more than 1 image.
Regards,
IsmaelPosted 4 months ago # -
In my case, I only upload 1 image. It does become thumbnail but it also display it as a very big image in my post. Also I got another problem whereby the Top banner message keep on appearing on every page i open though after click close. you can have a look here http://ybstenaga.com/ybs. Hope to get some solution.
Thanks a lot!
Posted 4 months ago # -
Hi nvd80,
For the 1st question, can you post a link to your site specifically the post where the featured media becomes a thumbnail and a big image.
For the 2nd question, Check this thread: http://www.kriesi.at/support/topic/infobox-always-closed
(the one in the thread is using angular, but it can be used on propulsion)Regards,
IsmaelPosted 4 months ago # -
Hi Ismael. Thanks for the link but i still couldn't find a way to close the infobox. I'm sure this is not set by default but what could cause it? Any help on ways to solve this particular problem in Propulsion?
As for the Thumbnail, I decided to leave it as it is.
Posted 4 months ago # -
Hi,
Did you make the changes on the code located in wp-content/themes/angular/functions.php? You need to change minimized to maximized.
Regards,
IsmaelPosted 4 months ago # -
Ismael,
I'm using propulsion and this is the function that u might be referring to:
if(!function_exists('avia_banner')) { function avia_banner($position) { $extraClass = ""; $output = ""; $cookieHash = ""; $bannerText = avia_get_option('banner'); $cookieName = THEMENAME.'_avia_banner'; $bannerHash = md5($bannerText); if($position) $extraClass = 'relative_pos'; if(!empty($_COOKIE[$cookieName])) $cookieHash = $_COOKIE[$cookieName]; $output .= "<div class='$extraClass container_wrap info_text_header' id='info_text_header' data-hash='$bannerHash' data-cookiename='$cookieName'><div class='container no_css_transition'>"; if(trim($bannerText) != "" && $bannerHash != $cookieHash) { $output .= "<div class='infotext'>$bannerText <a class='close_info_text rounded' href='#close'>".__('close','avia_framework')."</a></div>"; } $output .= "</div></div>"; echo $output; } }Any clue on how to fix this?
Posted 4 months ago # -
Hi nvd80,
Try to change it to:
if(!function_exists('avia_banner')) { function avia_banner($position) { $extraClass = ""; $output = ""; $cookieHash = ""; $bannerText = avia_get_option('banner'); $cookieName = THEMENAME.'_avia_banner'; $bannerHash = md5($bannerText); if($position) $extraClass = 'relative_pos'; $output .= '<div class="container_wrap info_text_header" id="shop_header"><div class="container"></div></div>'; echo $output; } }Hope this helps. :)
Regards,
IsmaelPosted 4 months ago #
Reply
You must log in to post.














