Jack1
1
Hello, I have been trying to get php to work on the page builder but even the simplest echo won’t work
I have a heading where I am putting the following:
However on the live site it just appears as:

I have code enabled in the settings:
Any idea what I am doing wrong?
timmse
2
Hi Jack,
Welcome to the forum!
The Bricks echo
tag renders the output of any PHP function.
Please have a look at the Academy:
Let’s assume you have the following PHP function
function hello() {
return "Hello world";
}
Using {echo:hello}
within the builder outputs “Hello world”.
Best regards,
timmse