Hi,
I have create a new Pricing module but I get "Unsupported operand types: string & int" If I publish in correct position.
I add a screenshot about it.
Max.

Hi

I'm not familiar with native language on your site, could you share the URL of that page so I can replicate this error?

    The issue came from the ACM module, I just updated this file:

    /templates/ja_artsy/acm/pricing/tmpl/style-1.php

    Line 58, I changed:

    $value = ($tmp & pow(2, $col)) ? 'b1' : 'b0';

    to:

    $value = ((int)$tmp & pow(2, $col)) ? 'b1' : 'b0';

    Kindly check.

      Write a Reply...
      You need to Login to view replies.