Home › Forums › All Other Themes › beauty cuts theme
- This topic has 10 replies, 3 voices, and was last updated 8 years, 6 months ago by Lynette.
-
AuthorPosts
-
May 6, 2016 at 3:35 am #32797
I’ll start by saying that I’m not sure where to go with this problem…
I have the Beauty Cuts theme installed, as well as the plugin Easy Tesimonials. I’m having two formatting problems with this theme.
#1 – http://www.harmonysalon-nj.com/
In section 2 the homepage, there’s a testimonial slider. The formatting always seems to be a bit off. On some reviews, you’ll see the review, followed by who left it, and maybe the date. Some reviews may only have, you may not see the reviewer or date. On some you may just not see the date. It seems that this information shouldn’t really be in the body of the review, but rather after the right-justified dash on the line below. How can I fix?#2 – http://www.harmonysalon-nj.com/reviews/
On the testimonial form, all CSS formatting seems to be lost. There should also be rating stars, but only a <select> box shows instead. Any thoughts on how to fix?Thanks
May 6, 2016 at 12:43 pm #32855Hi Lynette,
Kindly send us your URL of the site and WordPress admin details via sktthemes.net/contact
Please mention this forum URL while replying so that we understand what needs to be done.
Regards,
BradMay 6, 2016 at 1:57 pm #32862Sent
May 6, 2016 at 5:50 pm #32875Okay got it. Kindly give us time till Monday morning as its Friday night to resolve this.
Regards,
ShriMay 11, 2016 at 12:43 pm #33320Can you provide an update on this?
May 11, 2016 at 1:13 pm #33325Hi,
Your developer did send us an email for the same but somehow i lost it. Normally i don’t loose any. Sorry about the same.
Can you re-forward that email again?
Would get this done by tomorrow morning itself.
Regards,
ShriMay 11, 2016 at 6:52 pm #33352sure
(keith)
May 12, 2016 at 10:36 am #33386Hi,
This is done.
Regards,
ShriMay 13, 2016 at 3:33 pm #33551hi shri,
the formatting for the reviews was all lost. it used to be a slider that shows one review at a time, now there’s several displayed vertically.May 16, 2016 at 12:05 pm #33763Hi Lynette,
This issue was resolved from our end. Kindly check and confirm.
Regards,
BradMay 21, 2016 at 2:00 am #34357#1 is fixed. #2 from my original post was still a problem. The problem is that sometimes there’s Javscript running that references nivoSlider, but that object isn’t on every page, so it’s undefined. I wound up fixing it with this an IF block that checks for the object first, as in:
// functions.php jQuery(document).ready(function() { if(!jQuery('#slider').nivoSlider) return; jQuery('#slider').nivoSlider({ effect:'<?php echo of_get_option('slideefect',true); ?>', animSpeed: <?php echo of_get_option('slideanim',true); ?>, pauseTime: <?php echo of_get_option('slidepause',true); ?>, directionNav: <?php echo of_get_option('slidenav',true); ?>, controlNav: <?php echo of_get_option('slidepage',true); ?>, pauseOnHover: <?php echo of_get_option('slidepausehover',true); ?>, }); });
// custom.js // nivo slider jQuery(window).load(function() { if(jQuery('#slider').nivoSlider){ jQuery('#slider').nivoSlider({ effect: 'fade' }); } if(jQuery('ul#testimonials').quote_rotator){ jQuery('ul#testimonials').quote_rotator(); } });
Could these changes be evaluated and changed on your end, in case a template update is ever pushed out?
-
AuthorPosts
- You must be logged in to reply to this topic.