Aheleos
Forum Replies Created
-
Forum: Plugins
In reply to: [Pro Categories Widget] Does not work with PHP >7.4Hi there. I’m taking a look at this issue for a clients site. I may do a custom solution that meets the same purpose. I’ll try to post here in the next few days with a solution.
Forum: Themes and Templates
In reply to: [Di Restaurant] Color picker causing errorsThank you!
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Update errorI came here for the same issue, but it looks like someone jumped in and fixed it quickly!
Forum: Plugins
In reply to: [Showtime] Parse error: syntax error, unexpected end of filebrowser glitch kept resubmitting. Sorry for the spam.
Final note is that if you don’t have the shot_open_tag enabled you may also need to add php after the open <? tags
Forum: Plugins
In reply to: [Showtime] Parse error: syntax error, unexpected end of fileok, further clarification as it’s too late to edit my last comment.
Instead of the = sign, I am using echo and then using the semi-colon to end the line like this
<textarea name=”showtime_options[showtimeCSS]” cols=”90″ rows=”30″><? echo $showtimeCSS; ?></textarea>
Probably just has to do with the version of php that is pre 5.4.0 not having the short_open_tag enabled.
That’s what it was for me anyway.
Forum: Plugins
In reply to: [Showtime] Parse error: syntax error, unexpected end of fileok, further clarification as it’s too late to edit my last comment.
Instead of the = sign, I am using echo and then using the semi-colon to end the line like this
<textarea name=”showtime_options[showtimeCSS]” cols=”90″ rows=”30″><? echo $showtimeCSS; ?></textarea>
Probably just has to do with the version of php that is pre 5.4.0 not having the short_open_tag enabled.
That’s what it was for me anyway.
Forum: Plugins
In reply to: [Showtime] Parse error: syntax error, unexpected end of fileok, further clarification as it’s too late to edit my last comment.
Instead of the = sign, I am using echo and then using the semi-colon to end the line like this
<textarea name=”showtime_options[showtimeCSS]” cols=”90″ rows=”30″><? echo $showtimeCSS; ?></textarea>
Probably just has to do with the version of php that is pre 5.4.0 not having the short_open_tag enabled.
That’s what it was for me anyway.
Forum: Plugins
In reply to: [Showtime] Parse error: syntax error, unexpected end of fileok, further clarification as it’s too late to edit my last comment.
Instead of the = sign, I am using echo and then using the semi-colon to end the line like this
<textarea name=”showtime_options[showtimeCSS]” cols=”90″ rows=”30″><? echo $showtimeCSS; ?></textarea>
Probably just has to do with the version of php that is pre 5.4.0 not having the short_open_tag enabled.
That’s what it was for me anyway.
Forum: Plugins
In reply to: [Showtime] Parse error: syntax error, unexpected end of fileok, looks like I got it. Unless I’m missing something else….
in line 510 of showtime.php change
<textarea name=”showtime_options[showtimeCSS]” cols=”90″ rows=”30″><?= $showtimeCSS ?></textarea>to
<textarea name=”showtime_options[showtimeCSS]” cols=”90″ rows=”30″><? $showtimeCSS ?></textarea>
(remove the = sign)
I still haven’t fully tested this, but it does allow me to migrate and reactivate the plugin with the end of file error.
Forum: Plugins
In reply to: [Showtime] Parse error: syntax error, unexpected end of fileI’m having the same issue and looking at it now. I’ll post here if/when I find something