davidburrows
Forum Replies Created
-
Hi,
Thank you for the response. Filter Everything (Free) Version 1.9.2 . Advanced Woo Search Version 3.63
Hi,
Thanks for the reply, but I’ve already changed the query hook to posts_pre_query, as well as clearing cache and re-indexing products.
- This reply was modified 5 days, 16 hours ago by davidburrows.
To update, I’ve removed the code as it also removes the search by SKU functionality on the search results page, as well as the synonyms and fuzzy results, so I’m back to square one.
Forum: Plugins
In reply to: [Redirection] regex with wildcardsThanks, the expression wasn’t changing the displayed search results; a php snippet was required to update $_GET variables before WordPress processed the search request.
Added this function as a workaround, results now filter correctly but fuzzy/misspelled results and synonyms aren’t showing on the search results page, only the search box list/dropdown –
function replace_type_aws_in_get() {
if ( isset($_GET['type_aws']) ) {
// Move the value to 'aws'
$_GET['aws'] = $_GET['type_aws'];
// Remove the original
unset($_GET['type_aws']);
// Also update the global query variables so WordPress sees the change
if ( isset($_REQUEST['type_aws']) ) {
$_REQUEST['aws'] = $_REQUEST['type_aws'];
unset($_REQUEST['type_aws']);
}
// If using query_vars later (e.g. in WP_Query), update them too
if ( isset($GLOBALS['wp']->query_vars['type_aws']) ) {
$GLOBALS['wp']->query_vars['aws'] = $GLOBALS['wp']->query_vars['type_aws'];
unset($GLOBALS['wp']->query_vars['type_aws']);
}
}
}
add_action('init', 'replace_type_aws_in_get', 1); // Early priority to catch it before queries runForum: Plugins
In reply to: [Advanced Custom Stock Status] Stock status not displayed in shortcodesI’ve added this for now:
add_action( 'woocommerce_after_shop_loop_item', 'bbloomer_show_stock_shop', 1 );
function bbloomer_show_stock_shop() {
if (is_singular('post')) {
global $product;
echo wc_get_stock_html( $product );
}
}Forum: Plugins
In reply to: [Advanced Custom Stock Status] Stock status not displayed in shortcodesHi,
Just to add, I am also having this issue. 1.5.8 not displaying stock qty in shortcode on posts.
Example – create a new post, use shortcode [products skus=”Code1,Code2,” columns=”3″]
As a separate note, stock status display is indented/unaligned in version 1.5.7
- This reply was modified 1 year, 7 months ago by davidburrows.
Forum: Plugins
In reply to: [Advanced Custom Stock Status] Stock status not showing, version 1.5.4Hi, Thanks for the update – confirmed fixed in version 1.5.8
Forum: Plugins
In reply to: [Advanced Custom Stock Status] Stock status not showing, version 1.5.4@webwizardsdev Thank you for your assist. I can confirm both of those options in your screenshot are set to ‘Disabled’. I have disabled both the core and pro B2BKing plugins, and the stock is still not showing, which suggests B2BKing Pro and B2BKing Core are not the cause of the issue.
Forum: Plugins
In reply to: [Advanced Custom Stock Status] Stock status not showing, version 1.5.4Update – sent via Google Drive link.
Forum: Plugins
In reply to: [Advanced Custom Stock Status] Stock status not showing, version 1.5.4I’ve emailed the plugin to [email protected]
Edit: The email was rejected – how do you want me to send it? I cannot post publicly the link.
- This reply was modified 1 year, 9 months ago by davidburrows.
Forum: Plugins
In reply to: [Advanced Custom Stock Status] Stock status not showing, version 1.5.4Hello, I have updated, and commented code. Unfortunately it still does not display, so I have put custom code back in.
Forum: Plugins
In reply to: [Advanced Custom Stock Status] Stock status not showing, version 1.5.4Please find below as requested
WordPress Environment<br><br>WordPress address (URL): https://sagedecor.com<br>Site address (URL): https://sagedecor.com<br>WC Version: 9.1.4<br>Legacy REST API Package Version: The Legacy REST API plugin is not installed on this site.<br>Action Scheduler Version: ✔ 3.8.1<br>Log Directory Writable: ✔<br>WP Version: 6.6.1<br>WP Multisite: –<br>WP Memory Limit: 256 MB<br>WP Debug Mode: –<br>WP Cron: ✔<br>Language: en_GB<br>External object cache: – Server Environment<br><br>Server Info: LiteSpeed<br>PHP Version: 8.1.29<br>PHP Post Max Size: 512 MB<br>PHP Time Limit: 120<br>PHP Max Input Vars: 8000<br>cURL Version: 7.87.0<br>OpenSSL/1.1.1w<br><br>SUHOSIN Installed: –<br>MySQL Version: 10.6.18-MariaDB-cll-lve-log<br>Max Upload Size: 512 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<br><br>WC Database Version: 9.1.4<br>WC Database Prefix: wp1c_<br>Total Database Size: 88.09MB<br>Database Data Size: 62.06MB<br>Database Index Size: 26.03MB<br>wp1c_woocommerce_sessions: Data: 0.18MB + Index: 0.00MB + Engine MyISAM<br>wp1c_woocommerce_api_keys: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_woocommerce_order_items: Data: 0.21MB + Index: 0.12MB + Engine MyISAM<br>wp1c_woocommerce_order_itemmeta: Data: 2.19MB + Index: 1.33MB + Engine MyISAM<br>wp1c_woocommerce_tax_rates: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine MyISAM<br>wp1c_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_woocommerce_payment_tokens: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_woocommerce_payment_tokenmeta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_actionscheduler_actions: Data: 0.63MB + Index: 0.22MB + Engine MyISAM<br>wp1c_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_actionscheduler_logs: Data: 0.58MB + Index: 0.30MB + Engine MyISAM<br>wp1c_aimuse_datasets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp1c_aimuse_dataset_conversations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp1c_aimuse_history: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp1c_aimuse_migrations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp1c_aimuse_models: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp1c_aimuse_playground_chats: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp1c_aimuse_playground_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp1c_aimuse_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp1c_aimuse_templates: Data: 0.06MB + Index: 0.02MB + Engine InnoDB<br>wp1c_aimuse_template_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp1c_aioseo_cache: Data: 0.51MB + Index: 0.12MB + Engine MyISAM<br>wp1c_aioseo_notifications: Data: 0.01MB + Index: 0.01MB + Engine MyISAM<br>wp1c_aioseo_posts: Data: 1.14MB + Index: 0.06MB + Engine MyISAM<br>wp1c_cky_banners: Data: 0.02MB + Index: 0.00MB + Engine MyISAM<br>wp1c_cky_cookies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_cky_cookie_categories: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_cmplz_cookiebanners: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_cmplz_cookies: Data: 0.01MB + Index: 0.00MB + Engine MyISAM<br>wp1c_cmplz_dnsmpd: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_cmplz_services: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_commentmeta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_comments: Data: 0.60MB + Index: 0.15MB + Engine MyISAM<br>wp1c_dgwt_wcas_stats: Data: 0.13MB + Index: 0.00MB + Engine InnoDB<br>wp1c_e_events: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_firebox_logs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_firebox_logs_details: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_firebox_submissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_firebox_submission_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_jetpack_sync_queue: Data: 0.54MB + Index: 0.07MB + Engine MyISAM<br>wp1c_links: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_litespeed_avatar: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp1c_litespeed_img_optming: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp1c_litespeed_url: Data: 2.41MB + Index: 2.17MB + Engine InnoDB<br>wp1c_litespeed_url_file: Data: 2.52MB + Index: 6.48MB + Engine InnoDB<br>wp1c_mailchimp_carts: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_mailchimp_jobs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_mclean_refs: Data: 0.20MB + Index: 0.06MB + Engine MyISAM<br>wp1c_mclean_scan: Data: 0.01MB + Index: 0.00MB + Engine MyISAM<br>wp1c_momo_acg_cb_trainings_list: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp1c_mwai_filemeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_mwai_files: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_options: Data: 11.27MB + Index: 0.39MB + Engine MyISAM<br>wp1c_postmeta: Data: 17.23MB + Index: 7.13MB + Engine MyISAM<br>wp1c_posts: Data: 2.08MB + Index: 0.57MB + Engine MyISAM<br>wp1c_rank_math_analytics_gsc: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp1c_rank_math_analytics_inspections: Data: 0.02MB + Index: 0.11MB + Engine InnoDB<br>wp1c_rank_math_analytics_objects: Data: 0.41MB + Index: 0.13MB + Engine InnoDB<br>wp1c_rank_math_internal_links: Data: 0.11MB + Index: 0.05MB + Engine InnoDB<br>wp1c_rank_math_internal_meta: Data: 0.13MB + Index: 0.00MB + Engine InnoDB<br>wp1c_say_what_strings: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_termmeta: Data: 0.01MB + Index: 0.02MB + Engine MyISAM<br>wp1c_terms: Data: 0.01MB + Index: 0.02MB + Engine MyISAM<br>wp1c_term_relationships: Data: 0.25MB + Index: 0.47MB + Engine MyISAM<br>wp1c_term_taxonomy: Data: 0.03MB + Index: 0.01MB + Engine MyISAM<br>wp1c_usermeta: Data: 3.59MB + Index: 1.81MB + Engine MyISAM<br>wp1c_users: Data: 0.13MB + Index: 0.11MB + Engine MyISAM<br>wp1c_wc_admin_notes: Data: 0.03MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wc_admin_note_actions: Data: 0.02MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wc_category_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wc_customer_lookup: Data: 0.10MB + Index: 0.09MB + Engine MyISAM<br>wp1c_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wc_orders: Data: 0.12MB + Index: 0.06MB + Engine MyISAM<br>wp1c_wc_orders_meta: Data: 0.48MB + Index: 0.57MB + Engine MyISAM<br>wp1c_wc_order_addresses: Data: 0.13MB + Index: 0.07MB + Engine MyISAM<br>wp1c_wc_order_coupon_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wc_order_operational_data: Data: 0.06MB + Index: 0.03MB + Engine MyISAM<br>wp1c_wc_order_product_lookup: Data: 0.31MB + Index: 0.25MB + Engine MyISAM<br>wp1c_wc_order_stats: Data: 0.04MB + Index: 0.03MB + Engine MyISAM<br>wp1c_wc_order_tax_lookup: Data: 0.02MB + Index: 0.02MB + Engine MyISAM<br>wp1c_wc_product_attributes_lookup: Data: 0.08MB + Index: 0.11MB + Engine MyISAM<br>wp1c_wc_product_download_directories: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wc_product_meta_lookup: Data: 0.18MB + Index: 0.29MB + Engine MyISAM<br>wp1c_wc_rate_limits: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wc_reserved_stock: Data: 0.01MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wc_tax_rate_classes: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wfblockediplog: Data: 0.01MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wfblocks7: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wfconfig: Data: 2.49MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wfcrawlers: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wffilechanges: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wffilemods: Data: 5.07MB + Index: 0.64MB + Engine MyISAM<br>wp1c_wfhits: Data: 0.27MB + Index: 0.06MB + Engine MyISAM<br>wp1c_wfhoover: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wfissues: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wfknownfilelist: Data: 3.61MB + Index: 0.20MB + Engine MyISAM<br>wp1c_wflivetraffichuman: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wflocs: Data: 0.01MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wflogins: Data: 0.38MB + Index: 0.08MB + Engine MyISAM<br>wp1c_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp1c_wfls_role_counts: Data: 0.00MB + Index: 0.00MB + Engine MEMORY<br>wp1c_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp1c_wfnotifications: Data: 0.05MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wfpendingissues: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wfreversecache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wfsecurityevents: Data: 0.12MB + Index: 0.02MB + Engine MyISAM<br>wp1c_wfsnipcache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wfstatus: Data: 0.15MB + Index: 0.06MB + Engine MyISAM<br>wp1c_wftrafficrates: Data: 0.01MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wfwaffailures: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_woocommerce_square_customers: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_chatlogs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_chattokens: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_formtokens: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_form_feedback: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_form_logs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_imagetokens: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_image_logs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_promptbase_logs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_prompttokens: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_prompt_feedback: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpaicg_token_logs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpforms_logs: Data: 0.04MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpforms_payments: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpforms_payment_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpforms_tasks_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpf_filters: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpf_meta_data: Data: 0.68MB + Index: 1.13MB + Engine MyISAM<br>wp1c_wpf_meta_keys: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wpf_meta_values: Data: 0.00MB + Index: 0.01MB + Engine MyISAM<br>wp1c_wpf_meta_values_bk: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpf_modules: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpf_modules_type: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpf_usage_stat: Data: 0.00MB + Index: 0.00MB + Engine MyISAM<br>wp1c_wpmailsmtp_debug_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp1c_wpmailsmtp_tasks_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM Post Type Counts<br><br>attachment: 2853<br>b2bking_custom_field: 10<br>b2bking_custom_role: 1<br>b2bking_group: 11<br>b2bking_list: 43<br>b2bking_rule: 6<br>custom_css: 2<br>customize_changeset: 1<br>elementor_library: 11<br>getgenie_history: 8<br>mc4wp-form: 1<br>nav_menu_item: 101<br>page: 17<br>popup: 2<br>popup_theme: 8<br>post: 13<br>product: 2716<br>revision: 110<br>rm_content_editor: 1<br>seedprod: 1<br>shop_order: 413<br>shop_order_refund: 19<br>sp_wps_shortcodes: 1<br>wmpc-trash: 87<br>wp_navigation: 1<br>wpcode: 2<br>wpforms: 1<br>yith-wcbm-badge: 1 Security<br><br>Secure connection (HTTPS): ✔<br>Hide errors from visitors: ✔ Active Plugins (24)<br><br>Smart Custom 404 error page [404page]: by Peter Raschendorfer – 11.4.6<br>WooCommerce DNA Payments Gateway: by DNA Payments Integration – 3.0.1<br>FiboSearch - AJAX Search for WooCommerce: by FiboSearch Team – 1.28.1<br>B2BKing Pro: by WebWizards – 5.1.00<br>B2BKing Core: by WebWizards – 4.7.05<br>Classic Widgets: by WordPress Contributors – 0.3<br>Complianz | GDPR/CCPA Cookie Consent: by Really Simple Plugins – 7.1.0<br>Complianz - Terms and Conditions: by Really Simple Plugins – 1.2.8<br>Elementor: by Elementor.com – 3.23.3<br>LiteSpeed Cache: by LiteSpeed Technologies – 6.3.0.1<br>MC4WP: Mailchimp for WordPress: by ibericode – 4.9.14<br>Premium Addons for Elementor: by Leap13 – 4.10.38<br>Rank Math SEO: by Rank Math – 1.0.224<br>Ultimate floating widgets: by Aakash Chakravarthy – 2.9<br>UpdraftPlus - Backup/Restore: by UpdraftPlus.Com<br>DavidAnderson – 1.24.4<br><br>User Switching: by John Blackbourn – 1.8.0<br>Woo Custom Stock Status: by Softound Solutions – 1.5.4<br>Product Filter by WBW: by WBW – 2.6.6<br>Product Slider for WooCommerce: by ShapedPlugin LLC – 2.7.3<br>WooCommerce Shipping & Tax: by WooCommerce – 2.7.0<br>WooCommerce: by Automattic – 9.1.4<br>Wordfence Security: by Wordfence – 7.11.7<br>WP Mail SMTP: by WP Mail SMTP – 4.1.0<br>WPForms Lite: by WPForms – 1.8.9.6 Inactive Plugins (0) Settings<br><br>API Enabled: –<br>Force SSL: –<br>Currency: GBP (£)<br>Currency Position: left<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)<br><br>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)<br><br>Connected to WooCommerce.com: –<br>Enforce Approved Product Download Directories: ✔<br>HPOS feature enabled: –<br>Order datastore: WC_Order_Data_Store_CPT<br>HPOS data sync enabled: – Logging<br><br>Enabled: ✔<br>Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2<br>Retention period: 30 days<br>Level threshold: –<br>Log directory size: 409 KB WC Pages<br><br>Shop base: #11 - /shop/<br>Basket: #12 - /cart/ - Contains the [woocommerce_cart] shortcode<br>Checkout: #13 - /checkout/ - Contains the [woocommerce_checkout] shortcode<br>My account: #14 - /my-account/<br>Terms and conditions: #7564 - /terms-and-conditions/ Theme<br><br>Name: Kadence Child<br>Version: 1.0.0<br>Author URL: https://www.kadencewp.com/<br>Child Theme: ✔<br>Parent Theme Name: Kadence<br>Parent Theme Version: 1.2.7<br>Parent Theme Author URL: https://www.kadencewp.com/<br>WooCommerce Support: ✔ Templates<br><br>Overrides: kadence-child/woocommerce/emails/customer-on-hold-order.php Admin<br><br>Enabled Features: activity-panels<br>analytics<br>product-block-editor<br>coupons<br>core-profiler<br>customize-store<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-custom-fields<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<br>launch-your-store<br><br>Disabled Features: experimental-blocks<br>minified-js<br>pattern-toolkit-full-composability<br>product-pre-publish-modal<br>printful<br>settings<br>async-product-editor-category-field<br>product-editor-template-system<br><br>Daily Cron: ✔ Next scheduled: 2024-08-01 09:47:53 +01:00<br>Options: ✔<br>Notes: 52<br>Onboarding: completed Action Scheduler<br><br>Complete: 514<br>Oldest: 2024-07-01 09:45:19 +0100<br>Newest: 2024-08-01 00:55:54 +0100<br><br>Failed: 1,523<br>Oldest: 2023-03-06 09:50:13 +0000<br>Newest: 2024-06-21 15:15:01 +0100<br><br>Pending: 7<br>Oldest: 2024-08-01 10:03:16 +0100<br>Newest: 2024-08-03 10:18:19 +0100 Status report information<br><br>Generated at: 2024-08-01 09:36:47 +01:00<br>Forum: Plugins
In reply to: [Advanced Custom Stock Status] Stock status not showing, version 1.5.4As my website updates to 1.5.4 automatically, I’ve added the following snippet as a workaround for the time being;
add_action( 'woocommerce_after_shop_loop_item_title', 'custom_show_stock_shop', 10 );
function custom_show_stock_shop() {
global $product;
echo wc_get_stock_html( $product );
}Leaving as unresolved awaiting your reply, if this will be fixed in the next version, or if the custom snippet needs to remain?