-
Notifications
You must be signed in to change notification settings - Fork 1
Description
From Jeff at Cardwell:
When importing Events that have the Links field populated, they arrive into wordpress blank. (see screenshot)
The workaround I discovered is to delete the blank row in wordpress, save the listing, then click Reimport Fields, which then properly brings in the data.
The client is currently using WP OTIS 1.1.15, but I see the issue happening for 1.2.5.2 as well.
ex.
Winter Wonderland at Jackson Bottom
5504ea87-e663-416e-ac51-a9f010260344
Hillsboroafter initial import:
Links field
Network Type: blank
URL: blankafter deleting blank for, updating the listing, running Reimport Fields:
Links field
Network type: Website
URL: https://www.hillsboro-oregon.gov/Home/Components/Calendar/Event/124789/4816Here are some other listings having this issue for your testing:
Halloween BooSpiel at Evergreen Curling Club
03388aa9-e17b-4375-b74d-9fff3e4b9135Dinner and Wine with “Elvis” at Carpenter Creek Winery
3a44ccc3-ee89-49ad-98f3-878bbd99de6bMichele VanKleef at 503 Uncorked
a975dfa7-4e90-4993-84ee-bcf87c07acdeThe wordpress OTIS filter for tualatinvalley.org
add_filter( 'wp_otis_listings', function ( $params ) {
$params['city'] = 'Aloha|Banks|Beaverton|Buxton|Cornelius|Durham|Forest Grove|Gaston|Hillsboro|King City|North Plains|Portland|Sherwood|Tigard|Tualatin|Wilsonville';
$params['type'] = 'Events|Cities|Regions';
return $params;
} );