Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Biblio

    (@biblio)

    Glory be! It works!
    For future numbskulls such as I, you disable the editor on your personal preferences page under “Users.” I thought I had disabled it on the “Options” page, but that doesn’t affect the page editor.
    Thanks, all.

    Thread Starter Biblio

    (@biblio)

    Ok, that makes sense…let me try to fix it…
    …this is weird: the hrefs are there in my html editor, but when I cut and paste them into WP’s html editor they get stripped out. That explains why the map worked in a seperate html file. Now what?

    Well, I tried that, and got an error. As of now I’ve restored the original settings in the code, so you won’t see the issue I’ve described, but I am still interested in getting this to work.

    I implemented the suggestions in this thread and have a little problem. I put this in my eventcalendar3.php:
    // insert day
    $day_id = $date->day_id();
    echo "<td id='$day_id'";
    if(array_key_exists($day_id,$calendar_days))
    {
    echo ' class="ec3_postday';
    if($calendar_days[$day_id]->is_event)
    echo ' ec3_eventday';
    //echo '>' . $date->day_num;
    echo '">';
    echo 'day_link()' . '" title="' . $calendar_days[$day_id]->get_titles() . '"';
    if($calendar_days[$day_id]->is_event)
    echo ' class="eventday"';
    echo ">$date->day_num";
    echo $calendar_days[$day_id]->get_titles() ;
    }
    else
    {
    echo '>' . $date->day_num;
    }
    echo '</td>';

    but now my titles show up with bits of code in them. My calendar is here.
    Any ideas?

Viewing 4 replies - 1 through 4 (of 4 total)