digamberpradhan
Forum Replies Created
-
Hi @rhand,
Sorry for the late response on this. From the error logs it doesn’t look to me like it’s anything with Preview Emails, were you able to figure this out ?Forum: Plugins
In reply to: [Search with Typesense] Search only related content on the postHi @adcadesigns,
I am assuming you are using Malls as a filter / facet to filter Shop and Dining. If so the relationship data needs to be in the Shops and Diners.
So you’ll need to have the associated mall as a category / meta data for the Shop / Diner then you can use index Malls as the facet.
If i can see a demo of the site / implementation i may be able to provide better suggestions.Forum: Plugins
In reply to: [Search with Typesense] Search only related content on the postHi @adcadesigns,
If i read this correctly you would like to show,Shops and Dining according to the mall selected. The structure of the data is very important here.
So can you please let me know what are the post types being indexed ?
As for the slider – it would be quite difficult to do this – the instant search handles showing the listing, and as this is already another library – it would be quite difficult to show the listing in a slider.Forum: Plugins
In reply to: [Search with Typesense] Will this plugin work on a Static site?As long as the generated html and css are being included then technically it should work. I would advise you to test it out and check for yourself.
Forum: Plugins
In reply to: [Search with Typesense] Will this plugin work on a Static site?Hi @niranjan
I am not sure what you mean by static site ?
The plugin is dependent on using scripts and data – so by default this will not work on a static site.
Depending on your implementation it could work – but without knowing more i would not say this will work on a static site.Forum: Plugins
In reply to: [Video Conferencing with Zoom] different accountsHello @karkad,
I’m not sure to exactly what you mean here ?
If you are trying to use two different accounts simultaneously you must add one account as a sub-user to your main account.Forum: Plugins
In reply to: [Video Conferencing with Zoom] Change Zoom AccountHi @karkad,
You can go to Zoom Evnents > Settings and change the API keys used on the site, the API keys are associated with the Zoom Account and that will change the user as well. Please see docs https://zoomdocs.codemanas.com/setup/Forum: Plugins
In reply to: [Video Conferencing with Zoom] This recording does not exist.@kiteksood167,
Please clear cache and refetch recordings, we have changed the way it works and this should have resolved the issue for recordings not being fetched.
Additionally please ?Review the ” Settings for sharing cloud recordings” hereForum: Plugins
In reply to: [Video Conferencing with Zoom] Adding back the ‘Download’ linkHi @siriusthestar,
The Zoom Integration for WooCommerce required some changes to be compatible with version 4.4.4 of the plugin. Please update to Zoom Integration for WooCommerce 2.7.8,Hi @mehmetba,
Can you please make sure that your URL is available https://mysite.com:443/health/ and it’s accesible via the browser.Forum: Plugins
In reply to: [Video Conferencing with Zoom] This recording does not exist.Hi @kiteksood167
After multiple tests we see this is an intermittent issue with getting the recordings via meeting id.
We’ve reported this issue to Zoom, and we’re looking for a solution.
https://devforum.zoom.us/t/recording-api-issue/102992Forum: Plugins
In reply to: [Video Conferencing with Webex] Question about Gutenberg updateHi Again,
Currently there aren’t any specific blocks being developed.
If you have a specific request please let us know and we can consider adding it to future updates.
If there is something more immediate in mind let’s say a custom job please reach out to [email protected] and we can take it from there.Forum: Plugins
In reply to: [Video Conferencing with Webex] Question about Gutenberg updateHi @lssi2024
There are currently no scheduled updates for Gutenberg / Block based updates. Can you please expand on what kind of updates you are looking for ?
Currently everything is supported via use of shortcodes.Forum: Plugins
In reply to: [Search with Typesense] Self-hosted typesense possible?Hi @djbox2018
Yes self-hosted versions of typesense can be used with the plugin.Forum: Plugins
In reply to: [Search with Typesense] Custom Field in SchemaHi John,
You can theoretically directly read the VTT file, read and process the text and store in a custom field. And when sending the data read the file and save the data in your schema as a something like “captions” field.
So you could directly upload the VTT file and have it read.
Ofcourse this is all theoretical, but theoritically i see no reason why the VTT file can’t be read something like the following:<?php // Path to your VTT file $vttFilePath = 'path/to/your/file.vtt'; // Read the VTT file $fileContent = file_get_contents($vttFilePath); // Split the content into individual lines $lines = explode("\n", $fileContent); // Loop through each line foreach ($lines as $line) { // Remove any leading/trailing white spaces $line = trim($line); // Ignore empty lines or lines starting with "WEBVTT" or timestamps (typically in the format '00:00:00.000 --> 00:00:00.000') if ($line !== '' && strpos($line, 'WEBVTT') !== 0 && strpos($line, '-->') === false) { // Output or store the text from the VTT file echo $line . "\n"; } } ?>