dooza
Forum Replies Created
-
Forum: Plugins
In reply to: [Happy Addons for Elementor] Micromodal JS ErrorI think it would be best to move to your technical support team for deeper investigation.
Forum: Plugins
In reply to: [Happy Addons for Elementor] Micromodal JS ErrorHi @anowerhossain16, I just discovered this is only happening whilst logged in.
My site is a multisite, all the sub-sites have had Elementor added to the site a long time after the initial theme was created. The majority of the pages don’t use Elementor, but it seems when logged in, the Happy Addons assets are being loaded. It’s only the netwoks main site home page that seems to have the JS error which breaks it.
All the sites are using the same templates so this is very weird, and very hard to reproduce.
Forum: Plugins
In reply to: [Happy Addons for Elementor] Micromodal JS ErrorTo add to this, the page doesn’t even have Elementor in use.
Forum: Plugins
In reply to: [Post Carousel Addons For Elementor] Link at image and excerptI would also like to make the title and image clickable, this is better UX and SEO.
Hi @johnbillion thank you for the update, I can confirm the issue isn’t happening now.
I found rolling back to 3.10.1 stopped this error from occuring for me.
Does Query Monitor collect data for all vistitors or just logged in users?
Forum: Plugins
In reply to: [Contact Form 7] Control Wrap class missingSo instead of this:
.site-footer form .your-email input { ... }
I need to use this:
.site-footer form [data-name=your-email] input { ... }
I have a lot of sites to double check are working correctly after the update.
Steve
Looks like I needed to just toggle Pay Later Messaging layout and it now appears.
Forum: Plugins
In reply to: [Media Library Assistant] Frontend keyword search@dglingren that is perfect! Thank you very much, my client will be very happy.
Forum: Plugins
In reply to: [Media Library Assistant] Frontend keyword searchAfter reading the support docs I managed to find this and get it working:
<form id="mla-search-form" action="." method="post"> <input id="mla-search-box" name="search-string" type="text" value="" placeholder="Keyword search" /> <input id="submit" name="submit" type="submit" value="Search" /> </form>
[mla_gallery link="file" columns="4" attachment_category="aluminium-frame-marquees" style="random" s="{+template:({+request:search-string+})+}" mla_nolink_text="No images found." main_size="full" tile_size="gallery_thumb"]
My only question remaining is how can I get the form field to show what was searched for?
Steve
Forum: Plugins
In reply to: [Elementor Term List] Elementor 3.6.2 CompabilityHi @xvalenti sadly no reply from the author, even tried emailing a few times. My work around is to disable the plugin whilst editing pages and once done turn it back on. That doesn’t really help with the pages that need this widget though.
Steve
Forum: Plugins
In reply to: [Search by SKU for Woocommerce] All variations are appearing in searchAs an alternative to wait for the plugin to be fixed, I found adding this to your child themes functions.php file worked (don’t forget to deactivate this plugin first):
function search_by_sku( $search, $query_vars ) { global $wpdb; if(isset($query_vars->query['s']) && !empty($query_vars->query['s'])){ $args = array( 'post_type' => 'product', 'meta_query' => array( array( 'key' => '_sku', 'value' => $query_vars->query['s'], 'compare' => 'LIKE' ) ) ); $posts = get_posts($args); if(empty($posts)) return $search; $get_post_ids = array(); foreach($posts as $post){ $get_post_ids[] = $post->ID; } if(sizeof( $get_post_ids ) > 0 ) { $search = str_replace( 'AND (((', "AND ((({$wpdb->posts}.ID IN (" . implode( ',', $get_post_ids ) . ")) OR (", $search); } } return $search; } add_filter( 'posts_search', 'search_by_sku', 999, 2 );
It will change your entire site search to only search products, so if this is ok for you, this is a good solution.
Steve
It looks like the plugin is using deprecated Elementor code to register the widget. Your best bet is to downgrade Elementor to 3.5.6 until an update has been released.
Steve
@trinitech which plugin did you find as your alternative?