ikanaweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Embed Video Thumbnail] Plugin shows weird text i dont understandCan you give me a little more information on your video ?
Video url ?
Do you display it with the widget, apply_filter or directly in post content ?Thanks
Forum: Plugins
In reply to: [Embed Video Thumbnail] Plugin crashes with Elementor CarouselThank you for using my plugin.
I was off for a long time, but i’m back and i made a lot of improvements on the plugin.
Can you try the latest version (2.0.3) and tell me it this works with elementor ?Best regards
Forum: Plugins
In reply to: [Embed Video Thumbnail] Plugin shows weird text i dont understandThank you for using my plugin. I’m glad you like it.
I published a new version of the plugin which should fix the bug.
Can you give it a try, and tell me it this works for you ?
Feel free to leave a review on the plugin page, it really helps me 🙂Best regards
Forum: Plugins
In reply to: [Embed Video Thumbnail] Plugin shows weird text i dont understandHi @phalancs
Thank you for using my plugin, i am glad you love it.
Can you take a screenshot, upload it to https://pasteboard.co/ and send me the url so i can take a look ?
Best regards
Forum: Plugins
In reply to: [Embed Video Thumbnail] This plugin breaks displaying PHP CodeForum: Plugins
In reply to: [Embed Video Thumbnail] This plugin breaks displaying PHP CodeHi @cheffie1
Many thanks for the details.
Thanks to you feedback, the bug has been fixed and the patch will be available soon.
While waiting for the incoming version, you can deactivate the plugin.Best regards
Forum: Plugins
In reply to: [Embed Video Thumbnail] ALT Image TagsHi @cheffie1
For now, there is no default alt attributes on the video thumbnails, my mistake.
The only way to add some is by using the providers API.I am working on the next version of the plugin, and I will add the video id in alt attributes by default.
The incoming version fixes many bugs, and adds support for video indexing by search engines.
It should be available soon, please let me work on this.
Best regards
- This reply was modified 9 months ago by ikanaweb.
Forum: Plugins
In reply to: [Embed Video Thumbnail] need help making it work in custom locationsHi @treeflips
In your php code, you can trigger plugin on a single video with this filter.
You have to replace$videoURI
by the url of the video.Example with this youtube video url :
https://www.youtube.com/watch?v=enY3Q91x6cQ
Add in your php code :
<?php echo apply_filters('ikevt_video_to_thumbnail', 'https://www.youtube.com/watch?v=enY3Q91x6cQ'); ?>
Let me know if this works
Best regards
- This reply was modified 9 months ago by ikanaweb.
Forum: Plugins
In reply to: [Embed Video Thumbnail] This plugin breaks displaying PHP CodeThanks for your response.
I don’t get what you are trying to do with this code.
Hidden inputs fields are not meant to be displayed (that why they are hidden)Do you actually want to display the code and not execute it on a page ?
Can you give me a link to the page where the code is executed ?Thanks
Forum: Plugins
In reply to: [Embed Video Thumbnail] This plugin breaks displaying PHP CodeHi @cheffie1 ,
You have an error in your code on this line :
<input type="hidden" name="amount" value="<?php echo $row['price'];€ ?>"/>
The “€” symbol should not be inside php tags, or at least between quotes.
You can try either :
<input type="hidden" name="amount" value="<?php echo $row['price'] . '€'; ?>"/>
or :
<input type="hidden" name="amount" value="<?php echo $row['price']; ?>€"/>
I did not get any error after correction.
Here is the whole code :
<h1>Your payment has been successful.</h1> <input type="hidden" name="item_name" value="<?php echo $row['name']; ?>"/> <input type="hidden" name="item_number" value="<?php echo $row['id']; ?>"/> <input type="hidden" name="amount" value="<?php echo $row['price']; ?>€"/>
Could you try this and let me know if it works ?
Best regards
Forum: Plugins
In reply to: [Embed Video Thumbnail] DailyMotion Videos in ACF FieldsHello,
You can use
ikevt_video_to_thumbnail
to trigger video replacement on ACF fields on display.Exemple :
$videoUri = get_field('your_custom_field_containing_video_uri'); echo apply_filters(‘ikevt_video_to_thumbnail’, $videoUri);
Best regards.
Forum: Plugins
In reply to: [Embed Video Thumbnail] Not working after last updateHello @luis515
Can you try removing plugin and reinstall 1.3.1 from wordpress plugin repository ?
1.3.1 should not break anything and work properly on any wordpress installation.Anyway, thanks for your feedback and for using my plugin !
Best regards.
Forum: Plugins
In reply to: [Embed Video Thumbnail] How does it wok?Hello @royalshop3
Once the plugin is activated and enabled, it automatically replace embed video links placed in posts body.
No more action is required.Did you encounter any issues using the plugin ?
Forum: Plugins
In reply to: [Embed Video Thumbnail] Redux Framework?Hello @twinsmagic
Redux Framework will be embed in the next release of the plugin and therefore it will not be required as a separated plugin anymore.
Best regards
Forum: Plugins
In reply to: [Embed Video Thumbnail] Thumbnails/source are wrongHi @markmck,
Thank you for your feedback.
There has been some improvements on embed video detection in the last version of the plugin.
Also i tested the plugin on your page’s html and everything seems ok.Can you try the last version of the plugin ? I think it would really decrease your homepage loading time.
If it’s still not working, can you send me by email the content of the page body you wrote in admin panel to contact@ikanaweb.com, so i can take a deeper look ?
Best regards