Customer Report from (cvtsoft : 834.832)

Number to show after search is set to 25.
Enabled Pagination is checked.
Pages are not showing up when results are returned.

YouTrack

https://storelocatorplus.youtrack.cloud/issue/SLP-8/Pagination-Not-Working

Research

Setting: enable_pagination (set to 1).


Dev Notes

Generate Embed (load) is calling \SLP_Premier_AJAX::add_ajax_hooks()
Find Locations (search) is NOT calling \SLP_Premier_AJAX::add_ajax_hooks()

Turns out the MySLP_REST_API was not initializing the add on modules for search mode, only load mode… patched in Dashboard 2503.05.03

Front End Processing

Now that the response is including the pagination we need to figure out why the JavaScript is not rendering/processing it.

This should be bundled into the front end processing as an inline include of wp-content/plugins/slp-premier/js/slp-premier_userinterface.js

JavaScript: SLPPREMIER.location_list.add_pagination() should manage this.

Backend Data Handling

The two primary pagination handlers are from here:

\SLP_Premier_AJAX_Pagination::modify_sql_for_pagination()
attached to hook ‘slp_ajaxsql_fullquery’

\SLP_Premier_AJAX_Pagination::modify_ajax_response()
attached to hook ‘slp_ajax_response’

Hooking modify_ajax_response

REST ROUTE: myslp/v2/locations-map/search

Call Stacks

After patch — the search and initial results are sending back pagination data to the front end.

load

SLP_Premier_AJAX.php:51, SLP_Premier_AJAX->add_ajax_hooks()
base_class.ajax.php:86, SLP_BaseClass_AJAX->do_ajax_startup()
base_class.ajax.php:53, SLP_BaseClass_AJAX->initialize()
SLP_Premier_AJAX.php:30, SLP_Premier_AJAX->initialize()
base_class.object.php:27, SLPlus_BaseClass_Object->__construct()
base_class.object.php:84, SLPlus_BaseClass_Object::get_instance()
MySLP_REST_API.php:721, MySLP_REST_API->get_map_locations()
MySLP_REST_API.php:296, MySLP_REST_API->search_map()
MySLP.php:265, MySLP->rest_dispatch_request_filter()
class-wp-hook.php:324, WP_Hook->apply_filters()
plugin.php:205, apply_filters()
class-wp-rest-server.php:1187, WP_REST_Server->respond_to_request()
class-wp-rest-server.php:1041, WP_REST_Server->dispatch()
class-wp-rest-server.php:431, WP_REST_Server->serve_request()
rest-api.php:424, rest_api_loaded()
class-wp-hook.php:324, WP_Hook->apply_filters()
class-wp-hook.php:348, WP_Hook->do_action()
plugin.php:565, do_action_ref_array()
class-wp.php:418, WP->parse_request()
class-wp.php:813, WP->main()
functions.php:1336, wp()
wp-blog-header.php:16, require()
index.php:17, {main}()

search

SLP_Premier_AJAX.php:51, SLP_Premier_AJAX->add_ajax_hooks()
base_class.ajax.php:86, SLP_BaseClass_AJAX->do_ajax_startup()
base_class.ajax.php:53, SLP_BaseClass_AJAX->initialize()
SLP_Premier_AJAX.php:30, SLP_Premier_AJAX->initialize()
base_class.object.php:27, SLPlus_BaseClass_Object->__construct()
base_class.object.php:84, SLPlus_BaseClass_Object::get_instance()
MySLP_REST_API.php:721, MySLP_REST_API->get_map_locations()
MySLP_REST_API.php:296, MySLP_REST_API->search_map()
MySLP.php:265, MySLP->rest_dispatch_request_filter()
class-wp-hook.php:324, WP_Hook->apply_filters()
plugin.php:205, apply_filters()
class-wp-rest-server.php:1187, WP_REST_Server->respond_to_request()
class-wp-rest-server.php:1041, WP_REST_Server->dispatch()
class-wp-rest-server.php:431, WP_REST_Server->serve_request()
rest-api.php:424, rest_api_loaded()
class-wp-hook.php:324, WP_Hook->apply_filters()
class-wp-hook.php:348, WP_Hook->do_action()
plugin.php:565, do_action_ref_array()
class-wp.php:418, WP->parse_request()
class-wp.php:813, WP->main()
functions.php:1336, wp()
wp-blog-header.php:16, require()
index.php:17, {main}()

Notes…


$this->slplus->SmartOptions->is_true( 'pagination_enabled' ) is true
Calling...
add_filter( 'slp_ajaxsql_fullquery', array( $pagination, 'modify_sql_for_pagination' ) );

modify_sql_for_pagination is called, but $_REQUEST[‘page’] is empty.

\SLP_Premier_AJAX_Pagination::modify_sql_for_pagination()

Handles moving between pages once the pages are rendered.

\SLP_Premier_AJAX_Pagination::modify_ajax_response()

Handles crafting the modified response with HTML etc. for pagination.

Response [‘premier’][‘pagination_block’] is set…

The front end is receiving the premier response value:

/**/
initMySLP({
    "data": {
        "success": true,
        "slp_version": "2503.05.02",
        "data_queries": {
            "standard_location_search": {
                "query_slugs": ["selectall_with_distance", "where_default_validlatlong"],
                "query": "SELECT *,( 3959 * acos( cos( radians( 34.043925 ) ) * cos( radians( sl_latitude ) ) * cos( radians( sl_longitude ) - radians( -118.242429 ) ) + sin( radians( 34.043925 ) ) * sin( radians( sl_latitude ) ) ) ) AS sl_distance  FROM wp_832_store_locator  LEFT JOIN wp_832_slp_extendo USING(sl_id)  WHERE   sl_latitude REGEXP '^[0-9]|-' AND sl_longitude REGEXP '^[0-9]|-'  AND  ( NOT sl_private OR sl_private IS NULL)     HAVING (sl_distance < 200.000000) OR (sl_distance IS NULL)  ORDER BY sl_distance asc LIMIT 25",
                "params": [3959, "34.043925", "-118.242429", "34.043925", "200", "25"],
                "locations": {
                    "pre-filter": 25,
                    "filtered": 25
                }
            }
        },
        "count": 25,
        "type": "search",
        "http_query": {
            "callback": "initMySLP",
            "action": "csl_ajax_search",
            "address": "90013",
            "formdata": "nameSearch=&addressInput=90013&addressInputCity=&addressInputState=&addressInputCountry=&ignore_radius=0",
            "lat": "34.043925",
            "lng": "-118.242429",
            "options": {
                "map_center_lat": "37.09024000",
                "map_center_lng": "-95.71289100",
                "city": "",
                "country": "",
                "distance_unit": "miles",
                "ignore_radius": "0",
                "initial_radius": "",
                "map_domain": "maps.google.com",
                "map_end_icon": "https:\/\/local.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/wp-content\/mu-plugins\/store-locator-plus\/images\/icons\/bulb_azure.png",
                "state": "",
                "territory": ""
            },
            "radius": "200",
            "nonce": "d47fb592a4",
            "api_key": "myslp.e0db54d191521ffc7b7908019919af0340185260666a814397a7ecde7dedab66",
            "_jsonp": "initMySLP",
            "_": "1741202325419"
        },
        "response": [{
            "name": "Dash Mart on Doordash delivers to 90013",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90013",
            "country": "USA",
            "lat": "34.0445905",
            "lng": "-118.2405557",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14851",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "0.11669715301840718",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7633",
            "linked_postid": "14851",
            "neat_title": "",
            "data": {
                "sl_id": "7633",
                "sl_store": "Dash Mart on Doordash delivers to 90013",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90013",
                "sl_country": "USA",
                "sl_latitude": "34.0445905",
                "sl_longitude": "-118.2405557",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14851",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14851",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "0.5577071875",
                "sl_lastupdated": "2024-12-05 00:56:07",
                "id": "5349",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "0.11669715301840718",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90013",
            "zip_state_city": "<span class=\"slp_zip\">90013<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90014",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90014",
            "country": "USA",
            "lat": "34.0434783",
            "lng": "-118.2519314",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14853",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "0.5449348177205784",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7634",
            "linked_postid": "14853",
            "neat_title": "",
            "data": {
                "sl_id": "7634",
                "sl_store": "Dash Mart on Doordash delivers to 90014",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90014",
                "sl_country": "USA",
                "sl_latitude": "34.0434783",
                "sl_longitude": "-118.2519314",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14853",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14853",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "0.7674137349",
                "sl_lastupdated": "2024-12-05 00:56:07",
                "id": "5350",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "0.5449348177205784",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90014",
            "zip_state_city": "<span class=\"slp_zip\">90014<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Joe&#039;s Downtown Market",
            "address": "1855 Industrial St #102",
            "address2": "",
            "city": "Los Angeles",
            "state": "CA",
            "zip": "90021",
            "country": "USA",
            "lat": "34.0359188",
            "lng": "-118.2329505",
            "description": "",
            "url": "",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=16065",
            "email": "",
            "email_link": "",
            "hours": "Monday-Thursday 7\u202fAM\u201311\u202fPMFriday 7\u202fAM\u201312\u202fAMSaturday 8\u202fAM\u201312\u202fAMSunday 8\u202fAM\u201311\u202fPM",
            "phone": "(213)612-0248",
            "fax": "",
            "image": "",
            "distance": "0.7749714130526429",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "8240",
            "linked_postid": "16065",
            "neat_title": "",
            "data": {
                "sl_id": "8240",
                "sl_store": "Joe's Downtown Market",
                "sl_address": "1855 Industrial St #102",
                "sl_address2": "",
                "sl_city": "Los Angeles",
                "sl_state": "CA",
                "sl_zip": "90021",
                "sl_country": "USA",
                "sl_latitude": "34.0359188",
                "sl_longitude": "-118.2329505",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "",
                "sl_hours": "Monday-Thursday 7\u202fAM\u201311\u202fPMFriday 7\u202fAM\u201312\u202fAMSaturday 8\u202fAM\u201312\u202fAMSunday 8\u202fAM\u201311\u202fPM",
                "sl_phone": "(213)612-0248",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "0",
                "sl_neat_title": "",
                "sl_linked_postid": "16065",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=16065",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "1.2839906999",
                "sl_lastupdated": "2024-12-05 00:58:37",
                "id": "5956",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "0.7749714130526429",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "Los Angeles, CA 90021",
            "zip_state_city": "<span class=\"slp_zip\">90021<\/span> <span class=\"slp_state\">CA<\/span> <span class=\"slp_city\">Los Angeles<\/span>",
            "web_link": "",
            "url_link": "",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90079",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90079",
            "country": "USA",
            "lat": "34.0405313",
            "lng": "-118.2554032",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14921",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "0.7789839034060889",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7668",
            "linked_postid": "14921",
            "neat_title": "",
            "data": {
                "sl_id": "7668",
                "sl_store": "Dash Mart on Doordash delivers to 90079",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90079",
                "sl_country": "USA",
                "sl_latitude": "34.0405313",
                "sl_longitude": "-118.2554032",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14921",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14921",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "1.0507104540",
                "sl_lastupdated": "2024-12-05 00:56:15",
                "id": "5384",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "0.7789839034060889",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90079",
            "zip_state_city": "<span class=\"slp_zip\">90079<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90021",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90021",
            "country": "USA",
            "lat": "34.0309258",
            "lng": "-118.2380432",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14867",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "0.9326586983478194",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7641",
            "linked_postid": "14867",
            "neat_title": "",
            "data": {
                "sl_id": "7641",
                "sl_store": "Dash Mart on Doordash delivers to 90021",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90021",
                "sl_country": "USA",
                "sl_latitude": "34.0309258",
                "sl_longitude": "-118.2380432",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14867",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14867",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "1.5073646711",
                "sl_lastupdated": "2024-12-05 00:56:09",
                "id": "5357",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "0.9326586983478194",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90021",
            "zip_state_city": "<span class=\"slp_zip\">90021<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90071",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90071",
            "country": "USA",
            "lat": "34.052996",
            "lng": "-118.2548551",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14919",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "0.9481412706385178",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7667",
            "linked_postid": "14919",
            "neat_title": "",
            "data": {
                "sl_id": "7667",
                "sl_store": "Dash Mart on Doordash delivers to 90071",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90071",
                "sl_country": "USA",
                "sl_latitude": "34.052996",
                "sl_longitude": "-118.2548551",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14919",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14919",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "0.6416408684",
                "sl_lastupdated": "2024-12-05 00:56:15",
                "id": "5383",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "0.9481412706385178",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90071",
            "zip_state_city": "<span class=\"slp_zip\">90071<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Ralphs Fresh Fare 9Th &amp; Flower St",
            "address": "645 W 9th St",
            "address2": "",
            "city": "Los Angeles",
            "state": "CA",
            "zip": "90015",
            "country": "USA",
            "lat": "34.0456361",
            "lng": "-118.2608972",
            "description": "",
            "url": "https:\/\/www.ralphs.com\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=16661",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "1.0639731085058102",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "8538",
            "linked_postid": "16661",
            "neat_title": "",
            "data": {
                "sl_id": "8538",
                "sl_store": "Ralphs Fresh Fare 9Th & Flower St",
                "sl_address": "645 W 9th St",
                "sl_address2": "",
                "sl_city": "Los Angeles",
                "sl_state": "CA",
                "sl_zip": "90015",
                "sl_country": "USA",
                "sl_latitude": "34.0456361",
                "sl_longitude": "-118.2608972",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.ralphs.com\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "16661",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=16661",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "1.0857734177",
                "sl_lastupdated": "2024-12-05 00:59:57",
                "id": "6254",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "1.0639731085058102",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "Los Angeles, CA 90015",
            "zip_state_city": "<span class=\"slp_zip\">90015<\/span> <span class=\"slp_state\">CA<\/span> <span class=\"slp_city\">Los Angeles<\/span>",
            "web_link": "<a href='https:\/\/www.ralphs.com\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.ralphs.com\/' target='_blank' class='storelocatorlink'>https:\/\/www.ralphs.com\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90015",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90015",
            "country": "USA",
            "lat": "34.0390107",
            "lng": "-118.2672801",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14855",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "1.4628443809272458",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7635",
            "linked_postid": "14855",
            "neat_title": "",
            "data": {
                "sl_id": "7635",
                "sl_store": "Dash Mart on Doordash delivers to 90015",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90015",
                "sl_country": "USA",
                "sl_latitude": "34.0390107",
                "sl_longitude": "-118.2672801",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14855",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14855",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "1.6308874586",
                "sl_lastupdated": "2024-12-05 00:56:07",
                "id": "5351",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "1.4628443809272458",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90015",
            "zip_state_city": "<span class=\"slp_zip\">90015<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90012",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90012",
            "country": "USA",
            "lat": "34.0653347",
            "lng": "-118.243891",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14849",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "1.481724264887658",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7632",
            "linked_postid": "14849",
            "neat_title": "",
            "data": {
                "sl_id": "7632",
                "sl_store": "Dash Mart on Doordash delivers to 90012",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90012",
                "sl_country": "USA",
                "sl_latitude": "34.0653347",
                "sl_longitude": "-118.243891",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14849",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14849",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "0.9053035393",
                "sl_lastupdated": "2024-12-05 00:56:07",
                "id": "5348",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "1.481724264887658",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90012",
            "zip_state_city": "<span class=\"slp_zip\">90012<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90017",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90017",
            "country": "USA",
            "lat": "34.0543797",
            "lng": "-118.2672801",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14859",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "1.595648885839301",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7637",
            "linked_postid": "14859",
            "neat_title": "",
            "data": {
                "sl_id": "7637",
                "sl_store": "Dash Mart on Doordash delivers to 90017",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90017",
                "sl_country": "USA",
                "sl_latitude": "34.0543797",
                "sl_longitude": "-118.2672801",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14859",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14859",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "1.3588968929",
                "sl_lastupdated": "2024-12-05 00:56:08",
                "id": "5353",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "1.595648885839301",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90017",
            "zip_state_city": "<span class=\"slp_zip\">90017<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90033",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90033",
            "country": "USA",
            "lat": "34.0502898",
            "lng": "-118.2117257",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14885",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "1.8120274357223631",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7650",
            "linked_postid": "14885",
            "neat_title": "",
            "data": {
                "sl_id": "7650",
                "sl_store": "Dash Mart on Doordash delivers to 90033",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90033",
                "sl_country": "USA",
                "sl_latitude": "34.0502898",
                "sl_longitude": "-118.2117257",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14885",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14885",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "1.8345919429",
                "sl_lastupdated": "2024-12-05 00:56:11",
                "id": "5366",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "1.8120274357223631",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90033",
            "zip_state_city": "<span class=\"slp_zip\">90033<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Food 4 Less 6Th &amp; Burlington",
            "address": "1700 W 6th St",
            "address2": "",
            "city": "Los Angeles",
            "state": "CA",
            "zip": "90017",
            "country": "USA",
            "lat": "34.0569663",
            "lng": "-118.2703863",
            "description": "",
            "url": "https:\/\/www.food4less.com\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=15323",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "1.8368014603667637",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7869",
            "linked_postid": "15323",
            "neat_title": "",
            "data": {
                "sl_id": "7869",
                "sl_store": "Food 4 Less 6Th & Burlington",
                "sl_address": "1700 W 6th St",
                "sl_address2": "",
                "sl_city": "Los Angeles",
                "sl_state": "CA",
                "sl_zip": "90017",
                "sl_country": "USA",
                "sl_latitude": "34.0569663",
                "sl_longitude": "-118.2703863",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.food4less.com\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "15323",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=15323",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "1.5631697822",
                "sl_lastupdated": "2024-12-05 00:57:15",
                "id": "5585",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "1.8368014603667637",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "Los Angeles, CA 90017",
            "zip_state_city": "<span class=\"slp_zip\">90017<\/span> <span class=\"slp_state\">CA<\/span> <span class=\"slp_city\">Los Angeles<\/span>",
            "web_link": "<a href='https:\/\/www.food4less.com\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.food4less.com\/' target='_blank' class='storelocatorlink'>https:\/\/www.food4less.com\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90090",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90090",
            "country": "USA",
            "lat": "34.0726555",
            "lng": "-118.2441891",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14925",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "1.9877634369727886",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7670",
            "linked_postid": "14925",
            "neat_title": "",
            "data": {
                "sl_id": "7670",
                "sl_store": "Dash Mart on Doordash delivers to 90090",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90090",
                "sl_country": "USA",
                "sl_latitude": "34.0726555",
                "sl_longitude": "-118.2441891",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14925",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14925",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "1.4113713462",
                "sl_lastupdated": "2024-12-05 00:56:15",
                "id": "5386",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "1.9877634369727886",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90090",
            "zip_state_city": "<span class=\"slp_zip\">90090<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Food 4 Less Boyle Heights",
            "address": "2750 E 1st St",
            "address2": "",
            "city": "Los Angeles",
            "state": "CA",
            "zip": "90033",
            "country": "USA",
            "lat": "34.0407421",
            "lng": "-118.2057103",
            "description": "",
            "url": "https:\/\/www.food4less.com\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=15337",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "2.113835603200092",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7876",
            "linked_postid": "15337",
            "neat_title": "",
            "data": {
                "sl_id": "7876",
                "sl_store": "Food 4 Less Boyle Heights",
                "sl_address": "2750 E 1st St",
                "sl_address2": "",
                "sl_city": "Los Angeles",
                "sl_state": "CA",
                "sl_zip": "90033",
                "sl_country": "USA",
                "sl_latitude": "34.0407421",
                "sl_longitude": "-118.2057103",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.food4less.com\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "15337",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=15337",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "2.3146385187",
                "sl_lastupdated": "2024-12-05 00:57:16",
                "id": "5592",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "2.113835603200092",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "Los Angeles, CA 90033",
            "zip_state_city": "<span class=\"slp_zip\">90033<\/span> <span class=\"slp_state\">CA<\/span> <span class=\"slp_city\">Los Angeles<\/span>",
            "web_link": "<a href='https:\/\/www.food4less.com\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.food4less.com\/' target='_blank' class='storelocatorlink'>https:\/\/www.food4less.com\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90057",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90057",
            "country": "USA",
            "lat": "34.0617061",
            "lng": "-118.2789735",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14905",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "2.426220306835757",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7660",
            "linked_postid": "14905",
            "neat_title": "",
            "data": {
                "sl_id": "7660",
                "sl_store": "Dash Mart on Doordash delivers to 90057",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90057",
                "sl_country": "USA",
                "sl_latitude": "34.0617061",
                "sl_longitude": "-118.2789735",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14905",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14905",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "2.1235071845",
                "sl_lastupdated": "2024-12-05 00:56:13",
                "id": "5376",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "2.426220306835757",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90057",
            "zip_state_city": "<span class=\"slp_zip\">90057<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Lassens Echo Park \u2013 LA",
            "address": "1631 Sunset Blvd",
            "address2": "",
            "city": "Los Angeles",
            "state": "CA",
            "zip": "90026",
            "country": "",
            "lat": "34.0776812",
            "lng": "-118.25788",
            "description": "",
            "url": "https:\/\/www.lassens.com\/\/stores\/lassens-echo-park",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=16309",
            "email": "",
            "email_link": "",
            "hours": "7AM- 11PM Every Day",
            "phone": "(213) 542-6535",
            "fax": "",
            "image": "",
            "distance": "2.49453601774662",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "8362",
            "linked_postid": "16309",
            "neat_title": "",
            "data": {
                "sl_id": "8362",
                "sl_store": "Lassens Echo Park \u2013 LA",
                "sl_address": "1631 Sunset Blvd",
                "sl_address2": "",
                "sl_city": "Los Angeles",
                "sl_state": "CA",
                "sl_zip": "90026",
                "sl_country": "",
                "sl_latitude": "34.0776812",
                "sl_longitude": "-118.25788",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.lassens.com\/\/stores\/lassens-echo-park",
                "sl_hours": "7AM- 11PM Every Day",
                "sl_phone": "(213) 542-6535",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "16309",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=16309",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "1.9369993470",
                "sl_lastupdated": "2024-12-05 00:59:04",
                "id": "6078",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "2.49453601774662",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "Los Angeles, CA 90026",
            "zip_state_city": "<span class=\"slp_zip\">90026<\/span> <span class=\"slp_state\">CA<\/span> <span class=\"slp_city\">Los Angeles<\/span>",
            "web_link": "<a href='https:\/\/www.lassens.com\/\/stores\/lassens-echo-park' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.lassens.com\/\/stores\/lassens-echo-park' target='_blank' class='storelocatorlink'>https:\/\/www.lassens.com\/\/stores\/lassens-echo-park<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90007",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90007",
            "country": "USA",
            "lat": "34.0295114",
            "lng": "-118.2848199",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14841",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "2.6236707538650763",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7628",
            "linked_postid": "14841",
            "neat_title": "",
            "data": {
                "sl_id": "7628",
                "sl_store": "Dash Mart on Doordash delivers to 90007",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90007",
                "sl_country": "USA",
                "sl_latitude": "34.0295114",
                "sl_longitude": "-118.2848199",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14841",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14841",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "2.8306145702",
                "sl_lastupdated": "2024-12-05 00:56:06",
                "id": "5344",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "2.6236707538650763",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90007",
            "zip_state_city": "<span class=\"slp_zip\">90007<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90026",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90026",
            "country": "USA",
            "lat": "34.0796167",
            "lng": "-118.2585096",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14873",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "2.632396399767629",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7644",
            "linked_postid": "14873",
            "neat_title": "",
            "data": {
                "sl_id": "7644",
                "sl_store": "Dash Mart on Doordash delivers to 90026",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90026",
                "sl_country": "USA",
                "sl_latitude": "34.0796167",
                "sl_longitude": "-118.2585096",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14873",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14873",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "2.0736477514",
                "sl_lastupdated": "2024-12-05 00:56:09",
                "id": "5360",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "2.632396399767629",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90026",
            "zip_state_city": "<span class=\"slp_zip\">90026<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90011",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90011",
            "country": "USA",
            "lat": "34.007889",
            "lng": "-118.2585096",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14847",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "2.654832858816678",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7631",
            "linked_postid": "14847",
            "neat_title": "",
            "data": {
                "sl_id": "7631",
                "sl_store": "Dash Mart on Doordash delivers to 90011",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90011",
                "sl_country": "USA",
                "sl_latitude": "34.007889",
                "sl_longitude": "-118.2585096",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14847",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14847",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "3.1795551445",
                "sl_lastupdated": "2024-12-05 00:56:06",
                "id": "5347",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "2.654832858816678",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90011",
            "zip_state_city": "<span class=\"slp_zip\">90011<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Vons",
            "address": "1342 N Alvarado St",
            "address2": "",
            "city": "Los Angeles",
            "state": "",
            "zip": "90026",
            "country": "",
            "lat": "34.0794703",
            "lng": "-118.2613418",
            "description": "",
            "url": "https:\/\/www.vons.com\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=17822",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "(213) 483-5573",
            "fax": "",
            "image": "",
            "distance": "2.684114631261018",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "9118",
            "linked_postid": "17822",
            "neat_title": "",
            "data": {
                "sl_id": "9118",
                "sl_store": "Vons",
                "sl_address": "1342 N Alvarado St",
                "sl_address2": "",
                "sl_city": "Los Angeles",
                "sl_state": "",
                "sl_zip": "90026",
                "sl_country": "",
                "sl_latitude": "34.0794703",
                "sl_longitude": "-118.2613418",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.vons.com\/",
                "sl_hours": "",
                "sl_phone": "(213) 483-5573",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "17822",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=17822",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "2.1361762872",
                "sl_lastupdated": "2025-01-30 19:41:17",
                "id": null,
                "featured": null,
                "rank": null,
                "marker": null,
                "sl_distance": "2.684114631261018",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "Los Angeles 90026",
            "zip_state_city": "<span class=\"slp_zip\">90026<\/span> <span class=\"slp_city\">Los Angeles<\/span>",
            "web_link": "<a href='https:\/\/www.vons.com\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.vons.com\/' target='_blank' class='storelocatorlink'>https:\/\/www.vons.com\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": [],
            "featured": "",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90058",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90058",
            "country": "USA",
            "lat": "34.0063747",
            "lng": "-118.2234229",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14907",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "2.813683698438801",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7661",
            "linked_postid": "14907",
            "neat_title": "",
            "data": {
                "sl_id": "7661",
                "sl_store": "Dash Mart on Doordash delivers to 90058",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90058",
                "sl_country": "USA",
                "sl_latitude": "34.0063747",
                "sl_longitude": "-118.2234229",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14907",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14907",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "3.3745203768",
                "sl_lastupdated": "2024-12-05 00:56:13",
                "id": "5377",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "2.813683698438801",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90058",
            "zip_state_city": "<span class=\"slp_zip\">90058<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90023",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90023",
            "country": "USA",
            "lat": "34.0224471",
            "lng": "-118.2000277",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14871",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "2.8456265974487636",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7643",
            "linked_postid": "14871",
            "neat_title": "",
            "data": {
                "sl_id": "7643",
                "sl_store": "Dash Mart on Doordash delivers to 90023",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90023",
                "sl_country": "USA",
                "sl_latitude": "34.0224471",
                "sl_longitude": "-118.2000277",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14871",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14871",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "3.2380751867",
                "sl_lastupdated": "2024-12-05 00:56:09",
                "id": "5359",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "2.8456265974487636",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90023",
            "zip_state_city": "<span class=\"slp_zip\">90023<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Ralphs Adams &amp; Vermont",
            "address": "2600 S Vermont Ave",
            "address2": "",
            "city": "Los Angeles",
            "state": "CA",
            "zip": "90007",
            "country": "USA",
            "lat": "34.0319518",
            "lng": "-118.2907574",
            "description": "",
            "url": "https:\/\/www.ralphs.com\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=16609",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "2.888256147314562",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "8512",
            "linked_postid": "16609",
            "neat_title": "",
            "data": {
                "sl_id": "8512",
                "sl_store": "Ralphs Adams & Vermont",
                "sl_address": "2600 S Vermont Ave",
                "sl_address2": "",
                "sl_city": "Los Angeles",
                "sl_state": "CA",
                "sl_zip": "90007",
                "sl_country": "USA",
                "sl_latitude": "34.0319518",
                "sl_longitude": "-118.2907574",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.ralphs.com\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "16609",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=16609",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "3.0377736912",
                "sl_lastupdated": "2024-12-05 00:59:39",
                "id": "6228",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "2.888256147314562",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "Los Angeles, CA 90007",
            "zip_state_city": "<span class=\"slp_zip\">90007<\/span> <span class=\"slp_state\">CA<\/span> <span class=\"slp_city\">Los Angeles<\/span>",
            "web_link": "<a href='https:\/\/www.ralphs.com\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.ralphs.com\/' target='_blank' class='storelocatorlink'>https:\/\/www.ralphs.com\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Dash Mart on Doordash delivers to 90089",
            "address": "",
            "address2": "",
            "city": "",
            "state": "",
            "zip": "90089",
            "country": "USA",
            "lat": "34.0220127",
            "lng": "-118.2892046",
            "description": "",
            "url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=14923",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "3.0767992640997863",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7669",
            "linked_postid": "14923",
            "neat_title": "",
            "data": {
                "sl_id": "7669",
                "sl_store": "Dash Mart on Doordash delivers to 90089",
                "sl_address": "",
                "sl_address2": "",
                "sl_city": "",
                "sl_state": "",
                "sl_zip": "90089",
                "sl_country": "USA",
                "sl_latitude": "34.0220127",
                "sl_longitude": "-118.2892046",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "14923",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=14923",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "3.3397784132",
                "sl_lastupdated": "2024-12-05 00:56:15",
                "id": "5385",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "3.0767992640997863",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "90089",
            "zip_state_city": "<span class=\"slp_zip\">90089<\/span>",
            "web_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/' target='_blank' class='storelocatorlink'>https:\/\/www.doordash.com\/search\/store\/CVT%20soft%20serve\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }, {
            "name": "Food 4 Less Olympic &amp; Calada",
            "address": "3654 E Olympic Blvd",
            "address2": "",
            "city": "Los Angeles",
            "state": "CA",
            "zip": "90023",
            "country": "USA",
            "lat": "34.0178978",
            "lng": "-118.1983966",
            "description": "",
            "url": "https:\/\/www.food4less.com\/",
            "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&#038;p=15403",
            "email": "",
            "email_link": "",
            "hours": "",
            "phone": "",
            "fax": "",
            "image": "",
            "distance": "3.0971018704816133",
            "tags": "",
            "option_value": "",
            "attributes": "",
            "id": "7909",
            "linked_postid": "15403",
            "neat_title": "",
            "data": {
                "sl_id": "7909",
                "sl_store": "Food 4 Less Olympic & Calada",
                "sl_address": "3654 E Olympic Blvd",
                "sl_address2": "",
                "sl_city": "Los Angeles",
                "sl_state": "CA",
                "sl_zip": "90023",
                "sl_country": "USA",
                "sl_latitude": "34.0178978",
                "sl_longitude": "-118.1983966",
                "sl_tags": "",
                "sl_description": "",
                "sl_email": "",
                "sl_url": "https:\/\/www.food4less.com\/",
                "sl_hours": "",
                "sl_phone": "",
                "sl_fax": "",
                "sl_image": "",
                "sl_private": "",
                "sl_neat_title": "",
                "sl_linked_postid": "15403",
                "sl_pages_url": "https:\/\/dashboard.storelocatorplus.com\/john_at_cvtsoftserve_dot_com\/?post_type=store_page&p=15403",
                "sl_pages_on": "",
                "sl_option_value": "",
                "sl_initial_distance": "3.5148171889",
                "sl_lastupdated": "2024-12-05 00:57:23",
                "id": "5625",
                "featured": "0",
                "rank": null,
                "marker": null,
                "sl_distance": "3.0971018704816133",
                "in_territory": "0",
                "in_territory_class": ""
            },
            "city_state_zip": "Los Angeles, CA 90023",
            "zip_state_city": "<span class=\"slp_zip\">90023<\/span> <span class=\"slp_state\">CA<\/span> <span class=\"slp_city\">Los Angeles<\/span>",
            "web_link": "<a href='https:\/\/www.food4less.com\/' target='_blank' class='storelocatorlink'>Website<\/a><br\/>",
            "url_link": "<a href='https:\/\/www.food4less.com\/' target='_blank' class='storelocatorlink'>https:\/\/www.food4less.com\/<\/a><br\/>",
            "contact_image_html": "",
            "categories": [],
            "category_count": 0,
            "category_names": "",
            "icon": "",
            "iconarray": "",
            "exdata": {
                "featured": "0"
            },
            "featured": "0",
            "rank": ""
        }],
        "premier": {
            "pagination_block": "<div class=\"results_pagination\"><span class=\"pagination_label\">More Locations: <\/span><a id=\"next-locations-page\" href=\"javascript:SLPPREMIER.location_list.get_next_page();\" title='Next Page' ><span class=\"dashicons dashicons-arrow-right-alt2\"><\/span><\/a><\/div>",
            "search_coordinates": "34.043925,-118.242429",
            "options": {
                "category_name_separator": ", ",
                "boundaries_influence_min_lat": "26.685477",
                "boundaries_influence_min_lng": "-151.048852",
                "boundaries_influence_max_lat": "64.854018",
                "boundaries_influence_max_lng": "-71.036289",
                "dropdown_autosubmit": "0",
                "installed_version": "2503.05.01",
                "pagination_label": "More Locations: ",
                "show_address_guess": "0",
                "show_location_on_order_email": "1",
                "woo_data_version": "0"
            }
        }
    },
    "warnings": "\"\""
})