Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor fireproofsocks

    (@fireproofsocks)

    You want to add the values of the fields? On the front-end or in the manager? On the front-end you’d just get the values and add them, e.g.

    <?php
    $x = get_custom_field('beta');
    $y = get_custom_field('zeta');
    $z = $x + y;
    print $z;
    ?>

    Is that what you’re asking?

    Thread Starter malinator

    (@malinator)

    yes, big thx 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Custom Content Type Manager] Sum of Custom fields’ is closed to new replies.