Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by Mutiny

  1. Mutiny

    JavaScript Can't figure out what's casing this problem

    Are you sure you're not hitting the one per second limit listed below that section: I'm not familiar with Firebase so I'm not sure how to check if you're hitting that limit, but if you only have this problem when saving and then immediately trying to save again, it seems like a likely cause of...
  2. Mutiny

    JavaScript Can't figure out what's casing this problem

    Is it possible you're being rate-limited by Firebase and you're only allowed to write once per second or so?
  3. Mutiny

    HTML Need to reload images ignoring cache in HTML

    Instead of: src="https://cws.a2hosted.com/weather/OutsideTemp.gif#" + new Date().getTime(); Try: src="https://cws.a2hosted.com/weather/OutsideTemp.gif?v=" + new Date().getTime(); I'm not sure that a hash would do anything, but having a parameter at the end of the filename plus the time...
  4. Mutiny

    PHP posting chosen option to another page

    You need to have an actual form field to submit with your form. Change: <h3 class="productname" id="naam" name="naam">'.$row['naam'].'</h3> To: <label> '.$row['naam'].' <input type="hidden" name="naam" value="'.$row['naam'].'" /> </label> Also, you need to echo out the value when...
  5. Mutiny

    HTML & CSS How to get a contact form to send an email

    To send the data for the form automatically, you'll need to use a server side language like PHP to send an email from your server to yourself. Most cPanel web hosting will support PHP by default. Here is a tutorial on setting up some basic PHP to send an email from a contact form.
  6. Mutiny

    HTML & CSS CSS forms help

    In your CSS, under the label add: display: block; Also, I would highly suggest wrapping each label / input pair in a <div> element and then using something like flexbox to update the positioning of elements. Having each pair wrapped in a container tends to make working with them easier than...
  7. Mutiny

    JavaScript If Else Script

    Maybe something like this: http://www.javascriptkit.com/javatutors/openclose.shtml Basically, try to open the mobile device window and then check the state of whether the window was actually opened or immediately closed.
  8. Mutiny

    PHP I need a PHP loop to enter a single text field's data and save the result from a web page.

    With CURL, you're not going to the page that has the form on it, what you want to do is submit a CURL request to the URL that the form submits to, in this case that would be: https://ziplook.house.gov/htbin/ziplook_find You would want to submit the form with the same field names as used on the...
  9. Mutiny

    PHP Screen does not refresh until all emails sent

    It only displays once because PHP only outputs to the browser once. Think of an envelope and when you echo it puts a new letter in the envelope. The envelope is only delivered once, at the end of the request and contains all of the letters put inside of it. A new envelope doesn't get...
  10. Mutiny

    Custom Fields

    What is the PHP code you are adding to try and get the fields? Also, depending on where you are trying to get the fields you may either have to pass in a post ID or "option" as the second parameter to tell it to pull the data from a specific post or from an options page.
  11. Mutiny

    Custom Fields

    Actually, are you using ACF to create the fields or some other plugin? Reviewing your screenshots you may be using something else, even though ACF is the biggest as far as custom fields on Wordpress.
  12. Mutiny

    Custom Fields

    Custom fields do not appear automatically. You need to add them to your code, whether it be within your template or inside of a custom plugin you're creating. See the ACF Documentation here: https://www.advancedcustomfields.com/resources/get_field/
  13. Mutiny

    PHP Does anyone knows how to sort this out?

    The content of the page appears to pull information specific to the logged in user, so each user should see their own profile from what I can tell based on what I am seeing on your site.
  14. Mutiny

    CSS Mobile view layer issue with multiple CSS

    My first thought is that this could be a z-index issue. Not sure if you are familiar with the z-index CSS property: https://developer.mozilla.org/en-US/docs/Web/CSS/z-index Basically, you can use z-index to position elements on top of or behind other elements. The higher the z-index, the more...
  15. Mutiny

    PHP Does anyone knows how to sort this out?

    In the menu code you provided, you have the menu hard-coded rather than pulling items from a menu under Appearance > Menus, which is why you don't see that link listed there. Looking at your code, it looks like your theme tries to get a unique profile page for each user based on a post ID set...
Back
Top Bottom