Recent content by lightning37

  1. L

    some small help with PHP contact form

    Did anyone ever end up getting get paid the $5 promised by XoRaK?
  2. L

    Time limit / Limited time offer SCRIPT?

    Here is a script that will countdown any number of hours. If you want a different number of hours, simply change the number in the parentheses. You will need to add three html elements with the IDs of 'hours', 'minutes', and 'seconds'. LEt me know if you have any questions. (function() {...
  3. L

    How to hide the button after clicking

    Debugger, That won't work because the click event belongs to the iframe not the div.
  4. L

    How to hide the button after clicking

    Google built the "data-onytevent" attribute into the subscribe button to call another function on subscribe or unsubscribe event, but there are many reports of it not working(hxxps://code.google.com/p/gdata-issues/issues/detail?id=5707). If the ability to call a function on those events is...
  5. L

    How to hide the button after clicking

    andalousy, The channelid issue was from me copy and pasting your code. I thought you were just going to be using images for the button not actually using google's api to generate specific buttons. The script will need quite a bit of changing to work with the iframes generated by the google api...
  6. L

    How to hide the button after clicking

    I can not see any reason that g0g0l's code shouldn't be working, but I went ahead and set up a CodePen with a slight variation. hxxp://codepen.io/techsock/pen/pvaoYR
  7. L

    E-Commerce: Need Paypal Order Management Suggestions

    I would look into the shortcodes provided by WooCommerce to possible piece together what your looking for. I haven't tried updating total info from the checkout page, but I have set up product pages that redirect right into the checkout page with out going to the cart first. You could easily set...
  8. L

    Anyone know what is the closest WP theme to this one?

    Looks like it was made with Bootstrap. hxxp://builtwith.com/zeroreznashville.com
  9. L

    E-Commerce: Need Paypal Order Management Suggestions

    You might look into WooCommerce or Squarespace.
  10. L

    Boost Website Speed

    Using a CDN like Cloudflare will decrease the page load time. You can also use tools like Pingdom's Website Speed Test as a good place to start. It will show you which resources are taking the longest to load. Lastly, depending on the site's content you might looking using a WP plugin like WP...
  11. L

    What script/theme runs this site?

    Sites like hxxp://builtwith.com come in handy for this. -hxxp://builtwith.com/fuckyouverymuch.tv -hxxp://builtwith.com/anglerz.com
  12. L

    some small help with PHP contact form

    $string_exp = "/^[A-Za-z .'-]+$/"; if(!preg_match($string_exp,$name)) { $error_message .= 'The First Name you entered does not appear to be valid.<br />'; } if(!filter_var($subject, FILTER_VALIDATE_URL,FILTER_FLAG_HOST_REQUIRED)) { $error_message .= 'The url you entered does not appear...
  13. L

    Need help with calculation

    It would be helpful to see the html that goes along with the javascript you've posted. I would recommend either posting a URL to the live calculator or post it on CodePen(hxxp://codepen.io/).
  14. L

    Please help How can i redirect to multiple website

    Try this: hxxp://gist.github. co m/hopki ns-matt/e16f964185767ad8e380 **fix the URL** This will be a lot easier once I can post URLs on here. Depending on the permissions set on your server, you may need to manually create an empty txt file named counter.txt.
  15. L

    Twitch streams overview

    How many streams are you looking to embed? Why not just use the stream iframe embed code from the twitch site?
Back
Top