• Forum
  • FAQ
  • Docs
Notice: In order to post a support question you have to have an account and be logged in.
Register  or  Login
  1. Hi,
    in TF_SHORTCODES.php file (framework\extensions\shortcodes) this code:

    $message = $func[0]::$func[1]($atts, $content);
    

    need to be replaced with:
    $message = $func[0]->$func[1]($atts, $content);
    

    and in SHORTCODES.php file (framework\extensions\shortcodes\helpers) this code:
     $ret = $func[0]::$func[1]($func_args[0], $func_args[1], $func_args[2]);
    

    need to be replaced with:
     $ret = $func[0]->$func[1]($func_args[0], $func_args[1], $func_args[2]);
    

    Cheers,
    Max.

    Max
    1 year ago
  2. Thanks Max, I'll let you know how it goes.

    Cheers
    Gabe

    gabrielthornton
    1 year ago

12


Add Reply

You must log in to post.

 

Add a new topic!

Chances are your issue is already answered, but if it’s not, you can always create a new topic.

Add new topic

Search forums

Searching for something specific? Type something and press Enter to search.