已創建論壇回覆
-
作者帖子
-
目前的話,單純就一個插件的話,就可以試試模板比較多的 mailpoet,
https://www.weixiaoduo.com/plugins/mailpoet
如果是要設置項那麼多的話 WP Email Manager 就最合適。
是説頂部的黑條 bar 對吧,後台搜索一個 Hide Admin Bar 插件安裝後啓用就可以去除這個頂部黑條欄。
回覆至: 網站移動設備易用性測試 #42341是你外部服務的 JS 這些延遲,不是網站內部的 CSS 、 JS ,你把多餘的外部嵌入代碼服務停用測試,還加載不出來不可能。
回覆至: 網站移動設備易用性測試 #42336我看了下是內容太多,Google pagespeed 沒有加載完就創建了快照截圖。
也就是説,其實是沒有加載完全,如果是網站訪問快些的話,就可以正常顯示了。
回覆至: Elementor 編輯器問題 #42330Elementor Pro 的幻燈片模塊,然後加 tab 標籤可以做到這種效果。
或者你可以找第三方的 Elementor 插件小工具來補充功能,但一般都是收費的版本才有效。
那就再試試看下面的代碼
// 移除空郵件地址的提示 add_action('user_profile_update_errors', 'my_user_profile_update_errors', 10, 3 ); function my_user_profile_update_errors($errors, $update, $user) { $errors->remove('empty_email'); } // 取消註冊用户郵箱必填 add_action('user_new_form', 'my_user_new_form', 10, 1); add_action('show_user_profile', 'my_user_new_form', 10, 1); add_action('edit_user_profile', 'my_user_new_form', 10, 1); function my_user_new_form($form_type) { ?> <script type="text/javascript"> jQuery('#email').closest('tr').removeClass('form-required').find('.description').remove(); // Uncheck send new user email option by default <?php if (isset($form_type) && $form_type === 'add-new-user') : ?> jQuery('#send_user_notification').removeAttr('checked'); <?php endif; ?> </script> <?php }
一般這個是 WordPress 系統的必填項,你可以嘗試使用下面的代碼來去掉驗證。
function remove_required_email_field($fields) { unset($fields['email']); return $fields; } add_filter('registration_errors', 'remove_required_email_field');
- 登錄 WordPress 後台,轉到 「外觀」 > 「編輯」 。
- 在右側選擇當前主題 (注意:如果你正在使用子主題,請選擇子主題) 。
- 在編輯器中找到 「functions.php」 文件,並將其打開。
- 在文件的底部添加以下代碼:
是的,目前的計劃是採用 elementor 和海狸生成器這些工具來做通用的 SaaS 方案。
等過段時間會發布更多相關的信息,現在還是功能不全。
-
作者帖子