Forum Replies Created
-
AuthorPosts
-
October 22, 2023 at 10:49 pm in reply to: Fix AJAX search results showing results in multiple languages w/ WPML installed #10990
I fixed this issue, please recheck your site.
You can use the Max Mega Menu plugin or JetMenu plugin.
This reply has been marked as private.October 21, 2023 at 8:44 am in reply to: Fix AJAX search results showing results in multiple languages w/ WPML installed #10978I can’t login to the admin dashboard, please recheck your account: https://prnt.sc/ArXB4cOGB7jx
Currently Vertical menu only supports displaying 1 level submenu, you will not be able to create 2 level submenu with this menu.
Good job!
Let me know if you need to help.
Are you mistaken???? https://prnt.sc/CzG4EuNnailr
This reply has been marked as private.October 19, 2023 at 12:14 am in reply to: Slider Revolution Purchase code for Updating plug-in #10961I updated this plugin, please recheck.
October 19, 2023 at 12:05 am in reply to: Fix AJAX search results showing results in multiple languages w/ WPML installed #10959Please send the WordPress admin web account for me, I will check and try to help you.
October 19, 2023 at 12:03 am in reply to: Add to cart and Wishlist remain loading after clicking them #10958I fixed this issue, please recheck your site.
October 18, 2023 at 11:13 pm in reply to: Fix AJAX search results showing results in multiple languages w/ WPML installed #10955Please add this custom code to the file functions.php:
function petpuzzy_ajax_search_products() { global $woocommerce; $search_keyword = $_REQUEST['query']; $ordering_args = $woocommerce->query->get_catalog_ordering_args('date', 'desc'); $suggestions = array(); $args = array( 's' => apply_filters('petpuzzy_ajax_search_products_search_query', $search_keyword), 'post_type' => 'product', 'post_status' => 'publish', 'ignore_sticky_posts' => 1, 'orderby' => $ordering_args['orderby'], 'order' => $ordering_args['order'], 'posts_per_page' => apply_filters('petpuzzy_ajax_search_products_posts_per_page', 8), 'supress_filters' => true ); $args['tax_query']['relation'] = 'AND'; if (!empty($_REQUEST['product_cat'])) { $args['tax_query'][] = array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => strip_tags($_REQUEST['product_cat']), 'operator' => 'IN' ); } $products = get_posts($args); if (!empty($products)) { foreach ($products as $post) { $product = wc_get_product($post); $product_image = wp_get_attachment_image_src(get_post_thumbnail_id($product->get_id())); $suggestions[] = apply_filters('petpuzzy_suggestion', array( 'id' => $product->get_id(), 'value' => strip_tags($product->get_title()), 'url' => $product->get_permalink(), 'img' => esc_url($product_image[0]), 'price' => sprintf('<span class="price">%s</span>', $product->get_price_html()), ), $product); } } else { $suggestions[] = array( 'id' => -1, 'value' => esc_html__('No results', 'petpuzzy'), 'url' => '', ); } wp_reset_postdata(); echo json_encode($suggestions); die(); }
You have shared this password before and cannot log in.
Please double check your login information carefully and make sure I can log in to your admin dashboard.
You are wasting a lot of time just because of this problem!I can’t login to the admin dashboard, please recheck your account: https://prnt.sc/5aeZB6seK2QE
October 18, 2023 at 12:11 am in reply to: Add to cart and Wishlist remain loading after clicking them #10943The error may be due to a conflict with some plugins you installed.
In addition, many plugins have not been updated to the latest version, please update these plugins for your website -
AuthorPosts