windowsrefund
Forum Replies Created
-
Forum: Plugins
In reply to: [Connections Business Directory] Is this the right plugin for my use case?@shazahm1 Thanks for the info. I’ve also noticed there appears to be no way to export the data. Am I correct or am I missing something?
Forum: Plugins
In reply to: Taskfreak 1.0.17 questions and bugsAlso, it would be nice if a “New Project” link was made available so users didn’t have to use the WordPress dashboard.
Forum: Plugins
In reply to: [Chained Quiz] How can I perform simple maintance tasks?nice
Forum: Plugins
In reply to: [Chained Quiz] re-order questions in a quizI’ve needed to do this as well and have just resorted to updating the wp_chained_questions table directly. In fact, I just realized I needed to add a question to the beging of my quiz. The approach taken was:
1. Add my new quiz
2. Add the new question to the quiz
3. In the database, update wp_chained_questions.quiz_id with the id of the new quiz where the column contained the id of the old quiz.Forum: Plugins
In reply to: [Chained Quiz] How can I perform simple maintance tasks?this will get me through in the meantime…
delete from wp_chained_completed where snapshot is null;Forum: Plugins
In reply to: [Chained Quiz] Redirect to page?yep, that’s what I’ve done in the meantime
Forum: Plugins
In reply to: [Event Organiser] How can I display an event's address?this seems to do the trick
<?php $address = eo_get_venue_address(eo_get_venue()); echo $address['address'] . "<br>" . $address['city'] . ", " . $address['state'] . ' ' . $address['postcode']; ?>