Jump to content

administrator

Administrators
  • Posts

    3,254
  • Joined

  • Last visited

  • Days Won

    454

Everything posted by administrator

  1. Hi, The easiest way to do this is to go back to old-school web design and HTML. Something called an image map.
  2. You're going to have to tell Woo what image to display based on the selection made in your form. This is something specific to Woo I am guessing . If you did it through raw code, you would need to use some JavaScript ... and perhaps CSS3 could allow you.
  3. You have to see what Wix can do. I haven't used it enough to give you answer. You might be able to make changes you need through the wix api. Wix and other web builders are good for really simple sites, but then you are handcuffed. Stef
  4. Instead of putting this function in the if statement, create a variable to captures the result and then put that variable in the IF statement. $checkFile = file_exists("$directory_path . $user/ . $file_name"); See what happens. Stef
  5. Just load the Addthis at the footer of the page ... so it doesn't slow the page load.
  6. Oops ... sorry for the long delay. I am sure by now you figured this out! Stef
  7. Hi Bill, Every web builder is different, you have to look at what your web builder can do. But, you just found the biggest problem with web builders: they are limited. If you want to build a serious website, then you should check out my very popular web developer course: https://shop.killervideostore.com/ Learning even just the basics will save you a lot of time and headaches ... even using your web builder. Hope that helps. Stef
  8. Hi Carly, I never ended up making it ... too busy with other things! Sorry about that.
  9. Hi Carly and Toni, Welcome to the forum! Stef
  10. Just set the image size by percentage, so it scales according to the screen size.
  11. JavaScript will do this. Just apply an onClick event on the bottom that scrolls the page up.
  12. Hi, You can jump to the JS and PHP courses right away. Stef
  13. Hey! Welcome to the forum! Stef
  14. Hmm ... I am not sure what you mean? You want to point software at a website, and have it create the same, but responsive? If that's what you want, I don't think you can do that without getting into code. We just updated the non-responsive StudioWeb layout, to make it responsive, and we had to rebuild from scratch. Stef
  15. Welcome to the forum. There is always a delay with new member posts. Prevents spam. Stef
  16. Welcome to the forum. Stef
  17. This is a browser caching issue - client side. So, use PHP to force load the page. You can do this via HTTP headers. Stef
  18. Hi, Your second option where you use an array is better, since it is cleaner code. That said, you could also use the element hierarchy in the DOM to target elements. But what would be the point? Another thing you can do, if possible, is place all those elements into a div and simply toggle the visibility of the div. But I am guessing the elements are in different parts of the page. Stef
  19. Hi, Can you breakdown your question into bullet points? It is hard to decipher what you say is missing. That said, it should be all there. Stef
  20. Hi, I don't know what line is line 106, but look at this line: $stmt->bind_param("ss", md5($input['pass'] . $config['salt']), $_SESSION['id']); It could be he is trying to pass this into the array: md5($input['pass'] So instead, assign to a variable and pass that. So do something like: $salted = md5($input['pass']; And then: $stmt->bind_param("ss", $salted . $config['salt']), $_SESSION['id']); The md5 hash function is altering the stat of $input['pass'], so that could be causing the notice to appear. I haven't looked at what Ben did in that video, but he may have just turned off error_reporting for PHP. Hope that helps, Stef
  21. Hi, My new freelance course can be found here: https://www.killervideostore.com/video-courses/complete-freelancer.php Contains audio, video and 5 freelance templates. My popular Python course: https://www.killervideostore.com/video-courses/beginners_python_3.php Stef
×
×
  • Create New...