Forum Replies Created

Viewing 15 replies - 1 through 15 (of 72 total)
  • Thread Starter dk9

    (@dk9)

    Thank you for that quick response

    Do you have an idea how to find out which one it is?

    We have very usual plugins…

    Thread Starter dk9

    (@dk9)

    Hi guys, this worked! Thanks.

    Any idea why this doesn’t work out of the box?

    Greetings

    Daniel

    Thread Starter dk9

    (@dk9)

    Hi! Thanks for the prompt reply.

    This solved and removed that weird div. However the title, which shows on category view, still doesn’t show in listing view.

    We use Flatsome theme, I think it is #1 sold WC theme

    • This reply was modified 7 months, 1 week ago by dk9.
    Thread Starter dk9

    (@dk9)

    Yes, thanks

    Thread Starter dk9

    (@dk9)

    Hello, thanks for the answer.

    I tried to to do, but it didn’t help.

    Any idea when the next update will be released?

    This is a major bug, as mobile customers can’t contact listing owners. Thanks

    Does anyone knows the source of the issue?

    Or managed to fix it?

    And if you want still to show the out of stock products at the end:

    class iWC_Orderby_Stock_Status {
        public function __construct() {
            if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {
                add_filter('posts_clauses', array($this, 'order_by_stock_status'), 2000);
            }
        }
    
        public function order_by_stock_status($args) {
            global $wpdb;
    
            if (is_woocommerce() && (is_shop() || is_product_category() || is_product_tag())) {
                // Include posts with '_stock_status' meta key in the SQL query
                $args['join'] .= " LEFT JOIN {$wpdb->postmeta} istockstatus ON {$wpdb->posts}.ID = istockstatus.post_id AND istockstatus.meta_key = '_stock_status'";
    
                // Order by '_stock_status' in ascending order ('instock' comes before 'outofstock')
                $args['orderby'] = "istockstatus.meta_value ASC, " . $args['orderby'];
            }
    
            return $args;
        }
    }
    
    new iWC_Orderby_Stock_Status;
    

    Use this code, it works:

    class iWC_Orderby_Stock_Status
    {
        public function __construct()
        {
            // Check if WooCommerce is active
            if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {
                add_action('woocommerce_product_query', array($this, 'order_by_stock_status'), 2000);
            }
        }
        
        public function order_by_stock_status($query)
        {
            // only change query on WooCommerce loops
            if (is_woocommerce() && (is_shop() || is_product_category() || is_product_tag())) {
                // Set 'meta_query' arg for in-stock products
                $meta_query = WC()->query->get_meta_query();
                $meta_query[] = array(
                    'key' => '_stock_status',
                    'value' => 'instock',
                    'compare' => '=',
                );
    
                // Set 'orderby' arg to sort by meta value '_stock_status'
                $query->set('orderby', 'meta_value');
                $query->set('order', 'DESC');
    
                // Set 'meta_query' arg
                $query->set('meta_query', $meta_query);
            }
        }
    }
    
    new iWC_Orderby_Stock_Status;
    
    Thread Starter dk9

    (@dk9)

    I added this to my functions.php and still, it doesn’t work:

    add_action(‘woocommerce_before_single_product’, ‘load_discount_bar’);

    function load_discount_bar() {
    global $product;
    do_action(‘advanced_woo_discount_rules_load_discount_bar’, $product);
    }

    Thread Starter dk9

    (@dk9)

    Thanks for your quick support.

    We are using Flatsome theme, which is the most sold on Themeforest. Before it was working perfect.

    Should we add this code in the functions.php?

    Thread Starter dk9

    (@dk9)

    
    ### WordPress Environment ###
    
    WordPress address (URL): https://www.ethnicmusical.com
    Site address (URL): https://www.ethnicmusical.com
    WC Version: 7.1.0
    REST API Version: ? 7.1.0
    WC Blocks Version: ? 8.7.5
    Action Scheduler Version: ? 3.5.2
    Log Directory Writable: ?
    WP Version: ? 6.0.3 - There is a newer version of WordPress available (6.1.1)
    WP Multisite: –
    WP Memory Limit: 1 GB
    WP Debug Mode: –
    WP Cron: –
    Language: en_US
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: Apache/2.4.54 (Debian)
    PHP Version: 7.4.30
    PHP Post Max Size: 512 MB
    PHP Time Limit: 800
    PHP Max Input Vars: 10000
    cURL Version: 7.64.0
    OpenSSL/1.1.1n
    
    SUHOSIN Installed: –
    MySQL Version: 5.5.5-10.4.20-MariaDB-1:10.4.20+maria~buster-log
    Max Upload Size: 512 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?
    
    ### Database ###
    
    WC Database Version: 7.1.0
    WC Database Prefix: wp_
    Total Database Size: 376.43MB
    Database Data Size: 266.87MB
    Database Index Size: 109.56MB
    wp_woocommerce_sessions: Data: 3.02MB + Index: 0.13MB + Engine InnoDB
    wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_woocommerce_order_items: Data: 1.52MB + Index: 0.36MB + Engine InnoDB
    wp_woocommerce_order_itemmeta: Data: 10.52MB + Index: 8.02MB + Engine InnoDB
    wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_actions: Data: 31.06MB + Index: 22.34MB + Engine InnoDB
    wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_logs: Data: 19.56MB + Index: 10.89MB + Engine InnoDB
    wp_adtribes_my_conversions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_aepc_custom_audiences: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aepc_logs: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    wp_atbdp_review: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_atum_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_atum_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_atum_product_data: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    wp_bv_fw_requests: Data: 8.52MB + Index: 0.00MB + Engine InnoDB
    wp_bv_ip_store: Data: 0.19MB + Index: 0.11MB + Engine InnoDB
    wp_bv_lp_requests: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_commentmeta: Data: 0.27MB + Index: 0.28MB + Engine InnoDB
    wp_comments: Data: 6.52MB + Index: 5.97MB + Engine InnoDB
    wp_countries: Data: 0.08MB + Index: 0.00MB + Engine InnoDB
    wp_ee_products_sync_list: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ee_product_sync_call: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ee_product_sync_data: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ee_product_sync_profile: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ee_prouct_pre_sync_data: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_failed_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_geodir_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_geodir_attachments: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_geodir_custom_fields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_geodir_custom_sort_fields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_geodir_gd_place_detail: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_geodir_post_review: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_geodir_tabs_layout: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_geot_countries: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_hubwoo_log: Data: 4.52MB + Index: 0.00MB + Engine InnoDB
    wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_mailchimp_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ms_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_mystickymenu_contact_lists: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nx_entries: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_nx_posts: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_nx_stats: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_options: Data: 10.36MB + Index: 1.22MB + Engine InnoDB
    wp_pmxi_files: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_pmxi_history: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_pmxi_images: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_pmxi_imports: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_pmxi_posts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_pmxi_templates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_postmeta: Data: 78.59MB + Index: 33.13MB + Engine InnoDB
    wp_posts: Data: 21.52MB + Index: 3.58MB + Engine InnoDB
    wp_pv_commission: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_queue: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_redirects: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_sm_sessions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_snippets: Data: 0.09MB + Index: 0.03MB + Engine InnoDB
    wp_splitit_logs: Data: 2.52MB + Index: 0.00MB + Engine InnoDB
    wp_swift_performance_image_optimizer: Data: 16.52MB + Index: 2.52MB + Engine InnoDB
    wp_swift_performance_warmup: Data: 0.17MB + Index: 0.20MB + Engine InnoDB
    wp_termmeta: Data: 0.13MB + Index: 0.08MB + Engine InnoDB
    wp_terms: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    wp_term_relationships: Data: 0.23MB + Index: 0.16MB + Engine InnoDB
    wp_term_taxonomy: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
    wp_tm_taskmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_tm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_usermeta: Data: 9.52MB + Index: 8.00MB + Engine InnoDB
    wp_users: Data: 1.52MB + Index: 0.67MB + Engine InnoDB
    wp_vi_wcuf_order_info: Data: 0.08MB + Index: 0.00MB + Engine InnoDB
    wp_vxcf_hubspot: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_vxcf_hubspot_accounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_vxcf_hubspot_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcsc_error_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcsc_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_admin_notes: Data: 0.08MB + Index: 0.00MB + Engine InnoDB
    wp_wc_admin_note_actions: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
    wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_customer_lookup: Data: 0.44MB + Index: 0.41MB + Engine InnoDB
    wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_order_coupon_lookup: Data: 0.05MB + Index: 0.05MB + Engine InnoDB
    wp_wc_order_product_lookup: Data: 1.52MB + Index: 0.86MB + Engine InnoDB
    wp_wc_order_stats: Data: 0.50MB + Index: 0.45MB + Engine InnoDB
    wp_wc_order_tax_lookup: Data: 0.27MB + Index: 0.25MB + Engine InnoDB
    wp_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_product_meta_lookup: Data: 0.16MB + Index: 0.34MB + Engine InnoDB
    wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wdr_order_discounts: Data: 0.09MB + Index: 0.00MB + Engine InnoDB
    wp_wdr_order_item_discounts: Data: 0.05MB + Index: 0.05MB + Engine InnoDB
    wp_wdr_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wfblockediplog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wfblocks7: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_wfconfig: Data: 1.31MB + Index: 0.00MB + Engine InnoDB
    wp_wfcrawlers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wffilechanges: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wffilemods: Data: 11.55MB + Index: 0.00MB + Engine InnoDB
    wp_wfhits: Data: 2.02MB + Index: 0.22MB + Engine InnoDB
    wp_wfhoover: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wfissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_wfknownfilelist: Data: 5.52MB + Index: 0.00MB + Engine InnoDB
    wp_wflivetraffichuman: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wflocs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wflogins: Data: 0.45MB + Index: 0.16MB + Engine InnoDB
    wp_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wfnotifications: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wfpendingissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_wfreversecache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wfsnipcache: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_wfstatus: Data: 0.13MB + Index: 0.09MB + Engine InnoDB
    wp_wftrafficrates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_woo_sales_country_region: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_actions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_affiliates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_affiliates_fields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_creatives: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_impressions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_paypal_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_tracking_tokens: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_tracking_tokens_purchase_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpam_transactions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpfm_backup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpfront_ure_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpmelon_advbedit_temp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wpr_rocket_cache: Data: 0.33MB + Index: 0.50MB + Engine InnoDB
    wp_wpr_rucss_used_css: Data: 0.03MB + Index: 0.09MB + Engine InnoDB
    wp_yith_wcwl: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_yith_wcwl_lists: Data: 0.06MB + Index: 0.06MB + Engine InnoDB
    wp_yoast_indexable: Data: 9.52MB + Index: 4.72MB + Engine InnoDB
    wp_yoast_indexable_hierarchy: Data: 1.45MB + Index: 1.64MB + Engine InnoDB
    wp_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_yoast_primary_term: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
    wp_yoast_seo_links: Data: 1.52MB + Index: 0.58MB + Engine InnoDB
    wp_yoast_seo_meta: Data: 0.48MB + Index: 0.00MB + Engine InnoDB
    
    ### Post Type Counts ###
    
    acf-field: 6
    acf-field-group: 1
    aiovg_videos: 1
    attachment: 5683
    blocks: 94
    bls-forms: 1
    custom_css: 3
    custom-css-js: 19
    customize_changeset: 10
    cwginstocknotifier: 841
    export_template: 1
    geotr_cpt: 1
    mc4wp-form: 1
    mts_notification_bar: 1
    nav_menu_item: 144
    oembed_cache: 660
    page: 51
    popup: 1
    popup_theme: 8
    post: 68
    postman_sent_mail: 250
    product: 784
    product_variation: 316
    revision: 626
    scheduled_export: 1
    shop_coupon: 426
    shop_order: 4375
    shop_order_refund: 185
    spucpt: 2
    static_block: 24
    vtprd-rule: 1
    wcdrp_rules: 26
    wp_global_styles: 1
    wpcdt_countdown: 1
    wpcf7_contact_form: 4
    wpcode: 2
    wppopups: 15
    
    ### Security ###
    
    Secure connection (HTTPS): ?
    Hide errors from visitors: ?
    
    ### Active Plugins (40) ###
    
    Post SMTP: by Post SMTP – 2.1.10
    WooCommerce Related Products C4W: by Custom4Web – 2.1.9
    Akismet Anti-Spam: by Automattic – 5.0.2
    Back In Stock Notifier for WooCommerce | WooCommerce Waitlist Pro: by codewoogeek – 3.2
    BlueSnap Payment Gateway for WooCommerce: by SAU/CAL – 2.6.1
    BridgerPay Woocommerce: by  – 1.1.6
    Buy Now Button for WooCommerce: by Ido Navarro – 1.0.1
    Code Snippets: by Code Snippets Pro – 3.2.2
    Contact Form 7: by Takayuki Miyoshi – 5.6.4
    Controlled Admin Access: by WPRuby – 2.0.10
    Simple Custom CSS and JS: by SilkyPress.com – 3.41
    Disable Gutenberg: by Jeff Starr – 2.8.1
    GTM4WP: by Thomas Geiger – 1.16.2
    301 Redirects: by WebFactory Ltd – 2.72
    Error Log Monitor: by Janis Elsts – 1.7.3
    WPCode Lite: by WPCode – 2.0.4.4
    Judge.me Product Reviews for WooCommerce: by Judge.me – 1.3.20
    Klaviyo: by Klaviyo
    Inc. – 3.0.4
    
    MWB HubSpot for WooCommerce: by MakeWebBetter – 1.4.2
    Microsoft Clarity: by Microsoft – 0.8.0
    PixelYourSite: by PixelYourSite – 9.2.2
    Regenerate Thumbnails: by Alex Mills (Viper007Bond) – 3.1.5
    Server IP & Memory Usage Display: by Apasionados
    Apasionados del Marketing – 2.1.0
    
    Splitit: by Splitit – 2.4.19
    Use Any Font: by Dnesscarkey – 6.2.98
    WooCommerce Payment Gateway - SUMIT: by OfficeGuy Ltd. – 3.1.5
    Product Feed PRO for WooCommerce: by AdTribes.io – 12.0.4
    WooCommerce Advanced Bulk Edit: by George Iron & Yas G. – 5.1
    WooCommerce Checkout Upsell Funnel Premium: by VillaTheme – 1.0.5
    WooCommerce Email Customizer: by cxThemes – 3.33
    CURCY - WooCommerce Multi Currency Premium: by VillaTheme – 2.2.0
    WooCommerce Table Rate Shipping: by Bolder Elements – 4.3.4
    WooCommerce: by Automattic – 7.1.0
    Wordfence Security: by Wordfence – 7.8.0
    Yoast SEO: by Team Yoast – 19.11
    WP Rocket | Deactivate WooCommerce Refresh Cart Fragments Cache: by WP Rocket Support Team –
    WP Rocket: by WP Media – 3.12.3.2
    Smart Image Resize PRO: by Nabil Lemsieh – 1.7.8
    WPS Hide Login: by WPServeur
    NicolasKulka
    wpformation – 1.9.6
    
    YITH WooCommerce Wishlist: by YITH – 3.15.0
    
    ### Inactive Plugins (8) ###
    
    Envato Market: by Envato – 2.0.7
    GM Block Bots: by GreenMellen Media – 2.0.2
    myStickymenu Pro: by Premio – 2.6.2
    TinyPNG - JPEG, PNG & WebP image compression: by TinyPNG – 3.4.1
    WooCommerce Order Test - WP Fix It: by WP Fix It – 2.1
    WooCommerce Photo Reviews Premium: by VillaTheme – 1.3.6
    Woo Discount Rules: by Flycart – 2.5.2
    WP Maintenance: by Florent Maillefaud – 6.1.2
    
    ### Dropin Plugins (1) ###
    
    advanced-cache.php: advanced-cache.php
    
    ### Settings ###
    
    API Enabled: ?
    Force SSL: ?
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)
    woosb (woosb)
    
    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-4 (rated-4)
    rated-5 (rated-5)
    
    Connected to WooCommerce.com: –
    Enforce Approved Product Download Directories: –
    
    ### WC Pages ###
    
    Shop base: #2315 - /shop/
    Cart: #5817 - /cart/
    Checkout: #5818 - /checkout/
    My account: #5819 - /my-account/
    Terms and conditions: ? Page not set
    
    ### Theme ###
    
    Name: Flatsome Child
    Version: 3.0
    Author URL: 
    Child Theme: ?
    Parent Theme Name: Flatsome
    Parent Theme Version: 3.16.2
    Parent Theme Author URL: https://uxthemes.com
    WooCommerce Support: ?
    
    ### Templates ###
    
    Overrides: flatsome/woocommerce/archive-product.php
    flatsome/woocommerce/cart/cart-empty.php
    flatsome/woocommerce/cart/cart-shipping.php
    flatsome/woocommerce/cart/cart.php
    flatsome/woocommerce/checkout/form-checkout.php
    flatsome/woocommerce/checkout/form-coupon.php
    flatsome/woocommerce/checkout/terms.php
    flatsome/woocommerce/checkout/thankyou.php
    flatsome/woocommerce/content-product-cat.php
    flatsome/woocommerce/content-product.php
    flatsome/woocommerce/content-single-product.php
    flatsome/woocommerce/content-widget-product.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/admin-cancelled-order.php version 3.7.0 is out of date. The core version is 4.1.0
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/admin-failed-order.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/admin-new-order.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/customer-completed-order.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/customer-invoice.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/customer-new-account.php version 3.7.0 is out of date. The core version is 6.0.0
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/customer-note.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/customer-on-hold-order.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/customer-processing-order.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/customer-refunded-order.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/customer-reset-password.php version 3.7.0 is out of date. The core version is 4.0.0
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/email-addresses.php version 3.5.4 is out of date. The core version is 5.6.0
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/email-customer-details.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/email-downloads.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/email-footer.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/email-header.php version 2.4.0 is out of date. The core version is 4.0.0
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/email-order-details.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/email-order-items.php
    /home/639925.cloudwaysapps.com/gsvszpjvap/public_html/wp-content/plugins/woocommerce-email-control/templates/emails/supreme/email-styles.php version 3.3.0 is out of date. The core version is 4.0.0
    flatsome/woocommerce/global/breadcrumb.php
    flatsome/woocommerce/global/quantity-input.php
    flatsome/woocommerce/global/wrapper-end.php
    flatsome/woocommerce/global/wrapper-start.php
    flatsome/woocommerce/loop/loop-end.php
    flatsome/woocommerce/loop/loop-start.php
    flatsome/woocommerce/loop/pagination.php
    flatsome/woocommerce/loop/rating.php
    flatsome/woocommerce/loop/result-count.php
    flatsome/woocommerce/loop/sale-flash.php
    flatsome/woocommerce/myaccount/form-login.php
    flatsome/woocommerce/myaccount/navigation.php
    flatsome/woocommerce/notices/error.php
    flatsome/woocommerce/notices/notice.php
    flatsome/woocommerce/notices/success.php
    flatsome/woocommerce/product-searchform.php
    flatsome/woocommerce/single-product/photoswipe.php
    flatsome/woocommerce/single-product/price.php
    flatsome/woocommerce/single-product/product-image.php
    flatsome/woocommerce/single-product/product-thumbnails.php
    flatsome/woocommerce/single-product/rating.php
    flatsome/woocommerce/single-product/related.php
    flatsome/woocommerce/single-product/review.php
    flatsome/woocommerce/single-product/sale-flash.php
    flatsome/woocommerce/single-product/share.php
    flatsome/woocommerce/single-product/short-description.php
    flatsome/woocommerce/single-product/tabs/tabs.php
    flatsome/woocommerce/single-product/title.php
    flatsome/woocommerce/single-product/up-sells.php
    flatsome/woocommerce/single-product-reviews.php
    flatsome/woocommerce/single-product.php
    flatsome/woocommerce/content-product_cat.php
    
    Outdated Templates: ?
    					
    					
    						Learn how to update
    
    ### Admin ###
    
    Enabled Features: activity-panels
    analytics
    coupons
    customer-effort-score-tracks
    experimental-products-task
    experimental-import-products-task
    experimental-fashion-sample-products
    shipping-smart-defaults
    shipping-setting-tour
    homescreen
    marketing
    multichannel-marketing
    mobile-app-banner
    navigation
    onboarding
    onboarding-tasks
    remote-inbox-notifications
    remote-free-extensions
    payment-gateway-suggestions
    shipping-label-banner
    subscriptions
    store-alerts
    transient-notices
    woo-mobile-welcome
    wc-pay-promotion
    wc-pay-welcome-page
    
    Disabled Features: minified-js
    new-product-management-experience
    settings
    
    Daily Cron: ? Next scheduled: 2022-12-05 14:28:28 +02:00
    Options: ?
    Notes: 115
    Onboarding: completed
    
    ### Action Scheduler ###
    
    Canceled: 1
    Oldest: 2022-11-07 13:30:36 +0200
    Newest: 2022-11-07 13:30:36 +0200
    
    Complete: 52,351
    Oldest: 2022-11-25 16:08:47 +0200
    Newest: 2022-12-04 23:56:58 +0200
    
    Failed: 4
    Oldest: 2022-11-02 08:17:30 +0200
    Newest: 2022-11-25 15:18:16 +0200
    
    Pending: 10
    Oldest: 2022-12-04 23:57:58 +0200
    Newest: 2022-12-05 23:43:46 +0200
    
    ### Status report information ###
    
    Generated at: 2022-12-04 23:57:06 +02:00
    
    Thread Starter dk9

    (@dk9)

    Ok, I have done some testing.
    I used the SSH of my server to CURL this address.
    I have disabled all the plugins and changed the theme.
    The 500 error was gone, but as soon as I have activated the WooCommerce plugin again, the 500 error was back.
    I also paused Cloudflare or any other caching layer.
    So it’s something with WooCommerce that goes wrong. Any idea what can it be?
    Daniel

    Thread Starter dk9

    (@dk9)

    Hi there, thanks for your response.
    I can see the logs but I have no idea how to read them.
    Anyway, I think these logs only showing the notification *to* PayPal.
    The issue is that PayPal has difficulties communicating back to WooCommerce.
    One question, when accessing the address https://www.site.com/wc-api/WC_Gateway_Paypal/ from a browser with a CURL command, what should the page show?
    At the moment, when going through a browser I’m getting a WordPress page saying: “PayPal IPN Request Failure”. Inspecting the page shows a 500 ERROR.
    When CURLing it, also we get a 500 ERROR.
    Does that change anything?

    Thread Starter dk9

    (@dk9)

    I will add that we are using PDT only, not IPN for the messages PayPal

    Thread Starter dk9

    (@dk9)

    I tried also SMTP and it won’t change the ‘from’ address.
    Basically, I have 2 users in my Google Workspace account. Is it possible to connect both to POST smtp so I would be able to email ‘from’ both of them?

Viewing 15 replies - 1 through 15 (of 72 total)