编辑文件:faq.php
<?php /** * Template Name: FAQ * Auto-applied to the 'faq' page via template_include (functions.php). * Accordion built with native <details>/<summary> (no JS). Q&A strings are * gettext-translatable. Owns the full layout; DB page content is ignored. * * @package ClothB2B_Child */ if ( ! defined( 'ABSPATH' ) ) { exit; } get_header(); ?> <main id="primary" class="site-main"> <section class="cb-page-banner"> <div class="cb-container"> <span class="cb-eyebrow"><?php esc_html_e( 'Help Center', 'clothb2b' ); ?></span> <h1 class="cb-page-banner__title"><?php esc_html_e( 'Frequently Asked Questions', 'clothb2b' ); ?></h1> <p class="cb-page-banner__desc"><?php esc_html_e( 'Everything you need to know about working with yinbo. Still have questions? Send us an inquiry.', 'clothb2b' ); ?></p> </div> </section> <section class="cb-section"> <div class="cb-container"> <div class="cb-faq"> <div class="cb-faq__group"> <h2 class="cb-faq__group-title"><?php esc_html_e( 'Orders & Minimums', 'clothb2b' ); ?></h2> <details> <summary><?php esc_html_e( 'What is your minimum order quantity (MOQ)?', 'clothb2b' ); ?></summary> <div class="cb-faq__answer"><?php esc_html_e( 'MOQ varies by product and customization. We keep minimums flexible to support growing brands — share your target styles and quantities in the inquiry form and we will confirm the exact MOQ.', 'clothb2b' ); ?></div> </details> <details> <summary><?php esc_html_e( 'How do I place an order?', 'clothb2b' ); ?></summary> <div class="cb-faq__answer"><?php esc_html_e( 'Submit an inquiry with your product, quantity and timeline. We respond with a quote and sample plan. Once you approve, production begins and we keep you updated to delivery.', 'clothb2b' ); ?></div> </details> <details> <summary><?php esc_html_e( 'Can I order samples before bulk production?', 'clothb2b' ); ?></summary> <div class="cb-faq__answer"><?php esc_html_e( 'Yes. Sampling is the first step of every order so you can confirm fit, fabric and finish before committing to bulk.', 'clothb2b' ); ?></div> </details> </div> <div class="cb-faq__group"> <h2 class="cb-faq__group-title"><?php esc_html_e( 'Pricing & Quotes', 'clothb2b' ); ?></h2> <details> <summary><?php esc_html_e( 'How is pricing determined?', 'clothb2b' ); ?></summary> <div class="cb-faq__answer"><?php esc_html_e( 'Pricing depends on style, fabric, quantity, printing/embroidery and packaging. Send your specifications and we provide a detailed, itemized quote.', 'clothb2b' ); ?></div> </details> <details> <summary><?php esc_html_e( 'How fast will I get a quote?', 'clothb2b' ); ?></summary> <div class="cb-faq__answer"><?php esc_html_e( 'Most quotes are returned within 24 hours during business days. Complex or fully-custom tech packs may take a little longer.', 'clothb2b' ); ?></div> </details> </div> <div class="cb-faq__group"> <h2 class="cb-faq__group-title"><?php esc_html_e( 'Production & Shipping', 'clothb2b' ); ?></h2> <details> <summary><?php esc_html_e( 'What is the typical lead time?', 'clothb2b' ); ?></summary> <div class="cb-faq__answer"><?php esc_html_e( 'Standard bulk lead time is around 3–5 weeks after sample approval, depending on volume and complexity. We confirm the exact timeline in your quote.', 'clothb2b' ); ?></div> </details> <details> <summary><?php esc_html_e( 'Do you ship worldwide?', 'clothb2b' ); ?></summary> <div class="cb-faq__answer"><?php esc_html_e( 'Yes — we export to 30+ countries and handle export documentation. Shipping method (sea/air/express) is chosen to match your budget and timeline.', 'clothb2b' ); ?></div> </details> <details> <summary><?php esc_html_e( 'Can you produce with my own label and design?', 'clothb2b' ); ?></summary> <div class="cb-faq__answer"><?php esc_html_e( 'Absolutely. We offer full OEM and ODM services — your brand label, your tech pack, your custom fabrics and trims.', 'clothb2b' ); ?></div> </details> </div> </div> </div> </section> <?php get_template_part( 'template-parts/home/cb', 'cta' ); ?> </main><!-- #primary --> <?php get_footer();
保存
返回