Sampression
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sampression Lite] Filter post by category buttons missingHi tadpaul353,
You sure have messed up with HTML on header.php if not with JavaScript. Try switching to other themes like twenty twelve, deleting Sampression Lite theme and reinstalling fresh copy of Sampression. If that doesn’t help try disabling some plugins as they might interfere. But make sure you have a backup copy.
Thanks
Forum: Themes and Templates
In reply to: [Sampression Lite] Featured Image SizeHi fmnj,
Previously large sized images were used for featured images on home page. But we recently reduced the image size.
Please reset the featured image for your articles which causes new thumbnail sizes to be created. Also there are lots of good plugin available to regenerate thumbnails and resize thumbnails.Hope this may fix your problem.
Thanks
Forum: Themes and Templates
In reply to: [Sampression Lite] articles display problem in custom homepageHi alarm_webmaster,
That is most probably caused by the JS. If the problem self fixes when you resize navigator then you could use this code on that page
jQuery(document).ready(function() { setTimeout(function(){jQuery(window).resize()},2000); // This triggers window resize 2 seconds after dom is ready });
Please let us know if this helps you.
Thanks
Hi tadpaul353,
We don’t really found any problem in our side having two or more widgets on inner sidebar in any browser. You may be getting this problem because you may be missing some HTML code.
Please check thoroughly and let us know.
Thanks,
Sampression TeamHi jrgndwvr,
Thank you for your interest on our theme “Sampression Lite”. But unfortunately it does not support sticky post on left side till day.
Thanks
Hi Frettsy,
Until our next update please replace the function on \wp-content\themes\sampression-lite\includes\functions.php
function sampression_default_widgets() { ... }
with
function sampression_default_widgets() { $sidebars_widgets = get_option( 'sidebars_widgets' ); if( empty($sidebars_widgets['bottom-widget-3']) ){ //if there are no widgets on the 'bottom-widget-3' $id = count( $sidebars_widgets ) + 1; $sidebars_widgets['bottom-widget-3'] = array( "text-" . $id ); $ops = get_option( 'widget_text' ); $ops[$id] = array( 'title' => 'About me automatic widget', 'text' => 'This is an automatic widget added on Third Bottom Widget box (Bottom Widget 3). To edit please go to Appearance > Widgets and choose 3rd widget from the top in area second called Bottom Widget 3. Title is also manageable from widgets as well.', ); update_option( 'widget_text', $ops ); update_option( 'sidebars_widgets', $sidebars_widgets ); } }
Hope this helps.
Thanks
Forum: Themes and Templates
In reply to: [Sampression Lite] top menu text colourHi tadpaul353,
Please change the css color at line 503 on your style.css file in your theme directory
#top-nav ul li a:hover, #top-nav ul li.current-menu-item a, #top-nav ul li:hover > a, #top-nav ul li.current-menu-ancestor a, #top-nav ul li.current-menu-parent a, #top-nav ul li.sfHover li li a:hover { color: #FF0000; }
to whatever you like.
Also change the CSS color at line 499#top-nav ul a:link, #top-nav ul a:visited { color: #FFFFFF; text-decoration: none; }
to whatever you like.
Thanks.
Forum: Themes and Templates
In reply to: [Sampression Lite] Filter categoryHi Simplemimple,
We have tested thoroughly on our side and its works perfectly. One thing you may be facing is that when you click on a category and if there are insufficient posts related to that category on homepage then it automatically appends other posts on that category but not currently displayed on homepage.
This is a desired behaviour.If you are still having problem please post with some screenshot and possibly with your site’s link.
Thanks,
Sampression Team
Forum: Themes and Templates
In reply to: [Sampression Lite] Image size, position, css?Hi 3×7,
What sort of help you need? Please specify in details. You may also want to see this link.
Thanks,
Sampression TeamHi Strangerrj,
Thank you for using our theme “Sampression Lite”. This feature is not currently available on lite theme. And we are thinking about adding this feature in near future maybe in pro theme.
Thanks,
Sampression TeamForum: Themes and Templates
In reply to: [Sampression Lite] Featured images sizeHi Aborruso,
You are right the optimum image size is 700 x 400 pixel. Please check this link here for using different sizes on homepage and internal pages.
Thanks,
Sampression TeamHi Hjmt,
Currently we are loading same image on homepage and single page. You can use different image sizes on homepage and interior pages. For this do the following:- 1.
- 2.
go to functions.php file on \wp-content\themes\sampression-lite\includes\
add the following line after line 61
add_image_size( 'featured-thumbnail', 220);
- 3.
Now go to loop.php on \wp-content\themes\sampression-lite\ on line 27 and replace
<?php the_post_thumbnail( 'large','',true ); ?>
with
<?php the_post_thumbnail( 'featured-thumbnail','',true ); ?>
- 4.
Go to single.php on \wp-content\themes\sampression-lite\ on line 29 and replace that line with the following code
<?php the_post_thumbnail( 'featured' ); ?>
Hope this helps.
Thanks,
Sampression TeamForum: Themes and Templates
In reply to: [Sampression Lite] Filter categoryHi Asdrubal,
Please update your theme.
This should fix your problem
Thanks,
Sampression Team
Forum: Themes and Templates
In reply to: [Sampression Lite] Where is the frame breaker codeHi Eastwestslim,
Can you please explain more?
Thanks,
Sampression Team
Hi Beesal,
To fix this you need to create a child theme and make modification to single.php
We have created a new child theme of sampresion lite. Which you can download on the link below:
https://temp-share.com/show/2gFHq2R78Please download the child theme and install to fix it.
Thanks,
Sampression Team