CES Customer Effort Score survey on website

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

CES Survey Implementation on Website

CES (Customer Effort Score) measures the effort a user exerted to achieve their goal: "How easy was it to resolve your issue?" Scale 1-7 (1 = very difficult, 7 = very easy). Low CES predicts churn.

Where to Apply CES

  • After onboarding completion
  • After support contact
  • After complex form or multi-step process
  • After first successful integration (B2B SaaS)

CES predicts repeat purchases in B2C and churn in B2B better than NPS.

API

// CesController
public function store(Request $request): JsonResponse
{
    $request->validate([
        'score'      => 'required|integer|min:1|max:7',
        'journey'    => 'required|string|max:100',  // 'onboarding', 'support', 'checkout'
        'comment'    => 'nullable|string|max:500',
    ]);

    CesResponse::create([
        'user_id'  => auth()->id(),
        'score'    => $request->score,
        'journey'  => $request->journey,
        'comment'  => $request->comment,
    ]);

    // If CES <= 3 — create task for support team
    if ($request->score <= 3) {
        SupportTask::create([
            'type'    => 'low_ces_followup',
            'user_id' => auth()->id(),
            'notes'   => "CES {$request->score} for {$request->journey}. Comment: {$request->comment}",
        ]);
    }

    return response()->json(['success' => true]);
}

Frontend: 7-Point Scale Widget

const SCALE = [
  { value: 1, label: 'Very\nDifficult' },
  { value: 2, label: '' },
  { value: 3, label: 'Difficult' },
  { value: 4, label: 'Neutral' },
  { value: 5, label: 'Easy' },
  { value: 6, label: '' },
  { value: 7, label: 'Very\nEasy' },
];

export function CesWidget({ journey }: { journey: string }) {
  const [selected, setSelected] = useState<number | null>(null);
  const [done, setDone] = useState(false);

  const submit = async (value: number) => {
    setSelected(value);
    await fetch('/api/ces', {
      method: 'POST',
      headers: { 'Content-Type': 'application/json' },
      body: JSON.stringify({ score: value, journey }),
    });
    setDone(true);
  };

  if (done) return <p className="text-sm text-green-600">Thank you! Your feedback helps us improve.</p>;

  return (
    <div>
      <p className="text-sm font-medium mb-3">How easy was it to complete this process?</p>
      <div className="flex gap-2">
        {SCALE.map(({ value, label }) => (
          <button key={value} onClick={() => submit(value)}
            className={`flex-1 py-2 rounded border text-sm font-medium transition-colors
              ${selected === value ? 'bg-blue-600 text-white border-blue-600' : 'border-gray-300 hover:border-blue-400'}`}>
            {value}
            {label && <span className="block text-xs text-gray-400 whitespace-pre-line leading-tight">{label}</span>}
          </button>
        ))}
      </div>
      <div className="flex justify-between text-xs text-gray-400 mt-1">
        <span>Very difficult</span><span>Very easy</span>
      </div>
    </div>
  );
}

Calculate Average CES

SELECT
  journey,
  ROUND(AVG(score), 2)        AS avg_ces,
  COUNT(*)                     AS responses,
  COUNT(*) FILTER (WHERE score <= 3) AS low_effort_count
FROM ces_responses
WHERE created_at >= now() - interval '30 days'
GROUP BY journey
ORDER BY avg_ces ASC;

Timeline

CES widget with low-score follow-up logic: 1-2 business days.