Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Im trying to do the same thing. have you figured it out yet?

    this would really help me.

    Hi nordov,

    The checkbox is now working as it should. thank you.
    I have noticed that when filling the form out if i refresh the page it retains the data i put in the fields.

    What i want it to do is when i log out or close the tab, the data is still there when i log in. is this possible? therefore allowing me to half fill the form and complete it on a later date.

    Its not working with the plugin “Gravity Forms Data Persistence Add-On”

    Hi,

    Have you updated the plugin? I want to display the Displet Pop plugin on specific pages. many thanks

    Thread Starter amarchauhan

    (@amarchauhan)

    In the code below you’ll find ‘cat’ => 4, change the 4 to the category id. you can ge the category id if you hover over the category and look at the link at the bottom of your URL. I used this code:

    <?php
    /*
    template name: articles
    */
    ?>

    <?php get_header(); ?>

    <div class=”container”>

    <?php
    $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
    $args= array(
    ‘cat’ => 4,
    ‘paged’ => $paged
    );
    query_posts($args);

    /*<?php query_posts(‘cat=4’); PAGINATION DOES NOT WORK WITH THIS STANDARD CODE */

    if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>

    <h2>” title=”<?php the_title(); ?>”><?php the_title(); ?></h2>

    <div class=”entry”>

    <?php content(’25’); ?>

    </div><!–end entry–>

    </div><!–end post–>

    <div class=”hr”><span class=”hide”><hr /></span></div>

    <?php endwhile; ?>

    <div class=”navigation”>
    <div class=”alignleft”><?php next_posts_link(‘« Older Entries’) ?></div>
    <div class=”alignright”><?php previous_posts_link(‘Newer Entries »’) ?></div>
    </div>

    <?php else : ?>

    <div class=”post”>
    <h2><?php _e(‘Not Found’); ?></h2>
    </div>

    <?php endif; ?>

    <div class=”clear”></div>

    </div><!–end container–>

    <?php
    include(TEMPLATEPATH . ‘/sidebar_articles.php’);
    ?>

    <div class=”clear”></div>

    <?php
    include(TEMPLATEPATH . ‘/foot_panel.php’);
    ?>

    <?php get_footer(); ?>

    Hope this helps anyone with the same issue.

    Forum: Fixing WordPress
    In reply to: Visual Editor
    Thread Starter amarchauhan

    (@amarchauhan)

    Hi Esmi,

    I have disabled all plugin’s – tried it not working, activated each plugin one-by-one and tested but still not working.
    Ive switched themes to the Twenty Ten theme but still doesnt work.
    Ive renamed the plugin folder in FTP and created an empty ‘plugin’ folder tested it(not working) then i undid the rename folder but still nothing.

    ive read some issues with other people having a similar problem but when their popup appears its just a blank screen, but mine is a popup of my website.

    Do you think it might be an issue with the .htaccess file? because i dont have one in my root folder /www/httpdocs

Viewing 5 replies - 1 through 5 (of 5 total)