Month: February 2025

LabWare LIMS v8 SQL Error

User Labware lims v8 sql error Assistant Can you provide more details about the SQL error you're encountering in LabWare LIMS v8? Specifically: 1. The full error message. 2. The action you were performing when the error occurred (e.g., inserting data, running a report, updating records). 3. Any relevant SQL queries or stored procedures involved. […]

Avada Theme Body Scripts

User /** * Echo the scripts added to the "before " field in Theme Options. * The 'space_body' setting is not sanitized. * In order to be able to take advantage of this, * a user would have to gain access to the database * in which case this is the least on your worries. […]

Prevent CSS on Anchor

User prevent any a css applying here Assistant To prevent any CSS from affecting the “ element and its contents, you can use the `all: unset;` property in an inline `style` attribute. This resets all inherited and applied styles. Here's the updated code: <a href="tel:0744495500" style="all: unset; display: inline-block;"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 […]

Remove Plugin from List

User a:20:{i:0;s:27:"LayerSlider/layerslider.php";i:1;s:46:"captcha-for-contact-form-7/f12-cf7-captcha.php";i:2;s:79:"contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php";i:3;s:67:"contact-form-7-simple-recaptcha/contact-form-7-simple-recaptcha.php";i:4;s:36:"contact-form-7/wp-contact-form-7.php";i:5;s:23:"cookiebot/cookiebot.php";i:6;s:43:"ds-cf7-math-captcha/ds-cf7-math-captcha.php";i:7;s:33:"facetwp-submit/facetwp-submit.php";i:8;s:17:"facetwp/index.php";i:9;s:33:"fusion-builder/fusion-builder.php";i:10;s:27:"fusion-core/fusion-core.php";i:11;s:43:"google-analytics-dashboard-for-wp/gadwp.php";i:12;s:24:"header-footer/plugin.php";i:13;s:31:"mobilede_wordpress/mobilede.php";i:14;s:19:"neusued/neusued.php";i:15;s:37:"post-types-order/post-types-order.php";i:16;s:23:"revslider/revslider.php";i:17;s:61:"sticky-menu-or-anything-on-scroll/sticky-menu-or-anything.php";i:18;s:31:"wp-migrate-db/wp-migrate-db.php";i:19;s:29:"wp-retina-2x/wp-retina-2x.php";} remove mobilede_wordpress/mobilede.php Assistant Here’s the updated serialized array after removing `mobilede_wordpress/mobilede.php`: a:19:{i:0;s:27:"LayerSlider/layerslider.php";i:1;s:46:"captcha-for-contact-form-7/f12-cf7-captcha.php";i:2;s:79:"contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php";i:3;s:67:"contact-form-7-simple-recaptcha/contact-form-7-simple-recaptcha.php";i:4;s:36:"contact-form-7/wp-contact-form-7.php";i:5;s:23:"cookiebot/cookiebot.php";i:6;s:43:"ds-cf7-math-captcha/ds-cf7-math-captcha.php";i:7;s:33:"facetwp-submit/facetwp-submit.php";i:8;s:17:"facetwp/index.php";i:9;s:33:"fusion-builder/fusion-builder.php";i:10;s:27:"fusion-core/fusion-core.php";i:11;s:43:"google-analytics-dashboard-for-wp/gadwp.php";i:12;s:24:"header-footer/plugin.php";i:13;s:19:"neusued/neusued.php";i:14;s:37:"post-types-order/post-types-order.php";i:15;s:23:"revslider/revslider.php";i:16;s:61:"sticky-menu-or-anything-on-scroll/sticky-menu-or-anything.php";i:17;s:31:"wp-migrate-db/wp-migrate-db.php";i:18;s:29:"wp-retina-2x/wp-retina-2x.php";} This keeps the correct serialization structure while removing `mobilede_wordpress/mobilede.php`. Let me know if you need further modifications! 🚀

Order Status Performance Issues

User I’ve reviewed the code involved order status change from awaiting percription to dispensing , I found that this process attached logged in admin prescriber id to customer order and based on that details pdf invoice get signature and other details like registration etc. This process involved to update postmeta table that currently has 9 […]

Custom Link User Profile

User wp-admin/user-edit.php?user_id=75166 Add custom link to this page in wordpress wp admin by hook Assistant To add a custom link to the **Edit User** page in WordPress admin (`wp-admin/user-edit.php?user_id=75166`), you can use the `edit_user_profile` or `edit_user_profile_update` action hook. Here’s how you can add a custom link to the user profile page: ### Solution: Add the […]

Find WooCommerce Order Notes

User find manually added notes from order detail page woocommerce wp admin Assistant In WooCommerce, manually added order notes can be found in the **Order Notes** section on the order details page in the WordPress admin panel. Here's how you can locate them: ### Steps to Find Manually Added Order Notes: 1. **Go to WooCommerce […]

Database Optimization Assistance

User We received the below message regarding database optimizations "To enhance overall server stability and website performance, we recommend optimizing and reducing the size of the database where possible. Please let us know if you require assistance in implementing these optimizations." Could you please suggest/advise what type of optimization we need to do? Also, I've […]

Database Optimization Suggestions

User Could you please suggest/advise what type of optimization we need to do? Also, I've attached the top four tables that occupied the maximum space. In attached, you will see that wp_6hp6nqm250_postmeta – 9 GB this is the table used in maximum queries in both the front end and backend Please provide suggestions for optimizations […]

Bootstrap 5 Layout Conversion

User @if ($query->have_posts()) @while ($query->have_posts()) @php $query->the_post(); @endphp {{– Display Featured Image –}} @if (has_post_thumbnail()) @endif {{ get_the_title() }} {{get_field('location_address')}},{{get_field('location_zip')}} {{get_field('location_name')}} {{__('Tel.','sage') }}: {{get_field('location_phone')}} {{__('Öffnungszeiten') }}:{{get_field('hours_service')}} @endwhile @php wp_reset_postdata(); @endphp @else No locations found. @endif covnert above bootstrap 5 d-flext 3 col in desktiop and 1 column in mobile Assistant You can achieve this by […]