erin
Forum Replies Created
-
Forum: Plugins
In reply to: [Listings for Appfolio] Fatal Error on WPEngineThe URL is saved in place. After experimenting, I found the fatal error occurs when there’s a trailing slash on the URL. Deleting the trailing slash after .com allowed it to work. This bug should be fixed within the plugin itself to either remove the trailing slash, or work with it included.
Thanks.Thanks, the post exclusion field is empty on our sites, but I’ll try some of those functions to see if I can see an issue if the results turn up empty in the future.
Thanks for the details Thomas. I think we may just auto-insert on posts older than a certain date and use the shortcode moving forward.
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] Error with Array PrintsDug through and eventually found the problem was a wrongly formatted date. Better to let Salesforce date it by itself!
Figured it out! Ended up creating a new version of the attendeelist.php template file.
I hope the below helps someone else!
<?php /* @var $EM_Event EM_Event */ $people = array(); $EM_Bookings = $EM_Event->get_bookings(); if( count($EM_Bookings->bookings) > 0 ){ ?> <table cellpadding="0" cellspacing="0" class="rsvp-comment-table" ><thead><tr><th class="rsvp-name" width="150">Name</th><th class="rsvp-comment" width="*">Comment</th></tr></thead><tbody> <?php foreach( $EM_Bookings as $EM_Booking){ if($EM_Booking->status == 1 && !in_array($EM_Booking->get_person()->ID, $people)){ $people[] = $EM_Booking->get_person()->ID; echo '<tr><td>'. $EM_Booking->get_person()->get_name() .' </td><td> ' . $EM_Booking->booking_comment. ' </td></tr>'; } } ?> </tbody></table> <?php }
Forum: Fixing WordPress
In reply to: How to stop subdomains automatically redirecting to primary domainHi star_rider – I’m in exactly the same boat as you. Could you please post the contents of the .htaccess files for your root and subdomain folder?
I went through the wringer with Bluehost support, but they couldn’t do the “I have also changed the redirects in your public_html/.htaccess file to variants that will work properly, instead of sending you to your primary domain when you click on links” part that your tech seemed to be able to do!
Any help would be greatly appreciated!