/** * Starter Content Compatibility. * * @since 4.0.0 * @package Astra */ /** * Class Astre_Starter_Content */ class Astra_Starter_Content { public const HOME_SLUG = 'home'; public const ABOUT_SLUG = '#about'; public const SERVICES_SLUG = '#services'; public const REVIEWS_SLUG = '#reviews'; public const WHY_US_SLUG = '#whyus'; public const CONTACT_SLUG = '#contact'; /** * Constructor */ public function __construct() { $is_fresh_site = get_option( 'fresh_site' ); if ( ! $is_fresh_site ) { return; } // Adding post meta and inserting post. add_action( 'wp_insert_post', array( $this, 'register_listener', ), 3, 99 ); // Save astra settings into database. add_action( 'customize_save_after', array( $this, 'save_astra_settings', ), 10, 3 ); if ( ! is_customize_preview() ) { return; } // preview customizer values. add_filter( 'default_post_metadata', array( $this, 'starter_meta' ), 99, 3 ); add_filter( 'astra_theme_defaults', array( $this, 'theme_defaults' ) ); add_filter( 'astra_global_color_palette', array( $this, 'theme_color_palettes_defaults' ) ); } /** * Load default starter meta. * * @since 4.0.2 * @param mixed $value Value. * @param int $post_id Post id. * @param string $meta_key Meta key. * * @return string Meta value. */ public function starter_meta( $value, $post_id, $meta_key ) { if ( get_post_type( $post_id ) !== 'page' ) { return $value; } if ( 'site-content-layout' === $meta_key ) { return 'plain-container'; } if ( 'theme-transparent-header-meta' === $meta_key ) { return 'enabled'; } if ( 'site-sidebar-layout' === $meta_key ) { return 'no-sidebar'; } if ( 'site-post-title' === $meta_key ) { return 'disabled'; } return $value; } /** * Register listener to insert post. * * @since 4.0.0 * @param int $post_ID Post Id. * @param \WP_Post $post Post object. * @param bool $update Is update. */ public function register_listener( $post_ID, $post, $update ) { if ( $update ) { return; } $custom_draft_post_name = get_post_meta( $post_ID, '_customize_draft_post_name', true ); $is_from_starter_content = ! empty( $custom_draft_post_name ); if ( ! $is_from_starter_content ) { return; } if ( 'page' === $post->post_type ) { update_post_meta( $post_ID, 'site-content-layout', 'plain-container' ); update_post_meta( $post_ID, 'theme-transparent-header-meta', 'enabled' ); update_post_meta( $post_ID, 'site-sidebar-layout', 'no-sidebar' ); update_post_meta( $post_ID, 'site-post-title', 'disabled' ); } } /** * Get customizer json * * @since 4.0.0 * @return mixed value. */ public function get_customizer_json() { try { $request = wp_remote_get( ASTRA_THEME_URI . 'inc/compatibility/starter-content/astra-settings-export.json' ); } catch ( Exception $ex ) { $request = null; } if ( is_wp_error( $request ) ) { return false; // Bail early. } // @codingStandardsIgnoreStart /** * @psalm-suppress PossiblyNullReference * @psalm-suppress UndefinedMethod * @psalm-suppress PossiblyNullArrayAccess * @psalm-suppress PossiblyNullArgument * @psalm-suppress InvalidScalarArgument */ return json_decode( $request['body'], 1 ); // @codingStandardsIgnoreEnd } /** * Save Astra customizer settings into database. * * @since 4.0.0 */ public function save_astra_settings() { $settings = self::get_customizer_json(); // Delete existing dynamic CSS cache. delete_option( 'astra-settings' ); if ( ! empty( $settings['customizer-settings'] ) ) { foreach ( $settings['customizer-settings'] as $option => $value ) { update_option( $option, $value ); } } } /** * Load default astra settings. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-settings']; } return $json ? $json : $defaults; } /** * Load default color palettes. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_color_palettes_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-color-palettes']; } return $json ? $json : $defaults; } /** * Return starter content definition. * * @return mixed|void * @since 4.0.0 */ public function get() { $nav_items_header = array( 'home' => array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{' . self::HOME_SLUG . '}}', ), 'about' => array( 'title' => __( 'Services', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::SERVICES_SLUG . '}}', ), 'services' => array( 'title' => __( 'About', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::ABOUT_SLUG . '}}', ), 'reviews' => array( 'title' => __( 'Reviews', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::REVIEWS_SLUG . '}}', ), 'faq' => array( 'title' => __( 'Why Us', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::WHY_US_SLUG . '}}', ), 'contact' => array( 'title' => __( 'Contact', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::CONTACT_SLUG . '}}', ), ); $content = array( 'attachments' => array( 'logo' => array( 'post_title' => _x( 'Logo', 'Theme starter content', 'astra' ), 'file' => 'inc/assets/images/starter-content/logo.png', ), ), 'theme_mods' => array( 'custom_logo' => '{{logo}}', ), 'nav_menus' => array( 'primary' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), 'mobile_menu' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), ), 'options' => array( 'page_on_front' => '{{' . self::HOME_SLUG . '}}', 'show_on_front' => 'page', ), 'posts' => array( self::HOME_SLUG => require ASTRA_THEME_DIR . 'inc/compatibility/starter-content/home.php', // PHPCS:ignore WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound ), ); return apply_filters( 'astra_starter_content', $content ); } } 如何使用 WhatsApp 網頁版? T客邦 - Bun Apeti - Burgers and more

如何使用 WhatsApp 網頁版? T客邦

该应用程序的界面与桌面界面几乎完全相同,方便您阅读和管理聊天。 這個限制對於公司或商戶來說,會影響多團隊協作和客戶服務效率,特別是在需要多位同事同時處理大量客戶對話時,管理和分派聯絡人及顧客資料會變得困難。 不同版本的 WhatsApp(如網頁版與桌面版)在功能和管理上也有差異,企業需根據需求選擇合適版本。 是的,您可以在多台电脑上同时使用WhatsApp Web。 只需打开新的浏览器窗口,访问WhatsApp官方网站,并使用同一手机上的WhatsApp应用程序扫描新的二维码即可。 所有的聊天记录和联系人将在多台电脑之间同步,方便您在不同设备上使用WhatsApp。

WhatsApp网页版

為何 WhatsApp 網頁版無法滿足實際商業應用?

WhatsApp网页版

WhatsApp 電腦版是一款適用於 Windows 或 Mac 的獨立應用程式,提供與 WhatsApp 網頁版相同的核心功能,但無需開啟瀏覽器分頁即可使用。 完成登入後,你就可以在電腦登入 WhatsApp网页版登录 WhatsApp 網頁版與客戶對話,免安裝都可以發送語音信息、圖像及影像等檔案。 通过以上步骤和建议,你可以轻松地在电脑上使用WhatsApp Web,同时在项目管理和团队协作中选择合适的工具来提高工作效率。

  • 如果 WhatsApp 网页版无法在您的 iPhone 上运行,这篇文章将解释为什么以及如何修复它。
  • 第一种是使用 WhatsApp Web QR 码,另一种是使用您的电话号码。
  • 该平台的兴起满足了人们不再仅仅依赖主手机管理信息和文件的需求,从而促进了持续高效的沟通。
  • 如果您嘗試這些技巧,您會立即註意到透過 PC 聊天時的可訪問性和舒適度的差異。
  • Omnichat 可協助企業記錄和分析顧客資料,提升服務品質。

如果您使用的是舊版本或實驗版本(例如,基於 Electron 框架的版本),有時需要從官方商店重新安裝應用程式才能獲得所有自訂功能和視覺變化,包括字體大小。 透過此功能,您可以提高可訪問性,減少眼睛疲勞, 根據您的個人需求調整工作環境。 許多人發現在 WhatsApp Web 等流行應用程式中增加字體大小至關重要,因為電腦螢幕通常距離較遠或出於人體工學和眼睛健康的原因。 如有需要登出,用戶同樣可以點擊對話列上方的標示,之後按登出。 當然,你也可以經WhatsApp Business手機版進行解綁,只需到已連結裝置,之後揀選希望登出的裝置,並按登出即可。

比較WhatsApp 桌面版 及 WhatsApp 網頁版

WhatsApp网页版

因為對我們來說,網路不只是一個連結網路;更是一個連結網路。 這是一個充滿可能性的宇宙,連結思想、驅動夢想和建立未來。 此方法增加了尺寸 僅在 WhatsApp 網頁版標籤頁中,而不會影響您已開啟的其他頁面或應用程式。

  • 此外,多裝置登入還提供了更高的安全性,因為每個設備都會獲得自己的加密密鑰,這意味著即使有人未經授權地訪問你的一個裝置,也無法訪問你的 WhatsApp 賬戶。
  • 除了一般回覆訊息,WhatsApp 網頁版還支援其他功能包括標記未讀訊息、置頂訊息、設置聊天背景等,更加輕鬆地管理對話。
  • 透過這些方法,企業家可以有效利用 TikTok 平台進行電子商務增長。

這些自動化工具能大幅提升客服效率,讓商戶更快回應客戶需求。 使用 WhatsApp 電腦版需要先從 Microsoft Store、Apple App Store 或 WhatsApp 網站下載安裝。 這是 WhatsApp 桌面版,與 WhatsApp 網頁版屬於不同版本。 WhatsApp 最近推出「連結裝置」功能,最多可以支援 5 部裝置,換而言之,1 個 WhatsApp 帳號可讓 5 機同時共用。 SleekFlow 的 AgentFlow 功能讓你可以毋需識得編碼都可建立品牌專屬 AI Agent。 上傳企業知識庫,即可讓 AI agent 全天候工作,提供 24/7 客戶服務、收集潛在客戶資料、加速客戶轉化等。

WhatsApp网页版

/** * Template part for displaying the footer info. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Astra * @since 1.0.0 */ ?>
Scroll to Top