Biblio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: image-maps in pages?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.Forum: Fixing WordPress
In reply to: image-maps in pages?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?Forum: Fixing WordPress
In reply to: “Big” events calendar (main page, not sidebar)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.
Forum: Fixing WordPress
In reply to: “Big” events calendar (main page, not sidebar)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?