Elements and php-code

i use rw-classic very intensively and have just started playing around with rw-elements. I have found that some of the functions I need to convert my projects to rw elements are not currently working.

i very often use PHP code in my content and meta tags (title & description) to generate dates dynamically, for example like this:

<?php echo date("Y"); ?>
or
<?php echo date ("d.m.Y", strtotime("Monday this week"))?>

Although I have changed my test project under “default extensions” from .html to .php, the code is not output accordingly.

i know that rw-elements is currently still in the beta phase. will it be possible to use php code in the content and meta-tags in the future?

Hi @Pegasus,

I do not know what Rapidweaver is planning related to PHP and so on.

But in general I mostly use Javascript to achieve the stuff that you just mentioned. And that can also be achieved with Custom Components. So no need for a full PHP server.

Regards
Nicolas

Yes, PHP will work in Preview. Elements has a built-in PHP server, just like Classic.

You’ll just need to ensure the file extension on your existing pages are set to .php

Let me know how you get on.

1 Like

@dan
I can’t get it to run

see screenshots.




Hey @Pegasus,

Yes, we’re better at encoding things in Elements now - PHP really shouldn’t be put into this field.

A better way to do this would be to put the PHP code into the site Template like this…

If you need it different on a per page basis you could remove the title attribute from the main Template and put it in the “Headers” code area on each page.

Does that work for you?

@dan I have just tried that and it doesn’t work AFAICS?

Ah, okay that should work, but I’ve just tested it and there is a slight bug… if PHP is inside of an HTML element it gets removed and not rendered. We’ll get that fixed.

In the meantime doing it like this in Headers area of the Page Settings does work…

<?php
echo "<title>";
echo date("l, F j, Y");
echo "</title>";
?>

1 Like