如何在 Easy Digital Downloads 結賬頁面上更改產品圖片縮圖大小

正在檢視 2 個帖子:1-2 (共 2 個帖子)
  • 作者
    帖子
  • 詩語
    管理員
    • 文章數量: 5,932
    @feibisi
    樓主

    預設情況下,EDD 結帳頁上的產品縮圖顯示非常小 (25 x 25) 。以下是用於設定相同的自定義影象大小的程式碼片段:

    add_filter( 'edd_checkout_image_size', 'filter_edd_checkout_image_size', 10, 1 );
    /**
     * Change product image thumbnail size on Easy Digital Downloads checkout page.
     *
     * @param array $array default image size (25 x 25).
     * @return custom image size
     */
    function filter_edd_checkout_image_size( $array ) {
        return array( 777, 0 );
    }

    在上面,我將寬度設定為 777px,並讓 WordPress 使用每個影象縱橫比的比例高度。

    更改前:

    更改後:

    具體的應用尺寸,你可以根據自己的實際情況進行調整,一般的差不多 100~200px 之間合適。

    詩語
    管理員
    • 文章數量: 5,932
    @feibisi
    樓主
    此回覆已被標記為私有,🔒 僅樓主及管理員可見。
正在檢視 2 個帖子:1-2 (共 2 個帖子)
  • 哎呀,回覆話題必需登入。

話題資訊

  • 當前位於:Easy Digital Downloads
  • 1 條回覆
  • 1 個參與人
  • 最後回覆:<a href="https://bbs.weixiaoduo.com/users/feibisi/" title=" 檢視詩語的個人資料" class="bbp-author-link"><span class="bbp-author-name"> 詩語</span></a>
  • 上次活動:<a href="https://bbs.weixiaoduo.com/topic/25296/#post-25297" title=" 回覆至:如何在 Easy Digital Downloads 結賬頁面上更改產品圖片縮圖大小">7 年、 1 月前</a>