0
votes
3answers
19 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"> ...
0
votes
1answer
41 views

WordpressUser Submission Form

I have a User Post Submission form, and it has three issues, as well as one potential issue. Here is the code that processes the form. <?php if(isset($_POST['user_submission_form'])) { ...
0
votes
0answers
24 views

Save / Output Wordpress Form

I have a custom html calculating form in WordPress. I would like to know whether I can create a button, which first prints /saves the form to PDF, and then email's it to the relevant staff (and also ...
3
votes
1answer
290 views

<form> inside a metabox

I'm trying to write a plugin that allows a user to upload a video to Vimeo through the Vimeo upload API. In order to avoid trying to upload a video to a potentially shared hosting account and then ...
0
votes
1answer
324 views

Programming Wordpress to send a custom-built form to specified email address

I have built a custom html/javascript form that I would like to incorporate into my blog. I would like the submit button of the form to send the information to a specific email address. Is there a way ...
0
votes
1answer
408 views

Using a form to post to an external URL from within WordPress [closed]

I'm trying to use a form to post data to an external URL, and I'm completely stumped by this problem. The exact code I'm using is: <form name="login" action="https://www.example.com/" ...
1
vote
1answer
1k views

add_filter the_content str_replace after shortcode

I want to add a PHP str_replace to the add_filter('the_content') function. I believe my problem is that the shortcodes are loading after the str_replace is called. I have a shortcode that outputs a ...
0
votes
1answer
122 views

Custom forms with HTML

Will there be any issues with creating a custom form in the index page? Will I be able to get and post requests? It's a simple email validation form and once validated, the user will be able to ...
6
votes
2answers
409 views

Style reply form different than comment form

Is there a way to display (css and html) in a different way the "reply" form and the main "comment" form?
0
votes
1answer
73 views

How to add a button that enables the user to insert a link in a textarea located in the front-end?

I'm using the following plugin: http://wordpress.org/extend/plugins/question-and-answer-forum/ It as a textarea which enables the user to post a question. The author told me how to allow html on it. ...