sablednah
Forum Replies Created
-
Forum: Plugins
In reply to: [Discontinued Products] Version 2.0.0 causes blank category pagesI’m seeing exact same thing on 2 different sites after updating.
Categories and Attribute pages showing zero results.
Have the same happening for our site: (https://www.10kused.com/product/chamsys-magicq-mq500-stadium-2-lrru-02590/).
We have an enquire button which pops up an enquiry form.
The <br /> tags are ignored.
But a <table> at the end of the same email renders correctly.
Ive just tested and switching to <p></p> Seems to work.
Not sure whats changed.I used the regular “trash” link on a product view page.
If by not properly – you mean they are still n trashed status. Then yeah they are – as they are pending review. Once confirmed by processes we will empty the bin.
Regardless – you shouldn’t be including binned products in a feed like this. And saying to pay for a premium option to filter out products clearly not meant to be included – is chutzpah of the highest order…
I’ll fix myself.
Any idea on this. Tested repeatedly, products in the bin ARE included in the feed.
How can i fix?
Hi @wahid0003,
I’m getting trashed products in the feed. Products in the bin aren’t excluded.@admench , did you get a solution for this? I’m getting binned products in the feeds too.
Forum: Plugins
In reply to: [Role Based Price For WooCommerce] For variation productsHi Varium,
Any progress on this? We use variation products ourselves, and would love to use this with variation products too.Forum: Plugins
In reply to: [Minecraft Control Panel] Error while loadingUnknownDependencyException: ProtocolLib is the clue
That plugin requires this plugin as a dependency.
http://dev.bukkit.org/bukkit-plugins/protocollib/Forum: Plugins
In reply to: [Search Relevance] Remove Score from the_title_attribute()Apologies for the delay – not received any email for this so only just seen it!
Anyways – on to your enquiry. You can disable the score completely in the new setting page. That should prevent it showing and being handed to the tweet/post.
If however you did want the score to display in the page title then it gets more complex.
The plugin does drop the score into the search results post object so something like this might work.
if (is_search() && in_the_loop()) { if (isset($post->ssrch_relevance_percent)){ echo "<span class='score'>" . number_format(($post->ssrch_relevance_percent*100),0) ."%</span>"; } }You could probably even ditch the outer loop/search check and rely on isset.
Forum: Plugins
In reply to: [Search Relevance] and with WP 3.7 ?As far as I can tell its all still working, just basically using my algorithm for relevance instead of the new one in wordpress.
Forum: Plugins
In reply to: [Search Relevance] Default WordPress Hooks?Trying to work with WordPress rather than override it, was one of my aims with this.
Glad it helped you 😉
Forum: Reviews
In reply to: [Search Relevance] Excellent plugin and one of the best search solutionThanks for the review 🙂
I’ve added both those features to v2.0 for you.
Forum: Plugins
In reply to: [Search Relevance] How does it work ?Hey Li-An…
I just pushed out V 2.0 with both of the features you just mentioned: highlights, and focus on search terms.
Let me know what you think and if its worth 5 starts now 🙂
Forum: Plugins
In reply to: [Search Relevance] How does it work ?Thanks Li-An.
Good to hear it works nice!
This was never meant to replace Relevanssi’s fine control of results, it was made for 2 reasons.
1) Simplicity – little/no config/setup – and ta-da relevant results.
2) Memory use. By off loading the sorting to MySQL there are no index’s to maintain and no out-of memory errors for large indexes when using a host that’s not-so generous with php-memory limit.
Forum: Plugins
In reply to: [Search Relevance] How does it work ?I don’t use an index, just some clever use of the “locate” SQL function in my own algorithm.
That way the database does the gruntwork of the sort – something its designed to do.
I let WordPress’s own search handle the WHERE part of the query, and inject an extra field, and then order by that field.
The algorithm was originally written for a commercial site I work on (not WP) and handles 20k page loads a day and searches through nearly 15k items. I figured if an SQL based solution could work for that – there’s no reason it couldn’t work on wordpress too.