SELECT 
  * 
FROM 
  cscart_bm_locations as l 
  LEFT JOIN cscart_bm_locations_descriptions as d ON d.location_id = l.location_id 
  AND d.lang_code = 'es' 
WHERE 
  l.layout_id = 3 
  AND l.dispatch IN ('products') 
ORDER BY 
  l.object_ids desc 
LIMIT 
  1

Query time 0.00035

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "36.70"
    },
    "ordering_operation": {
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "l",
            "access_type": "ALL",
            "rows_examined_per_scan": 158,
            "rows_produced_per_join": 1,
            "filtered": "1.00",
            "cost_info": {
              "read_cost": "34.49",
              "eval_cost": "0.32",
              "prefix_cost": "34.80",
              "data_read_per_join": "366"
            },
            "used_columns": [
              "location_id",
              "dispatch",
              "is_default",
              "layout_id",
              "object_ids",
              "custom_html",
              "position"
            ],
            "attached_condition": "((`marketpl_db`.`l`.`layout_id` = 3) and (`marketpl_db`.`l`.`dispatch` = 'products'))"
          }
        },
        {
          "table": {
            "table_name": "d",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "location_id",
              "lang_code"
            ],
            "key_length": "10",
            "ref": [
              "marketpl_db.l.location_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.58",
              "eval_cost": "0.32",
              "prefix_cost": "36.70",
              "data_read_per_join": "379"
            },
            "used_columns": [
              "location_id",
              "lang_code",
              "name",
              "title",
              "meta_description",
              "meta_keywords"
            ],
            "attached_condition": "<if>(is_not_null_compl(d), (`marketpl_db`.`d`.`location_id` = `marketpl_db`.`l`.`location_id`), true)"
          }
        }
      ]
    }
  }
}