Recent content by HippySunshine

  1. HippySunshine

    100vh on mobile issues

    The site isn't live yet so I can't :(
  2. HippySunshine

    100vh on mobile issues

    I can see across the web that 100vh causes some issues for mobile. For example, I have a full width and height slick slider that works perfectly on mobile firefox, but on mobile safari and mobile chrome, where the UI has that slide up address bar, the slider navigation dots are below the...
  3. HippySunshine

    Slick Slider Help - Custom navigation cursor

    Just a note, not sure if this is happening for anyone else, but sometimes the slick css isn't loading on codepen, so you need to add in: //cdn.jsdelivr.net/npm/[email protected]/slick/slick.css in the CSS settings :/
  4. HippySunshine

    Slick Slider Help - Custom navigation cursor

    I'm having issues with a slick slider that a client wants. They basically want custom cursors as the navigation, and on click of the right half of the slide, it slides right, and clicking the left, slides left. I've achieved this by making the two buttons full height and 50% width of the slide...
  5. HippySunshine

    Slick slider issues in Firefox

    Nevermind - I fixed it... I had the wrong animation on .slider :X3: Sometimes I swear I shouldn't be coding. I've spent way too many hours on this!
  6. HippySunshine

    Slick slider issues in Firefox

    I've made up a codepen with my exact code: https://codepen.io/pixelboutiqueuk-the-lessful/pen/rNOPqgN This works as it should in chrome, but Firefox seems to dislike it. Am I missing something?
  7. HippySunshine

    Slick slider issues in Firefox

    Me again! I'm sorry I post all my problems here, but you guys are great at advice and getting me out of sticky situations, and I learn a lot from your answers! So as long as you keep helping, I'm going to keep asking :X3: But seriously, apreciate you all! Anyway... Ido have a problem I could do...
  8. HippySunshine

    Gulp - compile multiple sass sources and destinations

    I'm pretty new to Gulp, but I thought I had a handle on it, until I inherited a WordPress theme that needed some development work on. I've been compiling my styles with no issues until it came to compiling the editor-styles.scss This is the basic file structure for my styles: theme-name...
  9. HippySunshine

    Comment Rating plugins not working with custom comment form template WordPress

    So to make this work, I'll have to remove the custom form and replace it with the standard form instead right? That was my thinking but didn't want to go down that route unless there was no other option.
  10. HippySunshine

    Comment Rating plugins not working with custom comment form template WordPress

    This might be more helpful... does this mean anything to you? /** * Initialize hooks. * * @since 1.0.0 */ public function init_hooks() { add_action( 'comment_form_logged_in_before', array( $this, 'comment_form_fields' ) )...
  11. HippySunshine

    Comment Rating plugins not working with custom comment form template WordPress

    This is what I can see in the plugin file: /** * Initialize hooks. * * @since 1.0.0 */ public function init_hooks() { add_action( 'comment_form_logged_in_before', array( $this, 'comment_form_fields' ) ); add_action(...
  12. HippySunshine

    Comment Rating plugins not working with custom comment form template WordPress

    I tried to see where the hook was and how it was working, but I was frustrated at that point and failed :(
  13. HippySunshine

    Comment Rating plugins not working with custom comment form template WordPress

    I have inherited a WP site that now requires a star rating to be added to user comments. I have found a plugin that I like ‘Star Rating’, simple and does what it says, and easy to override styles. This works perfectly with the default comment_form() from WordPress, but does not work on the...
  14. HippySunshine

    Show element on page load - only when referred from external url

    The quote needs to be visible every time they visit, but only from that external referral, no internal page loads. Do you know how I go about this using AJAX? Not really sure on where to start with that. Thank you
  15. HippySunshine

    Show element on page load - only when referred from external url

    On a WordPress site, I have a quote generator which needs to be displayed on every page (as a screen overlay) when that page is loaded from and external URL only. So when the site/page is visited from google, the quote will load on that page. When navigation internally through the site, none of...
Back
Top