lol lolling
Forum Replies Created
-
[dynamichidden ruip readonly “CF7_get_post_var key=’_remote_ip'”]
Try using it that way. “ruip” is for remote user ip.
Hi,
If you have Contact Form 7 and Dynamic Text plugin installed, then the bracket I gave you as an example;
[dynamichidden useripnr id:useridnr readonly “CF7_GET key=’_remote_ip’”]
Then that works. It works for me on six different sites with different themes.
Hi,
Okay, is it the same if trying from your phone?
127.0.0.1 otherwise indicates a localhost installation. Can you try it on a live production site?Forum: Plugins
In reply to: [Export WordPress Menus] Fails to export or import menu items when using PHP7The import does nothing. It does not import the actual menu options.
Forum: Plugins
In reply to: [Contact Form 7] Disable “Submit” after click in Contact Form 7Yes, I agree (obviously).
Let’s hope that the author of the plugin at least implements an option for this.I am not asking for this to be the default behavior, but as an option for the [submit “Send”] tag would be nice. Example:
[submit “Send” disabled=”until_all_required”] and
[submit “Send” disabled=”until_all_required_and_after”]Or something like that.
Should be:
[dynamichidden useripnr id:useridnr readonly “CF7_GET key=’_remote_ip’”]
Hi again,
I’m sorry – here’s a solution for you. Since you’re reading all incoming correspondence using the cf7db, try this to make the field hidden.
[dynamichidden useripnr id:useridnr uneditable “CF7_GET key=’_remote_ip'”]
That should work.
Hi Philip,
I apologize for any misunderstanding I might have caused, but I was under the impression that we were talking about CF7 (Contact Form 7) due to the support thread: Support ? Plugin: Contact Form 7 Dynamic Text Extension ? Is it possible to get remote IP address in a hidden field?
If you’re using CF7 then yes, you can include all of those I mentioned earlier. To achieve what you are looking for, in the “Email” tab = where you define what information you, the site owner, receive in the email after the visitor submits the the form. Example;
Message:
[your-message]Visitor information:
[_remote_ip]
[_user_agent]
[_date]
[_time]
[_post_url]To answer your question in a more specific way; there is no need for a hidden field anywhere using CF7 since CF7 per default accepts all of those tags I mentioned.
By using
[_remote_ip]
[_user_agent]You’ll get the IP number of the visitor and all the information. Example:
11.350.36.11
Mozilla/5.0 (X11; CrOS x86_64 9765.85.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.123 Safari/537.36I find it easiest to put these tags into the “Email” tag as explained in my previous answer.
Forum: Plugins
In reply to: [Contact Form 7] Disable “Submit” after click in Contact Form 7I would like to see an option that makes the “Submit” button inactive until all required fields are filled in and again after submitting.
that would be awesome.
Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] single product pageHere are a few examples:
<label>Product name
[dynamictext product-name id:dyntext readonly “CF7_get_post_var key=’title'”]</label><label>Product SKU
[dynamictext product-sku id:dyntext readonly “CF7_get_post_var key=’_sku'”]</label><label>Available in stock
[dynamictext product-stock id:dyntext readonly “CF7_get_post_var key=’_stock'”]</label>In the Email tab, use:
Productname: [product-name]
Product SKU: [product-sku]
Available in stock: [product-stock]You can use these tags as is. They will not be shows in the form, but will show up in the email you receive after the visitor submits the form.
[_remote_ip]
[_user_agent]
[_url]
[_date]
[_time]
[_post_id]
[_post_name]
[_post_title]
[_post_url]
[_post_author]
[_post_author_email]
[_serial_number]I have used them like this, in the “Email” tab.
Message:
[your-message]Visitor information:
[_remote_ip]
[_user_agent]
[_date]
[_time]
[_post_url]Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] autfill product nameHI,
Here are a few examples:
<label>Produktens Namn
[dynamictext product-name id:dyntext readonly “CF7_get_post_var key=’title'”]</label><label>Produktens SKU
[dynamictext product-sku id:dyntext readonly “CF7_get_post_var key=’_sku'”]</label><label>Antal p? lager
[dynamictext product-stock id:dyntext readonly “CF7_get_post_var key=’_stock'”]</label>I used to ID because I wanted to style those fields with CSS.
In the Email tab, I used:
Product name: [product-name]
Product SKU: [product-sku]
Available in stock: [product-stock]Hi,
I used this:
<label>Product name
[dynamictext product-name id:dyntext readonly “CF7_get_post_var key=’title'”]</label><label>Product SKU
[dynamictext product-sku id:dyntext readonly “CF7_get_post_var key=’_sku'”]</label><label>Available in stock
[dynamictext product-stock id:dyntext readonly “CF7_get_post_var key=’_stock'”]</label>