Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author webteilchen

    (@webteilchen)

    You have to edit the theme. How would you expect to use the data? Maybe I can extend the plugin, to make it work this way.

    Otherwise you can use it this way in your theme:

    <?php $data = wp_excel_cms_get(“guestlist”); ?>

    <?php foreach($data as $entry): ?>
    column 1: <?php echo $entry[0]; ?>
    column 2: <?php echo $entry[1]; ?>
    column 3: <?php echo $entry[2]; ?>
    <hr />
    <?php endforeach; ?>

    Not understanding “..in your theme.” Which is to say you would only be allowed to put one spreadsheet which would then show up on every page produced in your theme? How would one insert a spread sheet into a page or blog page and maybe a different sheet into a different page/blog page; and not theme-wide?

    I know, I’m missing something here…

    Plugin Author webteilchen

    (@webteilchen)

    This is the approach, if you create your own theme and want to manage the content via excel tables. Thats only for developers. With that code, you can add as many tables as you want in one theme.

    Your idea, to put the tables in shortcodes will be released in a few hours. Please have a look in the other post.

    Plugin Author webteilchen

    (@webteilchen)

    New Version is online. You now can use [wp_excel_cms name=”guestlist”] in your posts oder pages.

    If you have any wishes or proposals to make it work better, let me know.

    Best Regards
    Vincent

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Data input’ is closed to new replies.