Forum Replies Created

Viewing 15 replies - 91 through 105 (of 178 total)
  • Thread Starter jazzu

    (@jazzu)

    Hi!

    I downloaded the plugin. Here you can see that the “New Account” email is enabled.

    Here however, you can see that the new account email is not being sent at all! Not even a failed attempt, it’s just nowhere to be found..

    If I go to email customizer though and send a test new account email, it does send it normally.

    Kind regards

    • This reply was modified 4 years, 5 months ago by jazzu.
    Thread Starter jazzu

    (@jazzu)

    Hi @prwordpressorg !

    Yes, I have the email enabled. The template is also set.

    Kind regards

    Thread Starter jazzu

    (@jazzu)

    Hey @jameskoster !

    I already posted it, waiting for the reply. I’ll mark the thread as resolved.

    Have a nice day!

    Thread Starter jazzu

    (@jazzu)

    Hey @jameskoster !

    Thank you for your effort. I checked out how I missed that part, but I realised that I didn’t. You get the option that you sent in the screenshot in some of the emails, but when I check for New User Registration – for user, you just get this message: This notification doesn’t support additional email fields due to a limitation in WordPress.

    Anyway, I’ve decided that I’ll disable the activation emails all-together. I made an email template for people that register a while ago with Kadence Email Designer.

    Once again, there’s a problem again. It’s all set up, but the email isn’t sent to anyone that registers.

    Kind regards

    Thread Starter jazzu

    (@jazzu)

    Hi @jameskoster !

    Thank you for your reply, I tried the plugin and I think that could be it. However, the test email I just sent to myself still shows that it’s been sent from WordPress, and I don’t see an option to change that in the plugin.

    Kind regards

    Thread Starter jazzu

    (@jazzu)

    Hi @mechuram !

    Thank you for your reply. Hmm, the problem I can see right now is that I’m using a custom function for the price. Is there another way to add the widget? Like using a shortcode or something?

    The code I’m using for the price:

    function custom_price_shortcode_callback( $atts ) {
    
        $atts = shortcode_atts( array(
            'id' => null,
        ), $atts, 'product_price' );
    
        $html = '';
    
        if( intval( $atts['id'] ) > 0 && function_exists( 'wc_get_product' ) ){
            // Get an instance of the WC_Product object
            $product = wc_get_product( intval( $atts['id'] ) );
    
            // Get the product prices
            $price         = wc_get_price_to_display( $product, array( 'price' => $product->get_price() ) ); // Get the active price
            $regular_price = wc_get_price_to_display( $product, array( 'price' => $product->get_regular_price() ) ); // Get the regular price
            $sale_price    = wc_get_price_to_display( $product, array( 'price' => $product->get_sale_price() ) ); // Get the sale price
    
            // Your price CSS styles
            $style1 = 'style="font-size:25px;color:#FF0000;font-weight:bold;"';
            $style2 = 'style="font-size:17px;color:#5F5F5F"';
    
            // Formatting price settings (for the wc_price() function)
            $args = array(
                'ex_tax_label'       => false,
                'currency'           => 'EUR',
                'decimal_separator'  => ',',
                'thousand_separator' => '.',
                'decimals'           => 2,
                'price_format'       => '%2$s %1$s',
            );
    
            // Formatting html output
            if( ! empty( $sale_price ) && $sale_price != 0 && $sale_price < $regular_price )
                $html = "<del $style2>" . wc_price( $regular_price, $args ) . "</del> <ins $style1>" . wc_price( $sale_price, $args ) . "</ins>"; // Sale price is set
            else
                $html = "<ins $style1>" . wc_price( $price, $args ) . "</ins>"; // No sale price set
        }
        return $html;
     }
     add_shortcode( 'price', 'custom_price_shortcode_callback' );

    Kind regards

    • This reply was modified 4 years, 5 months ago by jazzu.
    Thread Starter jazzu

    (@jazzu)

    Hi @ihereira !

    Thank you for your reply. I switched the theme to the default one – same problem.
    Then I enabled troubleshooting mode, enabled only WooCommerce and Elementor – same problem. So I have no idea why this is happening. The weird thing for me is that if I just sort the products from lowest to highest price, it shows the products perfectly.

    Kind regards

    Thread Starter jazzu

    (@jazzu)

    Hi again!

    I found the source of the problem. I had the code below copied from the other website and it was the reason for products not showing. I just deleted it and it works fine.

    The problem:

    /*		Customize ordering by price			*/
    
    add_filter('woocommerce_get_catalog_ordering_args', function ($args) {
        $orderby_value = isset($_GET['orderby']) ? wc_clean($_GET['orderby']) : apply_filters('woocommerce_default_catalog_orderby', get_option('woocommerce_default_catalog_orderby'));
    
        if ('price' == $orderby_value) {
            $args['orderby'] = 'meta_value_num';
            $args['order'] = 'ASC';
            $args['meta_key'] = '_price';
        }
    
        if ('price-desc' == $orderby_value) {
            $args['orderby'] = 'meta_value_num';
            $args['order'] = 'DESC';
            $args['meta_key'] = '_price';
        }
    
        return $args;
    });
    Thread Starter jazzu

    (@jazzu)

    Hi @margaretwporg !

    Ofcourse, here you go:

    
    ### WordPress Environment ###
    
    WordPress address (URL): https://moja-savna.si
    Site address (URL): https://moja-savna.si
    WC Version: 6.1.1
    REST API Version: ✔ 6.1.1
    WC Blocks Version: ✔ 6.5.2
    Action Scheduler Version: ✔ 3.4.0
    WC Admin Version: ✔ 3.0.3
    Log Directory Writable: ✔
    WP Version: 5.9
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    WP Cron: ✔
    Language: sl_SI
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: LiteSpeed
    PHP Version: 7.4.27
    PHP Post Max Size: 50 MB
    PHP Time Limit: 30
    PHP Max Input Vars: 5000
    cURL Version: 7.71.0
    OpenSSL/1.1.1d
    
    SUHOSIN Installed: –
    MySQL Version: 5.5.5-10.3.32-MariaDB-log-cll-lve
    Max Upload Size: 20 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔
    
    ### Database ###
    
    WC Database Version: 6.1.1
    WC Database Prefix: YwAaXCZkY_
    Skupna velikost podatkovne zbirke: 62.35MB
    Velikost podatkov podatkovne zbirke: 51.94MB
    Velikost kazala podatkovne zbirke: 10.41MB
    YwAaXCZkY_woocommerce_sessions: Podatki: 0.09 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_api_keys: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_attribute_taxonomies: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_downloadable_product_permissions: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_order_items: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_order_itemmeta: Podatki: 0.09 MB + Kazalo: 0.09 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_tax_rates: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_tax_rate_locations: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_shipping_zones: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_shipping_zone_locations: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_shipping_zone_methods: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_payment_tokens: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_payment_tokenmeta: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_woocommerce_log: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    wp_woocommerce_tax_rate_locations: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_actionscheduler_actions: Podatki: 4.02 MB + Kazalo: 1.75 MB + Pogon InnoDB
    YwAaXCZkY_actionscheduler_claims: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_actionscheduler_groups: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_actionscheduler_logs: Podatki: 2.02 MB + Kazalo: 1.84 MB + Pogon InnoDB
    YwAaXCZkY_addonlibrary_addons: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_addonlibrary_categories: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_aioseo_cache: Podatki: 0.17 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_aioseo_notifications: Podatki: 0.03 MB + Kazalo: 0.06 MB + Pogon InnoDB
    YwAaXCZkY_aioseo_posts: Podatki: 1.52 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_ce4wp_abandoned_checkout: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_ce4wp_contacts: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_commentmeta: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_comments: Podatki: 0.05 MB + Kazalo: 0.09 MB + Pogon InnoDB
    YwAaXCZkY_dlm_order: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_dlm_order_customer: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_dlm_order_item: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_dlm_order_transaction: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_dlm_session: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_download_log: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_ewwwio_images: Podatki: 0.08 MB + Kazalo: 0.06 MB + Pogon InnoDB
    YwAaXCZkY_ewwwio_queue: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_frmt_form_entry: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_frmt_form_entry_meta: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_frmt_form_views: Podatki: 0.05 MB + Kazalo: 0.06 MB + Pogon InnoDB
    YwAaXCZkY_gla_budget_recommendations: Podatki: 0.20 MB + Kazalo: 0.11 MB + Pogon InnoDB
    YwAaXCZkY_gla_merchant_issues: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_gla_shipping_rates: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_gla_shipping_times: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_lead_form: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_lead_form_data: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_lead_form_extension: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_lead_form_options: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_links: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailchimp_carts: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_mailchimp_jobs: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_custom_fields: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_dynamic_segment_filters: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_feature_flags: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_forms: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_log: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_mapping_to_external_entities: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_newsletters: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_newsletter_links: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_newsletter_option: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_newsletter_option_fields: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_newsletter_posts: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_newsletter_segment: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_newsletter_templates: Podatki: 2.52 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_scheduled_tasks: Podatki: 0.05 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_scheduled_task_subscribers: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_segments: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_sending_queues: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_settings: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_statistics_bounces: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_statistics_clicks: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_statistics_forms: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_statistics_newsletters: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_statistics_opens: Podatki: 0.02 MB + Kazalo: 0.08 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_statistics_unsubscribes: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_statistics_woocommerce_purchases: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_stats_notifications: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_subscribers: Podatki: 0.02 MB + Kazalo: 0.13 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_subscriber_custom_field: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_subscriber_ips: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_subscriber_segment: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_user_agents: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mailpoet_user_flags: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_mclean_refs: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_mclean_scan: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_nextend2_image_storage: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_nextend2_section_storage: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB
    YwAaXCZkY_nextend2_smartslider3_generators: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_nextend2_smartslider3_sliders: Podatki: 0.05 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_nextend2_smartslider3_sliders_xref: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_nextend2_smartslider3_slides: Podatki: 0.05 MB + Kazalo: 0.11 MB + Pogon InnoDB
    YwAaXCZkY_options: Podatki: 5.23 MB + Kazalo: 0.30 MB + Pogon InnoDB
    YwAaXCZkY_pmpro_discount_codes: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_pmpro_discount_codes_levels: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_pmpro_discount_codes_uses: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_pmpro_memberships_categories: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_pmpro_memberships_pages: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_pmpro_memberships_users: Podatki: 0.02 MB + Kazalo: 0.09 MB + Pogon InnoDB
    YwAaXCZkY_pmpro_membership_levelmeta: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_pmpro_membership_levels: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_pmpro_membership_ordermeta: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_pmpro_membership_orders: Podatki: 0.02 MB + Kazalo: 0.20 MB + Pogon InnoDB
    YwAaXCZkY_postmeta: Podatki: 20.45 MB + Kazalo: 1.94 MB + Pogon InnoDB
    YwAaXCZkY_posts: Podatki: 12.16 MB + Kazalo: 0.30 MB + Pogon InnoDB
    YwAaXCZkY_redirection_404: Podatki: 0.33 MB + Kazalo: 0.16 MB + Pogon InnoDB
    YwAaXCZkY_redirection_groups: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_redirection_items: Podatki: 0.02 MB + Kazalo: 0.09 MB + Pogon InnoDB
    YwAaXCZkY_redirection_logs: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_snippets: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_termmeta: Podatki: 0.05 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_terms: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_term_relationships: Podatki: 0.05 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_term_taxonomy: Podatki: 0.05 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_th_popup: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_tm_taskmeta: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_tm_tasks: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_upfs_files: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_usermeta: Podatki: 0.05 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_users: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_wcpdf_invoice_number: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_wc_admin_notes: Podatki: 0.06 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_wc_admin_note_actions: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_wc_category_lookup: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_wc_customer_lookup: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_wc_download_log: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_wc_order_coupon_lookup: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_wc_order_product_lookup: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB
    YwAaXCZkY_wc_order_stats: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_wc_order_tax_lookup: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_wc_product_meta_lookup: Podatki: 0.02 MB + Kazalo: 0.09 MB + Pogon InnoDB
    YwAaXCZkY_wc_rate_limits: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_wc_reserved_stock: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_wc_tax_rate_classes: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_wc_webhooks: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_wfpklist_template_data: Podatki: 0.03 MB + Kazalo: 0.00 MB + Pogon InnoDB
    YwAaXCZkY_yasr_log: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_yasr_log_multi_set: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_yasr_multi_set: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_yasr_multi_set_fields: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_yith_wcwl: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_yith_wcwl_lists: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_yoast_indexable: Podatki: 0.11 MB + Kazalo: 0.08 MB + Pogon InnoDB
    YwAaXCZkY_yoast_indexable_hierarchy: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB
    YwAaXCZkY_yoast_migrations: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB
    YwAaXCZkY_yoast_primary_term: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    YwAaXCZkY_yoast_seo_links: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB
    
    ### Post Type Counts ###
    
    acoplw_badges: 1
    attachment: 284
    cartflows_flow: 1
    cartflows_step: 2
    custom_css: 2
    customize_changeset: 68
    dlm_download_version: 1
    elementor_library: 30
    forminator_forms: 3
    glossary: 1
    gpsc_slider_carousel: 1
    mailpoet_page: 1
    nav_menu_item: 21
    oembed_cache: 3
    page: 14
    post: 1
    product: 71
    product_variation: 30
    project: 1
    revision: 703
    shop_order: 51
    sp_wps_shortcodes: 1
    tooltips: 1
    woolentor-template: 1
    wp_global_styles: 1
    xlwcty_thankyou: 1
    
    ### Security ###
    
    Secure connection (HTTPS): ✔
    Hide errors from visitors: ✔
    
    ### Active Plugins (32) ###
    
    All in One SEO: od All in One SEO Team – 4.1.6.2
    CartFlows: od CartFlows Inc – 1.8.1
    Child Theme Configurator: od Lilaea Media – 2.5.8
    Content Control: od Code Atlantic – 1.1.9
    Cookie Notice & Compliance for GDPR / CCPA: od Hu-manity.co – 2.2.1
    Disable woocommerce logout confirmation: od Hem Thapa – 1.2
    Download Plugin: od metagauss – 2.0.2
    Elementor: od Elementor.com – 3.5.4
    Enhanced AJAX Add to Cart for WooCommerce: od TheRiteSites – 2.3.0
    Essential Addons for Elementor: od WPDeveloper – 5.0.4
    Forminator: od WPMU DEV – 1.15.9
    Google Listings and Ads: od WooCommerce – 1.10.0
    Health Check & Troubleshooting: od The WordPress.org community – 1.4.5
    Kadence WooCommerce Email Designer: od Kadence WP – 1.4.10
    Loco Translate: od Tim Whitlock – 2.5.8
    Max Mega Menu: od megamenu.com – 2.9.5
    Menu Icons: od ThemeIsle – 0.12.9
    Page scroll to id: od malihu – 1.7.5
    Really Simple SSL: od Really Simple Plugins – 5.2.3
    Redirection: od John Godley – 5.2.2
    Reveal IDs: od Oliver Schlöbe – 1.5.4
    SMNTCS Custom Logo Link: od Niels Lange  – 1.16
    Category Order and Taxonomy Terms Order: od Nsp-Code – 1.5.9
    Temporary Login Without Password: od StoreApps – 1.7.1
    TH Advance Product Search: od ThemeHunk – 1.1.1
    UpdraftPlus - Backup/Restore: od UpdraftPlus.Com
    DavidAnderson – 1.22.1
    
    User Menus: od Code Atlantic – 1.2.7
    WooCommerce PayPal Payments: od WooCommerce – 1.6.4
    WooCommerce PDF Invoices & Packing Slips: od WP Overnight – 2.12.1
    WooCommerce: od Automattic – 6.1.1
    WooLentor - WooCommerce Elementor Addons + Builder: od HasThemes – 2.1.7
    WP-Optimize - Clean, Compress, Cache: od David Anderson
    Ruhani Rabin
    Team Updraft – 3.2.2
    
    ### Inactive Plugins (0) ###
    
    ### Dropin Plugins (1) ###
    
    maintenance.php: maintenance.php
    
    ### Must Use Plugins (1) ###
    
    Health Check Troubleshooting Mode: od  – 1.7.2
    
    ### Settings ###
    
    API Enabled: –
    Force SSL: –
    Currency: EUR (€)
    Currency Position: right_space
    Thousand Separator: .
    Decimal Separator: ,
    Number of Decimals: 2
    Taxonomies: Product Types: simple (simple)
    grouped (grouped)
    variable (variable)
    external (external)
    
    Taxonomies: Product Visibility: exclude-from-search (exclude-from-search)
    exclude-from-catalog (exclude-from-catalog)
    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: –
    
    ### WC Pages ###
    
    Osnova trgovine: #5 - /trgovina/
    Košarica: #6 - /kosarica/
    Zaključek nakupa: #7 - /zakljucek-nakupa/
    Moj račun: #8 - /moj-racun/
    Pogoji poslovanja: #3 - /pravilnik-o-zasebnosti/
    
    ### Theme ###
    
    Name: Big Store Child
    Version: 1.7.0.1633437188
    Author URL: https://www.themehunk.com
    Child Theme: ✔
    Parent Theme Name: Big Store
    Parent Theme Version: 1.8.6
    Parent Theme Author URL: https://www.themehunk.com
    WooCommerce Support: ✔
    
    ### Templates ###
    
    Archive Template: Vaša tema vsebuje datoteko woocommerce.php. Glede na to
    da ima woocommerce.php prednost nad archive-product.php
    slednje ne boste mogli prepisati preko woocommerce/archive-product.php. To služi preprečitvi težav s prikazom.
    
    Overrides: big-store-child/woocommerce/content-product.php
    big-store-child/woocommerce/emails/customer-on-hold-order.php
    
    ### WooCommerce PayPal Payments ###
    
    Onboarded: ✔
    Shop country code: SI
    WooCommerce currency supported: ✔
    PayPal card processing available in country: –
    Pay Later messaging available in country: –
    Webhook status: –
    Vault enabled: ✔
    Logging enabled: –
    Reference Transactions: –
    Used PayPal Checkout plugin: –
    
    ### Action Scheduler ###
    
    Zaključi: 5.578
    Oldest: 2021-12-29 11:04:20 +0100
    Newest: 2022-01-27 10:06:54 +0100
    
    V obdelavi: 5
    Oldest: 2022-01-27 10:11:54 +0100
    Newest: 2022-01-27 22:40:35 +0100
    
    ### Status report information ###
    
    Generated at: 2022-01-27 10:07:24 +01:00
    

    Kind regards

    Thread Starter jazzu

    (@jazzu)

    Hi @rynald0s !

    I already placed customer-note.php to my theme. The problem is that there’s no actual “For your reference, your order details are shown below.” line in the template, like there is <p><?php esc_html_e( ‘As a reminder, here are your order details:’, ‘woocommerce’ ); ?></p> for example.

    So sadly, I’m still stuck with the problem.

    Kind regards

    Thread Starter jazzu

    (@jazzu)

    Hi @csnlima !

    Thank you for your reply. However, the code you wrote disables the Bank Accounts for every single email, not just the Completed Order and Customer Note emails.

    The second thing is that there is actually no Customer Invoice email in WooCommerce → Settings → Emails.

    Kind regards

    Thread Starter jazzu

    (@jazzu)

    Hi @talmo !

    Thank you very much for your reply. I already fixed the issue with a shortcode.

    I solved it with the help of this thread: https://stackoverflow.com/questions/49692431/create-a-shortcode-to-display-the-product-stock-status-on-woocommerce

    The code I used:

    add_shortcode( 'stock_status', 'display_product_stock_status' );
    function display_product_stock_status( $atts) {
    
        $atts = shortcode_atts(
            array('id'  => get_the_ID() ),
            $atts, 'stock_status'
        );
    
        $product = wc_get_product( $atts['id'] );
    
        $stock_status = $product->get_stock_status();
    
        if ( 'instock' == $stock_status) {
            return '<p class="stock in-stock">In stock</p>';
        } else {
            return '<p class="stock out-of-stock">Out of stock</p>';
        }
    }

    Kind regards

    Thread Starter jazzu

    (@jazzu)

    Hi @csnlima !

    Thank you for your reply. Yes, backordering works and everything. Zen has 4 variations. What I want is when there is only 1 variation of the product, that it would display Not in stock alert in main shop, not in single product page. For example, I enabled backordering for Spa čistilo za cevni sistem 1l, however, it’s displayed normally in the shop. What I want is, IF the product is not in stock (0 or less), to display Not in stock alert in main shop like this. I only get this Not in stock alert if I disable backordering.

    Status report:

    
    ### WordPress Environment ###
    
    WordPress address (URL): https://moja-savna.si
    Site address (URL): https://moja-savna.si
    WC Version: 6.1.1
    REST API Version: ✔ 6.1.1
    WC Blocks Version: ✔ 6.5.2
    Action Scheduler Version: ✔ 3.4.0
    WC Admin Version: ✔ 3.0.3
    Log Directory Writable: ✔
    WP Version: 5.8.3
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    WP Cron: ✔
    Language: en_US
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: LiteSpeed
    PHP Version: 7.4.27
    PHP Post Max Size: 50 MB
    PHP Time Limit: 30
    PHP Max Input Vars: 5000
    cURL Version: 7.71.0
    OpenSSL/1.1.1d
    
    SUHOSIN Installed: –
    MySQL Version: 5.5.5-10.3.32-MariaDB-log-cll-lve
    Max Upload Size: 20 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔
    
    ### Database ###
    
    WC Database Version: 6.1.1
    WC Database Prefix: YwAaXCZkY_
    Total Database Size: 48.85MB
    Database Data Size: 39.76MB
    Database Index Size: 9.09MB
    YwAaXCZkY_woocommerce_sessions: Data: 0.06MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    YwAaXCZkY_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_woocommerce_order_itemmeta: Data: 0.09MB + Index: 0.09MB + Engine InnoDB
    YwAaXCZkY_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    YwAaXCZkY_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_actionscheduler_actions: Data: 4.02MB + Index: 1.64MB + Engine InnoDB
    YwAaXCZkY_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_actionscheduler_logs: Data: 2.02MB + Index: 0.81MB + Engine InnoDB
    YwAaXCZkY_addonlibrary_addons: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_addonlibrary_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_aioseo_cache: Data: 0.17MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_aioseo_notifications: Data: 0.03MB + Index: 0.06MB + Engine InnoDB
    YwAaXCZkY_aioseo_posts: Data: 1.52MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_ce4wp_abandoned_checkout: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_ce4wp_contacts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_comments: Data: 0.05MB + Index: 0.09MB + Engine InnoDB
    YwAaXCZkY_dlm_order: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_dlm_order_customer: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_dlm_order_item: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_dlm_order_transaction: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_dlm_session: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_download_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_ewwwio_images: Data: 0.08MB + Index: 0.06MB + Engine InnoDB
    YwAaXCZkY_ewwwio_queue: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_frmt_form_entry: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_frmt_form_entry_meta: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_frmt_form_views: Data: 0.05MB + Index: 0.06MB + Engine InnoDB
    YwAaXCZkY_gla_budget_recommendations: Data: 0.20MB + Index: 0.11MB + Engine InnoDB
    YwAaXCZkY_gla_merchant_issues: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_gla_shipping_rates: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_lead_form: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_lead_form_data: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_lead_form_extension: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_lead_form_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailchimp_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_mailpoet_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_mailpoet_mapping_to_external_entities: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_newsletter_templates: Data: 2.52MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_mailpoet_scheduled_tasks: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_mailpoet_scheduled_task_subscribers: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_segments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_mailpoet_sending_queues: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_statistics_bounces: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_statistics_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    YwAaXCZkY_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    YwAaXCZkY_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_mailpoet_subscribers: Data: 0.02MB + Index: 0.13MB + Engine InnoDB
    YwAaXCZkY_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_subscriber_segment: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_mailpoet_user_agents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_mclean_refs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_mclean_scan: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_nextend2_image_storage: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_nextend2_section_storage: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    YwAaXCZkY_nextend2_smartslider3_generators: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_nextend2_smartslider3_sliders: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_nextend2_smartslider3_sliders_xref: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_nextend2_smartslider3_slides: Data: 0.05MB + Index: 0.11MB + Engine InnoDB
    YwAaXCZkY_options: Data: 5.25MB + Index: 0.28MB + Engine InnoDB
    YwAaXCZkY_pmpro_discount_codes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_pmpro_discount_codes_levels: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_pmpro_discount_codes_uses: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_pmpro_memberships_categories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_pmpro_memberships_pages: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_pmpro_memberships_users: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    YwAaXCZkY_pmpro_membership_levelmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_pmpro_membership_levels: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_pmpro_membership_ordermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_pmpro_membership_orders: Data: 0.02MB + Index: 0.20MB + Engine InnoDB
    YwAaXCZkY_postmeta: Data: 13.45MB + Index: 1.88MB + Engine InnoDB
    YwAaXCZkY_posts: Data: 7.16MB + Index: 0.25MB + Engine InnoDB
    YwAaXCZkY_redirection_404: Data: 0.16MB + Index: 0.11MB + Engine InnoDB
    YwAaXCZkY_redirection_groups: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_redirection_items: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    YwAaXCZkY_redirection_logs: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_termmeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_term_relationships: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_term_taxonomy: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_th_popup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_tm_taskmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_tm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_upfs_files: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_usermeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_wc_admin_notes: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    YwAaXCZkY_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    YwAaXCZkY_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_wfpklist_template_data: Data: 0.03MB + Index: 0.00MB + Engine InnoDB
    YwAaXCZkY_yasr_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_yasr_log_multi_set: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_yasr_multi_set: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_yasr_multi_set_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_yith_wcwl: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_yith_wcwl_lists: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_yoast_indexable: Data: 0.11MB + Index: 0.08MB + Engine InnoDB
    YwAaXCZkY_yoast_indexable_hierarchy: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    YwAaXCZkY_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    YwAaXCZkY_yoast_primary_term: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    YwAaXCZkY_yoast_seo_links: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    
    ### Post Type Counts ###
    
    acoplw_badges: 1
    attachment: 278
    cartflows_flow: 1
    cartflows_step: 2
    custom_css: 2
    customize_changeset: 112
    dlm_download_version: 1
    elementor_library: 30
    forminator_forms: 3
    glossary: 1
    gpsc_slider_carousel: 1
    mailpoet_page: 1
    nav_menu_item: 21
    oembed_cache: 3
    page: 14
    post: 1
    product: 71
    product_variation: 30
    project: 1
    revision: 364
    shop_order: 43
    sp_wps_shortcodes: 1
    tooltips: 1
    woolentor-template: 1
    xlwcty_thankyou: 1
    
    ### Security ###
    
    Secure connection (HTTPS): ✔
    Hide errors from visitors: ✔
    
    ### Active Plugins (35) ###
    
    Acowebs Product Labels For Woocommerce: by Acowebs – 1.2.0
    All in One SEO: by All in One SEO Team – 4.1.6.2
    CartFlows: by CartFlows Inc – 1.8.0
    Child Theme Configurator: by Lilaea Media – 2.5.8
    Content Control: by Code Atlantic – 1.1.9
    Custom Backorders for Woocommerce: by gregbast1994 – 1.12
    Disable woocommerce logout confirmation: by Hem Thapa – 1.2
    Download Plugin: by metagauss – 2.0.2
    Elementor: by Elementor.com – 3.5.3
    Enhanced AJAX Add to Cart for WooCommerce: by TheRiteSites – 2.3.0
    Essential Addons for Elementor: by WPDeveloper – 5.0.2
    Forminator: by WPMU DEV – 1.15.9
    Google Listings and Ads: by WooCommerce – 1.10.0
    Health Check & Troubleshooting: by The WordPress.org community – 1.4.5
    Kadence WooCommerce Email Designer: by Kadence WP – 1.4.10
    Loco Translate: by Tim Whitlock – 2.5.7
    Max Mega Menu: by megamenu.com – 2.9.5
    Menu Icons: by ThemeIsle – 0.12.9
    Page scroll to id: by malihu – 1.7.4
    Really Simple SSL: by Really Simple Plugins – 5.2.2
    Redirection: by John Godley – 5.2.1
    Reveal IDs: by Oliver Schlöbe – 1.5.4
    SMNTCS Custom Logo Link: by Niels Lange  – 1.16
    Sold Out Badge for WooCommerce: by Charlie Etienne – 2.1.0
    Category Order and Taxonomy Terms Order: by Nsp-Code – 1.5.9
    Temporary Login Without Password: by StoreApps – 1.7.1
    TH Advance Product Search: by ThemeHunk – 1.1.1
    UpdraftPlus - Backup/Restore: by UpdraftPlus.Com
    DavidAnderson – 1.22.1
    
    User Menus: by Code Atlantic – 1.2.7
    WooCommerce Stripe Gateway: by WooCommerce – 6.0.0
    WooCommerce PayPal Payments: by WooCommerce – 1.6.4
    WooCommerce PDF Invoices & Packing Slips: by WP Overnight – 2.12.1
    WooCommerce: by Automattic – 6.1.1
    WooLentor - WooCommerce Elementor Addons + Builder: by HasThemes – 2.1.6
    WP-Optimize - Clean, Compress, Cache: by David Anderson
    Ruhani Rabin
    Team Updraft – 3.2.1
    
    ### Inactive Plugins (0) ###
    
    ### Dropin Plugins (1) ###
    
    maintenance.php: maintenance.php
    
    ### Must Use Plugins (1) ###
    
    Health Check Troubleshooting Mode: by  – 1.7.2
    
    ### Settings ###
    
    API Enabled: –
    Force SSL: –
    Currency: EUR (€)
    Currency Position: right_space
    Thousand Separator: .
    Decimal Separator: ,
    Number of Decimals: 2
    Taxonomies: Product Types: simple (simple)
    grouped (grouped)
    variable (variable)
    external (external)
    
    Taxonomies: Product Visibility: exclude-from-search (exclude-from-search)
    exclude-from-catalog (exclude-from-catalog)
    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: –
    
    ### WC Pages ###
    
    Shop base: #5 - /trgovina/
    Cart: #6 - /kosarica/
    Checkout: #7 - /zakljucek-nakupa/
    My account: #8 - /moj-racun/
    Terms and conditions: ❌ Page not set
    
    ### Theme ###
    
    Name: Big Store Child
    Version: 1.7.0.1633437188
    Author URL: https://www.themehunk.com
    Child Theme: ✔
    Parent Theme Name: Big Store
    Parent Theme Version: 1.8.6
    Parent Theme Author URL: https://www.themehunk.com
    WooCommerce Support: ✔
    
    ### Templates ###
    
    Archive Template: Your theme has a woocommerce.php file
    you will not be able to override the woocommerce/archive-product.php custom template since woocommerce.php has priority over archive-product.php. This is intended to prevent display issues.
    
    Overrides: big-store-child/woocommerce/content-product.php
    big-store-child/woocommerce/emails/customer-on-hold-order.php
    
    ### WooCommerce PayPal Payments ###
    
    Onboarded: ✔
    Shop country code: SI
    WooCommerce currency supported: ✔
    PayPal card processing available in country: –
    Pay Later messaging available in country: –
    Webhook status: –
    Vault enabled: ✔
    Logging enabled: –
    Reference Transactions: –
    Used PayPal Checkout plugin: –
    
    ### Action Scheduler ###
    
    Complete: 5,188
    Oldest: 2021-12-23 15:33:22 +0100
    Newest: 2022-01-21 13:21:19 +0100
    
    Pending: 5
    Oldest: 2022-01-21 13:21:36 +0100
    Newest: 2022-01-21 21:15:10 +0100
    
    ### Status report information ###
    
    Generated at: 2022-01-21 13:22:01 +01:00
    

    Kind regards

    • This reply was modified 4 years, 5 months ago by jazzu.
    Thread Starter jazzu

    (@jazzu)

    Hi @ihereira !

    Thank you for your reply. Yes, I checked that post before. I tried both codes, but nothing happened. I got an option to write a backorder message and even that message isn’t showing anywhere, so I don’t know what I’m doing wrong here.

    The Out of stock alert isn’t displaying as well, even if I set the stock to 0.

    Kind regards

    Thread Starter jazzu

    (@jazzu)

    Hi @t-p !

    Thank you for your reply. By custom design I mean that I’ve created the single product pages in Elementor. So basically I’m just wondering how I would add a text or shortcode that only displays when the product is on sale. If that’s against the guidelines, I’m sorry.

    Kind regards

Viewing 15 replies - 91 through 105 (of 178 total)