Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterHi,
Thank you for the details!
Can you please try changing the pagination from “load more” to “numbers” or “prev/next” for the posts widget in Elementor? The load more feature for that usually doesn’t work well, and I am also seeing an error message from elementor on the console about that feature.
That should very likely solve the issue.
Ernest Marcinko
KeymasterI see Samuele. The issue seems to be unrelated to the plugin though. When I turn off the plugin completely and go to the results page, it seems to happen ragardless: https://i.imgur.com/wOnjQkL.png
It looks like a visual issue or a misconfiguration within the page builder or the filter plugin.
July 14, 2024 at 1:58 pm in reply to: Ajax Search Pro "Search document file data setting support" request ticket #48757Ernest Marcinko
KeymasterHi,
Exact matching within the file contents is not possible. The files contents are parsed and stored in the index using the index table engine. With that however there is no way to have exact content matches as that information is lost during the indexing process.
You can do exact matching when not using the index table engine, but in that case searching the file contents is not possible as those are within the index.
If you have a lot of content, I rather recommend using a more strict keyword logic: https://i.imgur.com/Ki28fGX.png
July 14, 2024 at 1:50 pm in reply to: Elementor Pro and Crocoblock WordPress environment issue with search #48756Ernest Marcinko
KeymasterYou cannot access this content.
July 12, 2024 at 10:18 am in reply to: Notice: Undefined offset: 43 in /home/jcbs2024/domains/2024.jcbrightstart.hk/pub #48754Ernest Marcinko
KeymasterHi,
Thank you very much for letting me know! Luckily it was a minor issue, I fixed it via the plugin editor on your website.
I have opened a issue on the tracker, this will be fixed in the upcoming release permanently. No further action is needed from your side.
Ernest Marcinko
KeymasterThank you Samuele!
I see the issue – you want to combine some 3rd party filters with the search I guess? That’s a bit of a grey area, as the other plugin may not detect the new results and will try to filter the original loop. I usually don’t recommend combining multiple search/filter plugins, it often leads to compatibility issues.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi Samuele,
Could be a bad selector or a minor misconfiguration.
Can you add a link where I can test and also back-end details so I can fiddle with the configuration? Thank you!
Ernest Marcinko
KeymasterThere is a nifty trick where you can do that by using a bit of custom CSS trickery
For the field use this:
<span class="{_stock_status}"></span>This will apply a class name instead of the actual text. Now add this custom CSS somewhere (either in your theme settings or under here):
span.instock::after { content: 'In Stock'; color: green; } span.outofstock::after { content: 'Out of Stock'; color: #ff6600; }So the text appearing via CSS will depend on the stock status itself 🙂
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterGreat!
I will try my best to integrate more and more features, I can’t promise this, but should be a nice addition for sure.
is there a way to customize those strings?
I’m not sure what exactly you are reffering to, something within the custom code?Ernest Marcinko
KeymasterHi Samuele,
Well, this might not be possible easily. The quantity might be doable, the other one is probably more complex.
In the original code the quantity is sent directly via the button:
<div class="woocommerce"> <a href="<?php echo $link; ?>" data-quantity="1" class="button product_type_simple add_to_cart_button<?php echo $ajax; ?>" data-product_id="<?php echo $r->id; ?>" data-product_sku="" rel="nofollow"><?php echo $text; ?></a> </div>Maybe if that were replaced with a quantity input maybe:
<div class="woocommerce"> <div class="quantity"> <input type="number" step="1" min="1" max="" name="quantity" value="1" title="Quantity" class="input-text qty text" size="4" pattern="[0-9]*" inputmode="numeric"> </div> <a href="<?php echo $link; ?>" class="button product_type_simple add_to_cart_button<?php echo $ajax; ?>" data-product_id="<?php echo $r->id; ?>" data-product_sku="" rel="nofollow"><?php echo $text; ?></a> </div>But I’m not sure if this works.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterSure!
Please follow this link for refunds: https://help.market.envato.com/hc/en-us/articles/202821460-Can-I-Get-A-Refund
-
AuthorPosts