Skip to content

Instantly share code, notes, and snippets.

@eklingen88
Created September 25, 2025 15:18
Show Gist options
  • Select an option

  • Save eklingen88/90f58adfaded851d6fd635b9dfb29f32 to your computer and use it in GitHub Desktop.

Select an option

Save eklingen88/90f58adfaded851d6fd635b9dfb29f32 to your computer and use it in GitHub Desktop.
diff --git a/modules/ListingPersonalization/src/Eligibility.php b/modules/ListingPersonalization/src/Eligibility.php
index c4debef803d8..9e514b737008 100644
--- a/modules/ListingPersonalization/src/Eligibility.php
+++ b/modules/ListingPersonalization/src/Eligibility.php
@@ -76,21 +76,22 @@ public static function isBOEVersionTooOldForMultiPersoExperience(): bool
if ($request->isFromEtsyApp()) {
$etsy_apps_detector = $request->getEtsyAppDetector();
return !($etsy_apps_detector->etsyAndroidVersionMatches(self::MIN_ANDROID_APP_VERSION)
|| $etsy_apps_detector->etsyiOSVersionMatches(self::MIN_IOS_APP_VERSION));
}
return false;
}
public static function isDropdownsEnabledSeller(): bool
{
- return Feature::isEnabled(self::DROPDOWNS_ENABLED_SELLER);
+ return false;
+ // return Feature::isEnabled(self::DROPDOWNS_ENABLED_SELLER);
}
public static function isDropdownsEnabledBuyer(): bool
{
return Feature::isEnabled(self::DROPDOWNS_ENABLED_BUYER);
}
public static function shouldWriteToLegacyTables(): bool
{
return Feature::isEnabled(self::WRITE_TO_LEGACY_TABLES);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment