digamberpradhan
Forum Replies Created
-
Forum: Plugins
In reply to: [Search with Typesense] Object field type filter not workingHi @tajensen
Since we work with css selectors and have to recognize the filters that way doing something like.
spec.Dimensions.Height won’t work – please try doing it like specs_dimension_height
I’ve tested in out and making that change will work for you.Hi @koderius
Are you trying to create a meeting or a webinar ?
The issue is a bit vexing cause i just created a new app – connected and everything seems to be working fine for me.This is mostly like a S2SOauth app configuration error.
Please make sure yourmeeting:write
user:read
meeting:readAlso please try regenerating the token. The old token may not have been authorized with the new scopes.
- This reply was modified 3 months, 1 week ago by digamberpradhan.
Hi @koderius
There is an option to enable log on the zoom meeting.
Can you please do this and let me know what the output is ?P.S. : Please make sure you have all the scopes mentioned here https://zoomdocs.codemanas.com/setup/#required-scopes selected.
- This reply was modified 3 months, 1 week ago by digamberpradhan.
Hi @koderius
Can you please describe the issue you are facing ?Forum: Plugins
In reply to: [Search with Typesense] Fatal error: Uncaught TypeError: array_mergeHi @flaviusv
Can you please tell me which version of the plugin are you looking at ?
I just checked the latest version and i am unable to reproduce this error.
Also please let me know your current PHP version.Forum: Plugins
In reply to: [Video Conferencing with Zoom] Embedding the meeting in a pageHi @starapple ,
The plugin does not at this time allow live embedding of a zoom without the ability to join the meeting.
You can send users to join a meeting but only viewing it via a embedding is not supported yet.Forum: Plugins
In reply to: [Search with Typesense] SimplyStatic compatibilityYes – the output is just html – and js and css ofcourse.
The output is determined by php – but once that’s done – if the js and css is enqueued technically it should work.
Does not make request to WP – just the initial htmlForum: Plugins
In reply to: [Search with Typesense] SimplyStatic compatibilityHi @jamesjosephfinn
We haven’t officially tested the plugin with it yet, so we can’t confirm full compatibility at this time. That said, if you decide to give it a try and run into anything unexpected, feel free to reach out — we’d be happy to take a look and help where we can.Forum: Plugins
In reply to: [Search with Typesense] Automatic sync new postsHi Again,
You shouldn’t need to run CLI to index the posts.
It should automatically index the posts when post is created.
Please try doing this:- Enable debug log.
- Adding a post manually.
- And see what that debug log shows.
Forum: Plugins
In reply to: [Search with Typesense] Automatic sync new postsHi @flaviusv
How are you adding the new articles is a question that will need to be asked.
By default – the plugin – automatically indexes all new posts on addition.So if you’re doing something specific please let me know.
Forum: Plugins
In reply to: [Search with Typesense] Howto change the default thumbnail image of results?Hi @achmk
We’ve added the ability to do this in version 2.0.16 and above so please update first.
You will need to add code either in your custom plugin or your child theme.
We will provide an interface to do this in future updates.function cm_swt_change_default_thumbnail_url() {
$image_url = 'https://placehold.co/600x400';
defined('CODEMANAS_TYPESENSE_THUMBNAIL_IMAGE_URL') || define('CODEMANAS_TYPESENSE_THUMBNAIL_IMAGE_URL', $image_url);
}
//priority needs to be less than 10 or wont work.
add_action('init','cm_swt_change_default_thumbnail_url',5);- This reply was modified 7 months, 3 weeks ago by digamberpradhan.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Critical ErrorHi @brindell ,
Can you please check what the error being displayed is ?
That would help us narrow down the issue https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/Forum: Plugins
In reply to: [Video Conferencing with Zoom] Contact form?HI @marvc
Please visit https://www.codemanas.com/downloads/video-conferencing-with-zoom-pro/
We use a different payment gateway – paddle – so you won’t be able to pay via paddle there.Forum: Plugins
In reply to: [Search with Typesense] Automatic sync new postsHi @flaviusv
Yes, the plugin handles the states of CRUD.
You only need to index the posts once.Forum: Plugins
In reply to: [Search with Typesense] Slow indexing processHi @flaviusv
For large indexes it’s really very difficult to stop the bottleneck of database queries.
To counteract this problem i would suggest that you export data / post type to a .txt file.
Create a .sh file lets say read_file.sh and run this# Check if a filename is provided
if [ $# -eq 0 ]; then
echo "Usage: $0 ids.txt"
exit 1
fi
# Read the file line by line and echo each line
while IFS= read -r line; do
wp typesense index post --ids=$line
done < "$1"Then run the .sh file:
./read_file.sh ids.txt
This will be much more performant.