All Questions
8 questions
0
votes
0
answers
17
views
General Term for this form Field
I'm trying to find out what you call a Field where you can select like lets say
What department do you want to contact?
then its Departments:
[Tech] [Sale's]
ect
I use Formidable ...
0
votes
2
answers
272
views
Why is my form going to frontend on html form submission present on the php files inside my custom plugin?
I'm creating my first Wordpress plugin. It's goal is to update information from admin user about the book stock using sku only.
There are 2 forms in update-stock.php page. First form takes sku input ...
1
vote
1
answer
3k
views
Hook into and send mail using WP Mail SMTP type plugin from HTML static front page?
I am reusing an HTML Bootstrap page as a static front page on a WordPress site. The front page has a form in it which I want to use as a Contact Me form. I've installed the widely used WP Mail SMTP ...
0
votes
1
answer
2k
views
How to hide the form after successful php execution
I want to hide the form after someone has entered the input in my plugin form and has hit submit button. However, as I'm using shortcode function in my plugin file I am unable to use simple html to ...
1
vote
2
answers
6k
views
How to insert HTML/JavaScript form into WordPress page? [closed]
I am trying to insert a small form into a WordPress page that does a minor calculation based on user input and returns an answer. Initially I tried copying the entire thing (HTML and JS (in a <...
0
votes
2
answers
4k
views
File Uploader - Upload without adding to Media Library
I have an admin form for a plugin I am making. However, there are a couple of fields I need to add where the admin need to upload a document or image. When these files are uploaded, I do not want them ...
0
votes
1
answer
247
views
Submitting form in wordpress plugin
I am new to wordpress and currently making a plugin.
I am getting list of authors using
<?php wp_dropdown_users(array('name' => 'author'));?>
Now when submitting my form I want to retain ...
1
vote
5
answers
5k
views
How to trigger $_GET request within admin plugin page?
I have this form in my plugin function:
<form method="get" action="" enctype="multipart/form-data">
<p class="submit">
<input type="hidden" name="do_it_hidden" value="run">
...