Hi Kevin,
thanks, it works perfectly.
Solved both issues! 🙂
Thank you again for your work.
Best regards,
Jesus
Hello spyros,
I have updated to 1.0.4 and I can confirm that the options.php error is gone, and so is undefined notice on the admin page of the plugin (the one on the line 119).
On line 391 there is no isset()… so I still get the error.
Line 391 on 1.0.4:
if ($_GET[‘page’] == ‘wpfai’) {
Proposed change:
if (isset($_GET[‘page’]) && $_GET[‘page’] == ‘wpfai’) {
Just a friendly reminder 😀
thanks,
Jesus (MasDeWeb)
Hi,
great job, much more flexible now.
Only a comment, maybe the default behaviour for the container should be no, because the container is only needed to set the layout, I mean when you want nested columns you don’t need a new container, you just need a container once, so most of the time you’ll have to set container to no.
Check:
http://twitter.github.com/bootstrap/scaffolding.html#layouts
to see what I mean.
Best