digamberpradhan
Forum Replies Created
-
Forum: Plugins
In reply to: [Preview E-mails for WooCommerce] Fatal ErrorHi @suzieb
This seems to be an issue with a custom plugin that you have namely Alg_WC_Custom_Email.
Not all 3rd party emails or custom emails are supported by the plugin.Forum: Plugins
In reply to: [Search with Typesense] Make post/page a facet, or include all in result?Hi @maven1129
Combining post types into a single / combined index is deliberately not possible via the default configuration.
Please see:
https://www.ads-software.com/support/topic/combine-results-2/
https://github.com/codemanas/omni-search/tree/master
You will definitely need a custom solution for this.Forum: Plugins
In reply to: [Search with Typesense] Crawl custom tables inside WordPress databaseHi @oarnarsson
If you’re trying to search the orders – i’m afraid we haven’t built a way to do so.
If however you’re only interested in the showing the Shop and other we have a premium plugin for that.
I’m assuming you would have to hook into order update and run the indexing code.
I don’t know for sure though as I haven’t personally done this.Forum: Plugins
In reply to: [Search with Typesense] Cannot activate plugin on WP EngineHi @joshuaiz
Thanks for getting in touch. Our plugin requires that you use the latest version of WordPress i.e 6.6 or higher. https://www.ads-software.com/download/
Please update WordPress to 6.6 / higher.Forum: Plugins
In reply to: [Search with Typesense] Custom post types on multisiteHi @diegonorzex
Are you activating this plugin ( customization ) on a per site basis too ?Forum: Plugins
In reply to: [Preview E-mails for WooCommerce] Search Orders returns “No Results Found”Hi @janvasek
Yes searching older orders have become a problem.
Please see my blog post https://www.digamberpradhan.com/issues-with-woocommerce-order-table/Forum: Plugins
In reply to: [Search with Typesense] Custom post types on multisiteHello @diegonorzex
I will try to help as best as i can here.
Firstly Custom Post Types are not supported by default.
You would actually need to code that part https://docs.wptypesense.com/advanced-custom-post-types/
Which it seems you’ve already done judging by the custom post types showing up.
Secondly on multisites – the plugin only works on a per site activation.
So network activating the plugin will not work.If you have created an add-on plugin to work along with the typesense I suggest you activate that on a per site basis too.
Lastly – if you haven’t already i’d suggest adding prefix to your collection https://www.ads-software.com/support/topic/add-support-for-collection-prefix/ otherwise you’d risk one sites posts overwriting anothers when indexed. This also requires you to add prefix on a per site basis.
I hope this helps.Forum: Plugins
In reply to: [Preview E-mails for WooCommerce] Custom email templatesHi @andydog66
While i would love to support all e-mails, there are too many 3rd Party Plugins.
The Critical Error is caused because the way 3rd Party Plugins ( any other than WooCommerce itself)
sends email has additional parameters.
I am writing an update to allow 3rd Parties to Provide support – but that’s a work in progress.
Hope this answers your questoins.Forum: Plugins
In reply to: [Preview E-mails for WooCommerce] Why Did You Get Rid of Send Button?Hi Stef,
I changed the logic a bit – if you add the email address field.
It auto sends the email to that address.
Revisiting it today – i might have made a UI/UX mistake – I will think of how to make this better.Forum: Plugins
In reply to: [Search with Typesense] Missing category and tag strings for translationGlad that worked.
Cheers.Forum: Plugins
In reply to: [Search with Typesense] Missing category and tag strings for translationHi Again,
Coding will be required to change these labels.
You can add this snippet to either your child theme or a custom plugin.function cm_swt_2024_08_28_change_filter_label( $label, $post_type ) {
if ( strtolower($label) == 'category') {
//category in French
$label = 'catégorie';
}
return $label;
}
add_filter( 'cm_typesense_search_facet_title', 'cm_swt_2024_08_28_change_filter_label', 10, 2 );
I hope this helps.- This reply was modified 3 months ago by digamberpradhan.
Forum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] Order Received Page Messed UpSolved:
The issue was with Elementor – specifically – Elementor Element Caching.
You need to go to Elementor > Settings > Features > Disable Element Caching ( if it’s on )
Hopes this helps others in future.Forum: Plugins
In reply to: [Preview E-mails for WooCommerce] Wrong hook in your PluginHi @danielvonmitschke
I have corrected the hook and updated it to use plugins_loaded instead of plugin_loaded.
Thank you for pointing this out – please update to version 2.2.13 when you get the chance.Forum: Plugins
In reply to: [Preview E-mails for WooCommerce] Search Orders returns “No Results Found”Hi @sandwichcoffeeroasters ,
I’ve updated the plugin in version 2.2.12 to rectify this issue.
Can you please check if this fixes your issue.Forum: Plugins
In reply to: [Preview E-mails for WooCommerce] Emails Automatically Sending?Hi @redbackteam
The emails should not be automatically sending.
Can you let me know which version of WooCommerce and the version of the plugin you’re using ?