Table of Contents
1. Overview and core requirements
2. HTML structure: buttons and forms
2.1 Buttons in the article loop
2.2 HTML structure of pop-up form
3. JavaScript/jQuery: Pop-up window control and AJAX submission
Home Backend Development PHP Tutorial WordPress Custom Article Button Popup Form with AJAX Submission Guide

WordPress Custom Article Button Popup Form with AJAX Submission Guide

Aug 08, 2025 pm 11:06 PM

WordPress Custom Article Button Popup Form with AJAX Submission Guide

This tutorial details how to add a Submit Quotation button to the list item of each custom post type (such as "Real Estate") in WordPress, and a custom HTML form with a specific post ID pops up after clicking it. The article will cover how to create modal popups using jQuery UI Dialog, dynamically pass the article ID through data attributes, and use WordPress AJAX mechanism to implement asynchronous submission of forms, while processing file uploads and displaying submission results, thus providing a seamless user experience.

1. Overview and core requirements

In WordPress development, we often need to provide specific interactive features for each entry on the article list page. This tutorial aims to address the following core requirements:

  • In the loop list of custom post types, such as property, add a Submit Quotation button for each post.
  • After clicking the button, a modal form pops up.
  • The form should contain the ID of the current article as a hidden field to be associated to a specific article when submitted.
  • The form submission process should be completed asynchronously through AJAX to avoid page refresh and display success or failure messages in pop-up windows.
  • The form supports file upload function.

We will use WordPress built-in features, jQuery UI Dialog library, and AJAX technology to achieve this.

2. HTML structure: buttons and forms

First, we need to set the button in the WordPress article loop and place a form structure for popups on the page.

2.1 Buttons in the article loop

In your custom post type template file (such as archive-property.php or pages built with WP_Query), add a button for each post while iterating through the post and store the post ID and title via HTML5's data-* attribute.

 <?php // Suppose you are in a loop with custom article type &#39;property&#39; $args = array(
    &#39;post_type&#39; => 'property',
    'posts_per_page' => -1, // Show all posts 'post_status' => 'publish'
);
$the_query = new WP_Query( $args );

if ( $the_query->have_posts() ) :
    while ( $the_query->have_posts() ) : $the_query->the_post();
        $post_id = get_the_ID();
        $post_title = get_the_title();
?>
        <div class="property-item">
            <h2><?php echo esc_html( $post_title ); ?></h2>
            <p>Article ID: <?php echo esc_html( $post_id ); ?></p>
            <!-- Other real estate information-->

            <button class="btn btn-primary submit-offer-btn" data-post-id="<?php echo esc_attr( $post_id ); ?>" data-post-title="<?php echo esc_attr( $post_title ); ?>">
                Submit a quote</button>
        </div>
<?php endwhile;
    wp_reset_postdata(); // Reset query else:
    echo &#39;<p>No property information was found. ';
endif;
?>

illustrate:

  • The submit-offer-btn class is used in JavaScript selectors.
  • The data-post-id and data-post-title attributes are used to store the ID and title of the current post, and JavaScript will obtain the data through these attributes.

2.2 HTML structure of pop-up form

Place your full form in a hidden div container that should appear only once on the page, not inside the loop. This div will be converted into a pop-up window by jQuery UI Dialog.

 <div id="offerFormDialog" style="display:none;">
    <h2 class="text-center">Submit your quotation</h2>
    <form id="offerForm" method="POST" enctype="multipart/form-data">
        <div class="form-group row">
            <label class="col-md-12" for="name"><?php esc_html_e( &#39;Name&#39;, &#39;ivproperty&#39; ); ?><span class="red-star">*</span></label>
            <input class="col-md-12" id="name" name="name" type="text" required>
        </div>
        <div class="form-group row">
            <label for="email" class="col-md-12"><?php esc_html_e( &#39;Email&#39;, &#39;ivproperty&#39; ); ?><span class="red-star">*</span></label>
            <input class="col-md-12" name="email" type="email" required>
        </div>
        <div class="form-group row">
            <label for="price" class="col-md-12"><?php esc_html_e( &#39;Price&#39;, &#39;ivproperty&#39; ); ?><span class="red-star">*</span></label>
            <input class="col-md-12" name="price" type="number" required>
        </div>
        <div class="form-group row">
            <label for="purchase_type" class="col-md-12"><?php esc_html_e( &#39;Purchase Type&#39;, &#39;ivproperty&#39; ); ?><span class="red-star">*</span></label>
            <select class="col-md-12" name="purchase_type" required>
                <option disabled selected value> -- select an option -- </option>
                <option value="Cash">Cash</option>
                <option value="Conventional Loan">Conventional Loan</option>
                <option value="FHA Loan">FHA Loan</option>
                <option value="MSHDA Conventional Loan">MSHDA Conventional Loan</option>
                <option value="MSHDA FHA Loan">MSHDA FHA Loan</option>
                <option value="Land Contract">Land Contract</option>
            </select>
        </div>
        <div class="form-group row">
            <label for="closing_date"><?php esc_html_e( &#39;Closing Date&#39;, &#39;ivproperty&#39; ); ?><span class="red-star">*</span></label>
            <input class="col-md-12 date_box" name="closing_date" type="date" required>
        </div>
        <div class="form-group row">
            <label for="concessions_amount"><?php esc_html_e( &#39;Concessions Amount&#39;, &#39;ivproperty&#39; ); ?></label>
            <input class="col-md-12" name="concessions_amount" type="number">
        </div>
        <div class="form-group row">
            <label for="inspection_period" class="col-md-12"><?php esc_html_e( &#39;Inspection Period&#39;, &#39;ivproperty&#39; ); ?><span class="red-star">*</span></label>
            <input class="col-md-6 date_box" name="insp_from" type="date" required>
            <input class="col-md-6 date_box" name="insp_to" type="date" required>
        </div>
        <div class="form-group row">
            <label for="seller_occupancy" class="col-md-12"><?php esc_html_e( &#39;Seller Occupancy & Charge&#39;, &#39;ivproperty&#39; ); ?></label>
            <input class="col-md-6" name="seller_occupancy" type="text" placeholder="Occupancy">
            <input class="col-md-6" name="seller_charge" type="number" placeholder="Charge">
        </div>
        <div class="form-group row">
            <label for="emd" class="col-md-12"><?php esc_html_e( &#39;EMD&#39;, &#39;ivproperty&#39; ); ?><span class="red-star">*</span></label>
            <input class="col-md-12" name="emd" type="number" placeholder="Earnest Money Deposit" required>
        </div>
        <div class="form-group row">
            <label for="home_warranty" class="col-md-12"><?php esc_html_e( &#39;Home Warranty&#39;, &#39;ivproperty&#39; ); ?><span class="red-star">*</span></label>
            <select class="col-md-12" name="home_warranty" required>
                <option disabled selected value> -- select an option -- </option>
                <option value="Yes">Yes</option>
                <option value="No">No</option>
            </select>
        </div>
        <div class="form-group row">
            <label for="attachment" class="col-md-12"><?php esc_html_e( &#39;Attachment&#39;, &#39;ivproperty&#39; ); ?></label>
            <input type="file" name="attachment">
        </div>

        <!-- Hide fields are used to store article ID -->
        <input type="hidden" name="property_id" id="property_id_hidden_field" value="">

        <!-- Area for displaying AJAX messages-->
        <div id="form_messages" style="margin-top: 15px;"></div>

        <div class="modal-footer">
            <input type="submit" name="submit_offers" class="btn btn-secondary col-md-12 ml-2">
        </div>
    </form>
</div>

illustrate:

  • id="offerFormDialog" is the unique identifier of the pop-up container.
  • style="display:none;" Make sure the pop-up is hidden when the page loads.
  • id="property_id_hidden_field" is a hidden field whose value will be dynamically populated by JavaScript when the pop-up window is opened.
  • id="form_messages" is used to display success or error messages after AJAX submission.

3. JavaScript/jQuery: Pop-up window control and AJAX submission

We will use jQuery UI Dialog to create the bomb

The above is the detailed content of WordPress Custom Article Button Popup Form with AJAX Submission Guide. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

PHP Tutorial
1504
276
PHP Variable Scope Explained PHP Variable Scope Explained Jul 17, 2025 am 04:16 AM

Common problems and solutions for PHP variable scope include: 1. The global variable cannot be accessed within the function, and it needs to be passed in using the global keyword or parameter; 2. The static variable is declared with static, and it is only initialized once and the value is maintained between multiple calls; 3. Hyperglobal variables such as $_GET and $_POST can be used directly in any scope, but you need to pay attention to safe filtering; 4. Anonymous functions need to introduce parent scope variables through the use keyword, and when modifying external variables, you need to pass a reference. Mastering these rules can help avoid errors and improve code stability.

Commenting Out Code in PHP Commenting Out Code in PHP Jul 18, 2025 am 04:57 AM

There are three common methods for PHP comment code: 1. Use // or # to block one line of code, and it is recommended to use //; 2. Use /.../ to wrap code blocks with multiple lines, which cannot be nested but can be crossed; 3. Combination skills comments such as using /if(){}/ to control logic blocks, or to improve efficiency with editor shortcut keys, you should pay attention to closing symbols and avoid nesting when using them.

Tips for Writing PHP Comments Tips for Writing PHP Comments Jul 18, 2025 am 04:51 AM

The key to writing PHP comments is to clarify the purpose and specifications. Comments should explain "why" rather than "what was done", avoiding redundancy or too simplicity. 1. Use a unified format, such as docblock (/*/) for class and method descriptions to improve readability and tool compatibility; 2. Emphasize the reasons behind the logic, such as why JS jumps need to be output manually; 3. Add an overview description before complex code, describe the process in steps, and help understand the overall idea; 4. Use TODO and FIXME rationally to mark to-do items and problems to facilitate subsequent tracking and collaboration. Good annotations can reduce communication costs and improve code maintenance efficiency.

How Do Generators Work in PHP? How Do Generators Work in PHP? Jul 11, 2025 am 03:12 AM

AgeneratorinPHPisamemory-efficientwaytoiterateoverlargedatasetsbyyieldingvaluesoneatatimeinsteadofreturningthemallatonce.1.Generatorsusetheyieldkeywordtoproducevaluesondemand,reducingmemoryusage.2.Theyareusefulforhandlingbigloops,readinglargefiles,or

Learning PHP: A Beginner's Guide Learning PHP: A Beginner's Guide Jul 18, 2025 am 04:54 AM

TolearnPHPeffectively,startbysettingupalocalserverenvironmentusingtoolslikeXAMPPandacodeeditorlikeVSCode.1)InstallXAMPPforApache,MySQL,andPHP.2)Useacodeeditorforsyntaxsupport.3)TestyoursetupwithasimplePHPfile.Next,learnPHPbasicsincludingvariables,ech

Quick PHP Installation Tutorial Quick PHP Installation Tutorial Jul 18, 2025 am 04:52 AM

ToinstallPHPquickly,useXAMPPonWindowsorHomebrewonmacOS.1.OnWindows,downloadandinstallXAMPP,selectcomponents,startApache,andplacefilesinhtdocs.2.Alternatively,manuallyinstallPHPfromphp.netandsetupaserverlikeApache.3.OnmacOS,installHomebrew,thenrun'bre

How to access a character in a string by index in PHP How to access a character in a string by index in PHP Jul 12, 2025 am 03:15 AM

In PHP, you can use square brackets or curly braces to obtain string specific index characters, but square brackets are recommended; the index starts from 0, and the access outside the range returns a null value and cannot be assigned a value; mb_substr is required to handle multi-byte characters. For example: $str="hello";echo$str[0]; output h; and Chinese characters such as mb_substr($str,1,1) need to obtain the correct result; in actual applications, the length of the string should be checked before looping, dynamic strings need to be verified for validity, and multilingual projects recommend using multi-byte security functions uniformly.

PHP get the first N characters of a string PHP get the first N characters of a string Jul 11, 2025 am 03:17 AM

You can use substr() or mb_substr() to get the first N characters in PHP. The specific steps are as follows: 1. Use substr($string,0,N) to intercept the first N characters, which is suitable for ASCII characters and is simple and efficient; 2. When processing multi-byte characters (such as Chinese), mb_substr($string,0,N,'UTF-8'), and ensure that mbstring extension is enabled; 3. If the string contains HTML or whitespace characters, you should first use strip_tags() to remove the tags and trim() to clean the spaces, and then intercept them to ensure the results are clean.

See all articles