Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions wp/wp-content/plugins/TcApi-hookup/includes/public.php
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ function tcapi_get_activitySummary($atts, $key = "") {
$response = wp_remote_get($url, $args);

if (is_wp_error($response) || !isset ( $response ['body'] )) {
return $key == "memberCount" ? "675,000+" : "Error in processing";
return $key == "memberCount" ? "860,000+" : "$30,000+";
}
if ($response ['response'] ['code'] == 200) {
$activity = json_decode($response ['body']);
Expand All @@ -412,7 +412,7 @@ function tcapi_get_activitySummary($atts, $key = "") {
}
return $activity;
}
return $key == "memberCount" ? "675,000+" : "Error in processing request";
return $key == "memberCount" ? "860,000+" : "$30,000+";
}


Expand Down Expand Up @@ -558,7 +558,7 @@ function tcapi_get_track_statistics($atts, $key = "") {
}

$response = wp_remote_get($url, $args);

if (is_wp_error($response) || !isset ( $response ['body'] )) {
return "Error in processing";
}
Expand Down