WP with Scheduler - Export PDF + Mark Now little issues

Hi, for quite a while now I’ve had Scheduler installed on a Wordpress side and the site owners just couldn’t be happier, so from them to you a HUGE thank you!

Having just done a late update of both WP and Scheduler, there are a couple of little issues/questions I had.

  1. With an install in WP straight out of the box with appropriate boxes ticked/not ticked in settings, there are 2 things happening:
    i) I don’t have the “Mark Now” option checked but it is showing up on the Scheduler page anyway. I found the CSS which displays the red line and removed that so now nothing is showing, but it shouldn’t have been showing up - right?

ii) When exporting a PDF, the “&” is showing up as “&”. I ended up installing/configuring the scheduler pdf (php) package and using that to generate the PDF and it works fine … so thought you might want to fix that up on the DHTMLX appspot site.

  1. I have a custom field defined and working - but was wondering how I could make the text bold when outputting to pdf?

Many thanks! :slight_smile:

Hi,
thanks for your feedback :slight_smile:

Yes, you right, it’s incorrect behavior. Will be fixed in the next update.

It will be fixed in the future. You may use php export at your own server. To specify export url for scheduler plugin you may add in plugins/event-calendar-scheduler/scheduler_include.html the follow code:

<script>
scheduler.config.export_.pdf_url = "http://your_export_url/scheduler-pdf-php/generate.php";
</script>

If you’re using local php export script then you could customize file pdfWrapper.php. It implements drawing scheduler pdf page.

Thank you very much! :slight_smile: