lunac
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: “Big” events calendar (main page, not sidebar)Ok… on retrospect this doesn’t work. It links all events to the last event. hmm…. back to the drawing boards
Forum: Fixing WordPress
In reply to: “Big” events calendar (main page, not sidebar)First of all. THANK YOU to all of you who helped figure this out. Oh, it is SUCH a big help.
To re-pay in kind, I figured the link part out.
First, you have to remove the “title” attribute in the link– or it will screw things up. So
echo
'<a>day_link(). '" title="' . calendar_days[$day_id]->get_titles() . '"';
becomes:
echo'<a>day_link();Next, add to the beginning of the add_post() in the ec3_Day class.
$link =get_permalink($entry->id);
$safe_title = '</a><a href="' . $link . '">';AND change the next variable to
$safe_title .=Lastly, close your link attribute:
// $safe_title.=' @'.$time ;<br />
$safe_title.=' @'.$time . '</a>';I hope this helps.
Forum: Fixing WordPress
In reply to: WP as standalone on desktop?If you own a mac. This process is very easy.
First go to Marc Liyanage page for information on how to get php and mysql up and running http://www.entropy.ch/software/macosx/welcome.html
Then download phpMyAdmin ( http://www.phpmyadmin.net/home_page/index.php ) so that you can manage your database.
Using phpMyAdmin, create the name of your database. Then install WordPress in your “Sites” folder and follow the directions. Your WP app will live at http://localhost/~yourusername
Better yet! Go to Patrick Gibson’s ( http://patrickgibson.com/news/andsuch/000091.php ) site and download his script for virtual hosting. Then you can have your vhost point to http://mywpdev/ or something like that.
The OSX was set up just for this type of thing, so flex your muscles and learn the system.