• Hi, i create a wp template page width this simple code to visualize some data. If i update excel file from excel cms backend page and i refresh wp page, i continue to see old data.
    What is the right way to update the excel file?
    thank you all

    <?php $data = wp_excel_cms_get(“test”); ?>
    <?php foreach($data as $entry): ?>
    <?php if($entry[0]<>””) { ?>
    <div style=” border:1px solid grey;”>
    <div style=””><?php echo $entry[0]; ?></div>
    <div style=””><?php echo $entry[1]; ?></div>
    <div style=””><?php echo $entry[2]; ?></div>
    </div>
    <?php
    }
    endforeach;
    ?>

    https://www.ads-software.com/plugins/wp-excel-cms/

  • The topic ‘after update excel file, page show old data’ is closed to new replies.