• Resolved Vincent Vu

    (@rubixvi)


    I’m getting a duplicate form also the bottom form doesn’t function.

    This is the default single page.

    The page I need help with: [log in to see the link]

Viewing 8 replies - 16 through 23 (of 23 total)
  • Plugin Author Farhan Noor

    (@farhannoor)

    Please copy exact code from my last post into aol_ad-single.php file & make sure you have switched to Parent Theme.

    Also try this code without <?php the_content(); ?>

    • This reply was modified 6 years, 10 months ago by Farhan Noor.
    • This reply was modified 6 years, 10 months ago by Farhan Noor.
    Thread Starter Vincent Vu

    (@rubixvi)

    done i’m still on the parent theme, those codes are in the right pages, tried it with and without <?php the_content(); ?> still getting three forms.

    Thread Starter Vincent Vu

    (@rubixvi)

    I wonder if its best if I provide you login to the ftp.

    Plugin Author Farhan Noor

    (@farhannoor)

    My Mistake, rename file to single-aol_ad.php.

    Side Note: Without the_content() template tag, wordpress do not show post content.

    Thread Starter Vincent Vu

    (@rubixvi)

    File name was the issue
    I’ve updated the coding to

    <?php
    /**
    * The template for display single Apply Online content
    *
    * @package WordPress
    * @subpackage Apply Online
    */
    
    get_header();
    while ( have_posts() ) : the_post();
    // Include the single post content template.
    ?>
    <div id="wrapper-content" class="clearfix ">
            <div class="gf-page-title">
                <div class="container">
                    <?php the_content(); ?>
                </div>
            </div>
        <div>
    <?php
    endwhile;
    get_footer();
    ?>

    Now its fine.

    Thread Starter Vincent Vu

    (@rubixvi)

    How do I get the meta data to show again

    Plugin Author Farhan Noor

    (@farhannoor)

    Perfect.
    Dont forget to write review for this plugin HERE. For more advanced features, check extentions on plugin’s website.

    Best Regards.

    Plugin Author Farhan Noor

    (@farhannoor)

    Try code from single.php.

Viewing 8 replies - 16 through 23 (of 23 total)
  • The topic ‘Duplicate Forms on Single Page’ is closed to new replies.