beauty cuts theme

Home Forums All Other Themes beauty cuts theme

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #32797
    LynetteLynette
    Member
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: December 9, 2015

    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

    #32855
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30633
    • Total: 30633
    Member since: August 16, 2013

    Hi 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,
    Brad

    #32862
    LynetteLynette
    Member
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: December 9, 2015

    Sent

    #32875
    Sonnal S SinhaSonnal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6964
    • Total: 6974
    Member since: June 12, 2013

    Okay got it. Kindly give us time till Monday morning as its Friday night to resolve this.

    Regards,
    Shri

    #33320
    LynetteLynette
    Member
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: December 9, 2015

    Can you provide an update on this?

    #33325
    Sonnal S SinhaSonnal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6964
    • Total: 6974
    Member since: June 12, 2013

    Hi,

    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,
    Shri

    #33352
    LynetteLynette
    Member
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: December 9, 2015

    sure

    (keith)

    #33386
    Sonnal S SinhaSonnal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6964
    • Total: 6974
    Member since: June 12, 2013

    Hi,

    This is done.

    Regards,
    Shri

    #33551
    LynetteLynette
    Member
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: December 9, 2015

    hi 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.

    #33763
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30633
    • Total: 30633
    Member since: August 16, 2013

    Hi Lynette,

    This issue was resolved from our end. Kindly check and confirm.

    Regards,
    Brad

    #34357
    LynetteLynette
    Member
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: December 9, 2015

    #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?

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.