• Resolved martin136

    (@martin136)


    I like my new Calculated Fields very much.
    If possible I would like to add a visualization on top.

    Are there any workflows how to do that?
    There is the “Visualizer” Plugin for WordPress but it seems to be for static entries only.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @martin136

    I’m sorry, but I don’t understand what do you want exactly.

    However, you can display the equation’s result where you want. For example, assuming your page includes a h1 tag with the class name: my-field

    <h1 class="my-field"></h1>

    and your current equation is: fieldname1+fieldname2

    you can edit it as follows:

    
    (function(){
    var result = fieldname1+fieldname2;
    jQuery('.my-field').html(result);
    return result;
    })()
    

    and the equation’s result would be displayed within the h1 tag.

    In the same way, it is possible to display the equation’s result in any other place of the web page.

    Best regards.

    Thread Starter martin136

    (@martin136)

    Thank you for your reply!

    I wanted to ask because maybe you already have implemented something like that and it would only be sth. like “make a check here and there in our options and add-ons” and then go for it.

    I will have a look at your solution as soon I can find time to check out new things.

    • This reply was modified 4 years, 9 months ago by martin136.
    Plugin Author codepeople

    (@codepeople)

    Hello @martin136

    I’m sorry, but I need you be more precise with the behavior you want.

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Visualization’ is closed to new replies.