To hide the first image on the product pages while keeping it visible on the shop page, you can use Wix’s Dev Mode (Velo). First, enable Dev Mode in your Wix Editor to add custom code. Then, identify the image you want to hide by giving it an ID, such as #firstImage. You’ll also need to identify the product page, either by its ID or by checking the page URL. Using a simple Velo code, you can check if the current page is a product page and hide the first image only on those pages. The code would look like this: if ($w("#productPage").isCurrentPage()) { $w("#firstImage").hide(); }. Once you’ve added the code, preview your site to ensure the image is hidden on the product pages but still visible on the shop page. This approach allows you to manage elements on different pages without complicating the layout.