Title: manuelheim's Replies | WordPress.org

---

# manuelheim

  [  ](https://wordpress.org/support/users/manuelheim/)

 *   [Profile](https://wordpress.org/support/users/manuelheim/)
 *   [Topics Started](https://wordpress.org/support/users/manuelheim/topics/)
 *   [Replies Created](https://wordpress.org/support/users/manuelheim/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/manuelheim/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/manuelheim/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/manuelheim/engagements/)
 *   [Favorites](https://wordpress.org/support/users/manuelheim/favorites/)

 Search replies:

## Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ShopLentor – All-in-One WooCommerce Growth & Store Enhancement Plugin] ‘Bestellung versandt’ email Template not overriding!](https://wordpress.org/support/topic/bestellung-versandt-email-template-not-overriding/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/bestellung-versandt-email-template-not-overriding/#post-17398520)
 * Hi Tarek,
 * but what’s the solution for now?
 * We need to convert our ShopLentor email Template into a PHP template, how can
   we achieve that?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ShopLentor – All-in-One WooCommerce Growth & Store Enhancement Plugin] ‘Bestellung versandt’ email Template not overriding!](https://wordpress.org/support/topic/bestellung-versandt-email-template-not-overriding/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/bestellung-versandt-email-template-not-overriding/#post-17396945)
 * Hi Tarek,
 * ok, got it! Would it be possible to convert the WooLentor Template into a php
   one (like the Germanized template) and replace it manually in my child theme?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ShopLentor – All-in-One WooCommerce Growth & Store Enhancement Plugin] Custom billing checkout field (checkbox) is set to be required](https://wordpress.org/support/topic/custom-billing-checkout-field-checkbox-is-set-to-be-required/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/custom-billing-checkout-field-checkbox-is-set-to-be-required/#post-17396844)
 * That worked!
 * Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ShopLentor – All-in-One WooCommerce Growth & Store Enhancement Plugin] ‘Bestellung versandt’ email Template not overriding!](https://wordpress.org/support/topic/bestellung-versandt-email-template-not-overriding/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/bestellung-versandt-email-template-not-overriding/#post-17396843)
 * Hi [@tarek](https://wordpress.org/support/users/tarek/) Aziz,
 * the email is sent to the customer, one’s you set an order in the backend to shipped.
 * This is how its template looks in the /woocommerce-germanized/emails/customer-
   shipment.php :
 * ‘
 * get_billing_first_name() ) ); // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch?
   >
 *     ```wp-block-code
       <p>
           <?php
           if ( $partial_shipment ) {
               /* translators: %s: Site title */
               printf( esc_html_x( 'Your order on %1$s has been partially shipped via %2$s. Find details below for your reference:', 'shipments', 'woocommerce-germanized' ), wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ), esc_html( wc_gzd_get_shipment_shipping_provider_title( $shipment ) ) ); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
           } else {
               /* translators: %s: Site title */
               printf( esc_html_x( 'Your order on %1$s has been shipped via %2$s. Find details below for your reference:', 'shipments', 'woocommerce-germanized' ), wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ), esc_html( wc_gzd_get_shipment_shipping_provider_title( $shipment ) ) ); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
           }
           ?>
       </p>
       ```
   
 * <?php
 * /*
    - Output Email details for a Shipment.
      *
    - [@hooked](https://wordpress.org/support/users/hooked/) \Vendidero\Germanized\
      Shipments\Email::email_tracking() Adds tracking info.
    - [@hooked](https://wordpress.org/support/users/hooked/) \Vendidero\Germanized\
      Shipments\Email::email_address() Adds shipping address.
    - [@hooked](https://wordpress.org/support/users/hooked/) \Vendidero\Germanized\
      Shipments\Email::email_details() Adds shipment table.
      *
    - [@param](https://wordpress.org/support/users/param/) \Vendidero\Germanized\
      Shipments\Shipment $shipment The shipment instance.
    - [@param](https://wordpress.org/support/users/param/) boolean $sent_to_admin
      Whether to send this email to admin or not.
    - [@param](https://wordpress.org/support/users/param/) boolean $plain_text Whether
      this email is in plaintext format or not.
    - [@param](https://wordpress.org/support/users/param/) WC_Email $email The email
      instance.
      *
    - [@since](https://wordpress.org/support/users/since/) 3.0.0
    - [@package](https://wordpress.org/support/users/package/) Vendidero/Germanized/
      Shipments
      */do_action( ‘woocommerce_gzd_email_shipment_details’, $shipment,
      $sent_to_admin, $plain_text, $email );
 * /**
    - Show user-defined additional content – this is set in each email’s settings.
      */
      if ( $additional_content ) {echo wp_kses_post( wpautop( wptexturize( $additional_content)));}
 * /*
    - [@hooked](https://wordpress.org/support/users/hooked/) WC_Emails::email_footer()
      Output the email footer
      */do_action( ‘woocommerce_email_footer’, $email );
 * ‘
 * Any idea why my WooLentor template is not overriding it?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ShopLentor – All-in-One WooCommerce Growth & Store Enhancement Plugin] Custom billing checkout field (checkbox) is set to be required](https://wordpress.org/support/topic/custom-billing-checkout-field-checkbox-is-set-to-be-required/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/custom-billing-checkout-field-checkbox-is-set-to-be-required/#post-17388132)
 * Any solutions? The page needs to go live this week…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Shipping method labels like ‘free_Versandkosten6_Versandkosten_method_title’](https://wordpress.org/support/topic/shipping-method-labels-like-free_versandkosten6_versandkosten_method_title/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/shipping-method-labels-like-free_versandkosten6_versandkosten_method_title/#post-17385291)
 * It is defenetily a WPML problem. When I disable it, the labels are normal.
 * Would you have an idea how to fix it, or do I need to contact WPML?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ShopLentor – All-in-One WooCommerce Growth & Store Enhancement Plugin] Custom billing checkout field (checkbox) is set to be required](https://wordpress.org/support/topic/custom-billing-checkout-field-checkbox-is-set-to-be-required/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/custom-billing-checkout-field-checkbox-is-set-to-be-required/#post-17371799)
 * Hi Tarek,
 * how long do you think it will take?
 * Thanks in advance!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Mini Cart clears HTML when scrolling; PayPal button disappears](https://wordpress.org/support/topic/mini-cart-clears-html-when-scrolling-paypal-button-disappears/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/mini-cart-clears-html-when-scrolling-paypal-button-disappears/#post-17174371)
 * And here`s the WordPress report:</p> <pre class=”wp-block-code”><code>` wp-core
   version: 6.3.2
   site_language: de_DEuser_language: de_DEtimezone: Europe/Berlinpermalink:/%
   year%/%monthnum%/%day%/%postname%/https_status: truemultisite: falseuser_registration:
   0blog_public: 1default_comment_status: undefinedenvironment_type: productionuser_count:
   334dotorg_communication: true wp-paths-sizes wordpress_path: /www/htdocs/w01bf4a9/
   lengling.dieheimseite.comwordpress_size: loading…uploads_path: /www/htdocs/w01bf4a9/
   lengling.dieheimseite.com/wp-content/uploadsuploads_size: loading…themes_path:/
   www/htdocs/w01bf4a9/lengling.dieheimseite.com/wp-content/themesthemes_size: loading…
   plugins_path: /www/htdocs/w01bf4a9/lengling.dieheimseite.com/wp-content/pluginsplugins_size:
   loading…database_size: loading…total_size: loading… wp-dropins (1) advanced-cache.
   php: true wp-active-theme name: OceanWP Child (oceanwp-child)version: 3.5.0.1698117028author:
   OceanWPauthor_website: [https://oceanwp.org/about-oceanwp/](https://oceanwp.org/about-oceanwp/)
   parent_theme: OceanWP (oceanwp)theme_features: core-block-patterns, widgets-block-
   editor, post-thumbnails, woocommerce-germanized, align-wide, wp-block-styles,
   responsive-embeds, editor-styles, editor-style, menus, post-formats, title-tag,
   automatic-feed-links, custom-header, custom-logo, html5, woocommerce, wc-product-
   gallery-zoom, wc-product-gallery-lightbox, wc-product-gallery-slider, customize-
   selective-refresh-widgets, widgetstheme_path: /www/htdocs/w01bf4a9/lengling.dieheimseite.
   com/wp-content/themes/oceanwp-childauto_update: Deaktiviert wp-parent-theme name:
   OceanWP (oceanwp)version: 3.5.0author: OceanWPauthor_website: [https://oceanwp.org/about-oceanwp/](https://oceanwp.org/about-oceanwp/)
   theme_path: /www/htdocs/w01bf4a9/lengling.dieheimseite.com/wp-content/themes/
   oceanwpauto_update: Deaktiviert wp-plugins-active (14) Custom Product Tabs for
   WooCommerce: version: 1.8.5, author: Code Parrots, Automatische Aktualisierungen
   deaktiviertElementor: version: 3.17.2, author: Elementor.com, Automatische Aktualisierungen
   deaktiviertElementor Pro: version: 3.17.1, author: Elementor.com, Automatische
   Aktualisierungen deaktiviertGermanized for WooCommerce: version: 3.14.1, author:
   vendidero, Automatische Aktualisierungen deaktiviertGermanized for WooCommerce
   Pro: version: 3.8.2, author: vendidero, Automatische Aktualisierungen deaktiviertPayment
   Plugins for PayPal WooCommerce: version: 1.0.39, author: Payment Plugins, [support@paymentplugins.com](https://wordpress.org/support/users/manuelheim/replies/support@paymentplugins.com?output_format=md),
   Automatische Aktualisierungen deaktiviertPremium Addons for Elementor: version:
   4.10.14, author: Leap13, Automatische Aktualisierungen deaktiviertPremium Addons
   PRO: version: 2.9.8, author: Leap13, Automatische Aktualisierungen deaktiviertWooCommerce:
   version: 8.2.1, author: Automattic, Automatische Aktualisierungen deaktiviertWooCommerce
   Multilingual & Multicurrency: version: 5.2.1, author: OnTheGoSystems, Automatische
   Aktualisierungen deaktiviertWooCommerce Payments: version: 6.7.0, author: Automattic(
   latest version: 6.7.1), Automatische Aktualisierungen deaktiviertWPML Multilingual
   CMS: version: 4.6.7, author: OnTheGoSystems, Automatische Aktualisierungen deaktiviertWPML
   String Translation: version: 3.2.8, author: OnTheGoSystems, Automatische Aktualisierungen
   deaktiviertWP Rocket: version: 3.8.0.1, author: WP Media, Automatische Aktualisierungen
   deaktiviert wp-media image_editor: WP_Image_Editor_Imagickimagick_module_version:
   1690imagemagick_version: ImageMagick 6.9.10-23 Q16 x86_64 20190101 [https://imagemagick.org](https://imagemagick.org)
   imagick_version: 3.5.0file_uploads: File uploads is turned offpost_max_size: 
   200Mupload_max_filesize: 200Mmax_effective_size: 200 MBmax_file_uploads: 20imagick_limits:
   imagick::RESOURCETYPE_AREA: 31 GBimagick::RESOURCETYPE_DISK: 1.84467440737E+19imagick::
   RESOURCETYPE_FILE: 786432imagick::RESOURCETYPE_MAP: 31 GBimagick::RESOURCETYPE_MEMORY:
   16 GBimagick::RESOURCETYPE_THREAD: 1imagick::RESOURCETYPE_TIME: 1.84467440737E
   +19imagemagick_file_formats: 3FR, 3G2, 3GP, AAI, AI, ART, ARW, AVI, AVS, BGR,
   BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, 
   CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DJVU,
   DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2,
   EPT3, ERF, EXR, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT,
   GRAY, GRAYA, GROUP4, GV, H, HALD, HDR, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS,
   ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, JBG, JBIG, JNG, JNX,
   JPE, JPEG, JPG, JPS, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAGICK, MAP, MASK,
   MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MSVG,
   MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM,
   PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, 
   PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8,
   PNM, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS,
   RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX,
   SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL,
   TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID,
   VIFF, VIPS, VST, WBMP, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS,
   XV, XWD, YCbCr, YCbCrA, YUVgd_version: 2.2.5gd_formats: GIF, JPEG, PNG, WebP,
   BMP, XPMghostscript_version: 9.50 wp-server server_architecture: Linux 5.4.0-
   166-generic x86_64httpd_software: Apachephp_version: 8.0.30 64bitphp_sapi: fpm-
   fcgimax_input_variables: 6000time_limit: 3000memory_limit: 1024Mmax_input_time:
   600upload_max_filesize: 200Mphp_post_max_size: 200Mcurl_version: 7.68.0 OpenSSL/
   1.1.1fsuhosin: falseimagick_availability: truepretty_permalinks: truehtaccess_extra_rules:
   truecurrent: 2023-11-04T09:09:24+00:00utc-time: Saturday, 04-Nov-23 09:09:24 
   UTCserver-time: 2023-11-04T10:09:20+01:00 wp-database extension: mysqliserver_version:
   10.5.22-MariaDB-1:10.5.22+maria~ubu2004-logclient_version: mysqlnd 8.0.30max_allowed_packet:
   67108864max_connections: 500 wp-constants WP_HOME: undefinedWP_SITEURL: undefinedWP_CONTENT_DIR:/
   www/htdocs/w01bf4a9/lengling.dieheimseite.com/wp-contentWP_PLUGIN_DIR: /www/htdocs/
   w01bf4a9/lengling.dieheimseite.com/wp-content/pluginsWP_MEMORY_LIMIT: 1024MWP_MAX_MEMORY_LIMIT:
   256MWP_DEBUG: trueWP_DEBUG_DISPLAY: trueWP_DEBUG_LOG: trueSCRIPT_DEBUG: trueWP_CACHE:
   trueCONCATENATE_SCRIPTS: undefinedCOMPRESS_SCRIPTS: undefinedCOMPRESS_CSS: undefinedWP_ENVIRONMENT_TYPE:
   Nicht definiertWP_DEVELOPMENT_MODE: undefinedDB_CHARSET: utf8DB_COLLATE: undefined
   wp-filesystem wordpress: writablewp-content: writableuploads: writableplugins:
   writablethemes: writable
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Mini Cart clears HTML when scrolling; PayPal button disappears](https://wordpress.org/support/topic/mini-cart-clears-html-when-scrolling-paypal-button-disappears/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/mini-cart-clears-html-when-scrolling-paypal-button-disappears/#post-17174367)
 * Here’s the WooCommerce status report:
 *     ```wp-block-code
       ` WordPress Environment
   
       WordPress address (URL): https://lengling.dieheimseite.com<br>Site address (URL): https://lengling.dieheimseite.com<br>WC Version: 8.2.1<br>REST API Version: ✔ 8.2.1<br>WC Blocks Version: ✔ 11.1.2<br>Action Scheduler Version: ✔ 3.6.3<br>Log Directory Writable: ✔<br>WP Version: 6.3.2<br>WP Multisite: –<br>WP Memory Limit: 1 GB<br>WP Debug Mode: ✔<br>WP Cron: ✔<br>Language: de_DE<br>External object cache: – Server Environment
   
       Server Info: Apache<br>PHP Version: 8.0.30<br>PHP Post Max Size: 200 MB<br>PHP Time Limit: 3000<br>PHP Max Input Vars: 6000<br>cURL Version: 7.68.0<br>OpenSSL/1.1.1f
   
       SUHOSIN Installed: –<br>MySQL Version: 10.5.22-MariaDB-1:10.5.22+maria~ubu2004-log<br>Max Upload Size: 200 MB<br>Default Timezone is UTC: ✔<br>fsockopen/cURL: ✔<br>SoapClient: ✔<br>DOMDocument: ✔<br>GZip: ✔<br>Multibyte String: ✔<br>Remote Post: ✔<br>Remote Get: ✔ Database
   
       WC Database Version: 8.2.1<br>WC Database Prefix: 7wfqr_<br>Datenbank-Gesamtgröße: 48.95MB<br>Datenbank-Datengröße: 33.93MB<br>Datenbank-Indexgröße: 15.02MB<br>7wfqr_woocommerce_sessions: Daten: 1.28MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_woocommerce_api_keys: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_attribute_taxonomies: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_woocommerce_downloadable_product_permissions: Daten: 0.02MB + Index: 0.06MB + Engine InnoDB<br>7wfqr_woocommerce_order_items: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_woocommerce_order_itemmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_tax_rates: Daten: 0.02MB + Index: 0.06MB + Engine InnoDB<br>7wfqr_woocommerce_tax_rate_locations: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_shipping_zones: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_woocommerce_shipping_zone_locations: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_shipping_zone_methods: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_woocommerce_payment_tokens: ❌ Tabelle ist nicht vorhanden<br>7wfqr_woocommerce_payment_tokenmeta: ❌ Tabelle ist nicht vorhanden<br>7wfqr_woocommerce_log: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_actionscheduler_actions: Daten: 0.19MB + Index: 0.16MB + Engine InnoDB<br>7wfqr_actionscheduler_claims: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_actionscheduler_groups: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_actionscheduler_logs: Daten: 0.11MB + Index: 0.09MB + Engine InnoDB<br>7wfqr_commentmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_comments: Daten: 0.02MB + Index: 0.09MB + Engine InnoDB<br>7wfqr_e_events: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_e_notes: Daten: 0.02MB + Index: 0.17MB + Engine InnoDB<br>7wfqr_e_notes_users_relations: Daten: 0.02MB + Index: 0.05MB + Engine InnoDB<br>7wfqr_e_submissions: Daten: 0.02MB + Index: 0.27MB + Engine InnoDB<br>7wfqr_e_submissions_actions_log: Daten: 0.02MB + Index: 0.11MB + Engine InnoDB<br>7wfqr_e_submissions_values: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_icl_background_task: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_icl_content_status: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_icl_core_status: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_icl_flags: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_icl_languages: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_icl_languages_translations: Daten: 0.20MB + Index: 0.17MB + Engine InnoDB<br>7wfqr_icl_locale_map: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_icl_message_status: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_icl_mo_files_domains: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_icl_node: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_icl_reminders: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_icl_strings: Daten: 5.52MB + Index: 10.02MB + Engine InnoDB<br>7wfqr_icl_string_batches: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_icl_string_packages: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_icl_string_positions: Daten: 2.06MB + Index: 0.27MB + Engine InnoDB<br>7wfqr_icl_string_status: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_icl_string_translations: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_icl_translate: Daten: 0.27MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_icl_translate_job: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_icl_translations: Daten: 0.06MB + Index: 0.13MB + Engine InnoDB<br>7wfqr_icl_translation_batches: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_icl_translation_downloads: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_icl_translation_status: Daten: 0.16MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_links: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_options: Daten: 6.14MB + Index: 0.16MB + Engine InnoDB<br>7wfqr_postmeta: Daten: 8.36MB + Index: 0.50MB + Engine InnoDB<br>7wfqr_posts: Daten: 6.14MB + Index: 0.13MB + Engine InnoDB<br>7wfqr_storeabill_documentmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_storeabill_documents: Daten: 0.02MB + Index: 0.06MB + Engine InnoDB<br>7wfqr_storeabill_document_itemmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_storeabill_document_items: Daten: 0.02MB + Index: 0.05MB + Engine InnoDB<br>7wfqr_storeabill_document_noticemeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_storeabill_document_notices: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_storeabill_journals: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_termmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_terms: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_term_relationships: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_term_taxonomy: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_usermeta: Daten: 1.52MB + Index: 0.55MB + Engine InnoDB<br>7wfqr_users: Daten: 0.08MB + Index: 0.05MB + Engine InnoDB<br>7wfqr_wc_admin_notes: Daten: 0.06MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_wc_admin_note_actions: Daten: 0.06MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_wc_category_lookup: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_wc_customer_lookup: Daten: 0.06MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_wc_download_log: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_wc_orders: Daten: 0.02MB + Index: 0.11MB + Engine InnoDB<br>7wfqr_wc_orders_meta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_wc_order_addresses: Daten: 0.02MB + Index: 0.06MB + Engine InnoDB<br>7wfqr_wc_order_coupon_lookup: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_wc_order_operational_data: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_wc_order_product_lookup: Daten: 0.02MB + Index: 0.06MB + Engine InnoDB<br>7wfqr_wc_order_stats: Daten: 0.02MB + Index: 0.05MB + Engine InnoDB<br>7wfqr_wc_order_tax_lookup: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_wc_product_attributes_lookup: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_wc_product_download_directories: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_wc_product_meta_lookup: Daten: 0.02MB + Index: 0.09MB + Engine InnoDB<br>7wfqr_wc_rate_limits: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_wc_reserved_stock: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_wc_tax_rate_classes: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_wc_webhooks: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_dhl_im_products: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_dhl_im_product_services: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_packaging: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_packagingmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_shipmentmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_shipments: Daten: 0.02MB + Index: 0.05MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_shipment_itemmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_shipment_items: Daten: 0.02MB + Index: 0.06MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_shipment_labelmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_shipment_labels: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_shipping_provider: Daten: 0.02MB + Index: 0.02MB + Engine InnoDB<br>7wfqr_woocommerce_gzd_shipping_providermeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDB<br>7wfqr_wpmailsmtp_debug_events: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_wpmailsmtp_tasks_meta: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_wt_iew_action_history: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB<br>7wfqr_wt_iew_mapping_template: Daten: 0.02MB + Index: 0.00MB + Engine InnoDB Post Type Counts
   
       attachment: 285<br>custom_css: 2<br>customize_changeset: 110<br>document_template: 5<br>elementor_library: 35<br>elementor_snippet: 1<br>page: 20<br>post: 2<br>product: 47<br>product_variation: 4<br>revision: 108<br>wp_navigation: 1 Security
   
       Secure connection (HTTPS): ✔<br>Hide errors from visitors: ❌Fehlermeldungen sollten Besuchern nicht angezeigt werden. Active Plugins (14)
   
       WPML Multilingual CMS: von OnTheGoSystems – 4.6.7<br>Elementor Pro: von Elementor.com – 3.17.1<br>Elementor: von Elementor.com – 3.17.2<br>Premium Addons for Elementor: von Leap13 – 4.10.14<br>Premium Addons PRO: von Leap13 – 2.9.8<br>Payment Plugins for PayPal WooCommerce: von Payment Plugins<br>support@paymentplugins.com – 1.0.39
   
       Germanized für WooCommerce Pro: von vendidero – 3.8.2<br>Germanized für WooCommerce: von vendidero – 3.14.1<br>WooCommerce Multilingual & Multicurrency: von OnTheGoSystems – 5.2.1<br>WooCommerce-Zahlungen: von Automattic – 6.7.0 (Update auf Version 6.7.1 ist verfügbar)<br>WooCommerce: von Automattic – 8.2.1<br>WP Rocket: von WP Media – 3.8.0.1<br>WPML String Translation: von OnTheGoSystems – 3.2.8<br>Custom Product Tabs for WooCommerce: von Code Parrots – 1.8.5 Inactive Plugins (0) Dropin Plugins (1)
   
       advanced-cache.php: advanced-cache.php Settings
   
       API Enabled: –<br>Force SSL: –<br>Currency: EUR (€)<br>Currency Position: right_space<br>Thousand Separator: .<br>Decimal Separator: ,<br>Number of Decimals: 2<br>Taxonomies: Product Types: external (external)<br>grouped (grouped)<br>simple (simple)<br>variable (variable)
   
       Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)<br>exclude-from-search (exclude-from-search)<br>featured (featured)<br>outofstock (outofstock)<br>rated-1 (rated-1)<br>rated-2 (rated-2)<br>rated-3 (rated-3)<br>rated-4 (rated-4)<br>rated-5 (rated-5)
   
       Connected to WooCommerce.com: –<br>Enforce Approved Product Download Directories: ✔<br>HPOS feature screen enabled: ✔<br>HPOS feature enabled: ✔<br>Order datastore: Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore<br>HPOS data sync enabled: – WC Pages
   
       Shop-Basis: ❌ Die Sichtbarkeit der Seite sollte öffentlich sein<br>Warenkorb: ❌ Die Seite enthält nicht den [woocommerce_cart]-Shortcode oder woocommerce/cart-Block.<br>Kasse: ❌ Die Seite enthält nicht den [woocommerce_checkout]-Shortcode oder woocommerce/checkout-Block.<br>Mein Konto: ❌ Die Sichtbarkeit der Seite sollte öffentlich sein<br>Allgemeine Geschäftsbedingungen: ❌ Die Sichtbarkeit der Seite sollte öffentlich sein Theme
   
       Name: OceanWP Child<br>Version: 3.5.0.1698117028<br>Author URL: https://oceanwp.org/about-oceanwp/<br>Child Theme: ✔<br>Parent Theme Name: OceanWP<br>Parent Theme Version: 3.5.0<br>Parent Theme Author URL: https://oceanwp.org/about-oceanwp/<br>WooCommerce Support: ✔ Templates
   
       Overrides: oceanwp/woocommerce/cart/mini-cart.php<br>oceanwp/woocommerce/content-single-product.php<br>oceanwp/woocommerce/loop/loop-start.php<br>oceanwp/woocommerce/single-product/product-image.php<br>oceanwp/woocommerce/single-product/title.php WooPayments
   
       Version: 6.7.0<br>Connected to WPCOM: Ja<br>WPCOM Blog ID: 225404043<br>Account ID: acct_1O8DxmC6HaETVNC8<br>Payment Gateway: ❌ Needs setup<br>Test Mode: Deaktiviert<br>UPE: Aktiviert (deferred_intent)<br>UPE Enabled APMs: card<br>WooPay: Nicht berechtigt<br>Apple Pay / Google Pay: Aktiviert (product,cart,checkout)<br>Fraud Protection Level: basic<br>Multi-currency: Aktiviert<br>Public Key Encryption: Deaktiviert<br>Auth and Capture: Aktiviert<br>Documents: Aktiviert<br>Logging: Deaktiviert Admin
   
       Enabled Features: activity-panels<br>analytics<br>product-block-editor<br>coupons<br>core-profiler<br>customer-effort-score-tracks<br>import-products-task<br>experimental-fashion-sample-products<br>shipping-smart-defaults<br>shipping-setting-tour<br>homescreen<br>marketing<br>mobile-app-banner<br>navigation<br>onboarding<br>onboarding-tasks<br>product-variation-management<br>remote-inbox-notifications<br>remote-free-extensions<br>payment-gateway-suggestions<br>shipping-label-banner<br>subscriptions<br>store-alerts<br>transient-notices<br>woo-mobile-welcome<br>wc-pay-promotion<br>wc-pay-welcome-page
   
       Disabled Features: customize-store<br>minified-js<br>new-product-management-experience<br>settings<br>async-product-editor-category-field
   
       Daily Cron: ✔ Next scheduled: 2023-11-04 12:46:51 +01:00<br>Options: ✔<br>Notes: 73<br>Onboarding: completed Action Scheduler
   
       Abgeschlossen: 395<br>Oldest: 2023-10-15 14:03:54 +0200<br>Newest: 2023-11-04 05:54:51 +0100
   
       Fehlgeschlagen: 33<br>Oldest: 2023-10-15 14:48:03 +0200<br>Newest: 2023-11-03 17:32:37 +0100
   
       Ausstehend: 5<br>Oldest: 2023-11-04 17:32:37 +0100<br>Newest: 2023-11-04 17:32:37 +0100 Status report information
   
       Generated at: 2023-11-04 10:08:16 +01:00<br>`
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment Plugins for PayPal WooCommerce] The PayPal button in the mini cart disappears on mobile when scrolling down](https://wordpress.org/support/topic/the-paypal-button-in-the-mini-cart-disappears-on-mobile-when-scrolling-down/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/the-paypal-button-in-the-mini-cart-disappears-on-mobile-when-scrolling-down/#post-17173215)
 * Do you know how I can deactivate the page scrolling on mobile when the mini cart
   is open?
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment Plugins for PayPal WooCommerce] The PayPal button in the mini cart disappears on mobile when scrolling down](https://wordpress.org/support/topic/the-paypal-button-in-the-mini-cart-disappears-on-mobile-when-scrolling-down/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/the-paypal-button-in-the-mini-cart-disappears-on-mobile-when-scrolling-down/#post-17173200)
 * Or do you know how I can deactivate the page scrolling on mobile when the mini
   cart is open?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment Plugins for PayPal WooCommerce] The PayPal button in the mini cart disappears on mobile when scrolling down](https://wordpress.org/support/topic/the-paypal-button-in-the-mini-cart-disappears-on-mobile-when-scrolling-down/)
 *  Thread Starter [manuelheim](https://wordpress.org/support/users/manuelheim/)
 * (@manuelheim)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/the-paypal-button-in-the-mini-cart-disappears-on-mobile-when-scrolling-down/#post-17173185)
 * Hi [@mrclayton](https://wordpress.org/support/users/mrclayton/),
 * thanks for the quick reply!
 * How can I stop the mini cart from clearing the HTML?
 * I’m using the Ocean WP theme together with Elementor. The mini cart template 
   is the standard Ocean WP one.
 * Unfortunately, the CSS you provided didn’t work…

Viewing 12 replies - 1 through 12 (of 12 total)