X-Raym
Forum Replies Created
-
Forum: Plugins
In reply to: [WaveSurfer-WP] Ajust widthHi,
Per default, width is set to 100% of parent block element.
But you can add custom CSS rules for the block containing the waveforms, or the waveform + buttons should be enough ! ??
Good luck !Forum: Requests and Feedback
In reply to: How to search these forums?+1 for this features,
some plugins have dozens of support page, and it is impossible to search something into them, or even just add simple filters by tags.If you want some inspiration, GitHub has a great bug tracker. ??
Thanks for your consideration !
- This reply was modified 7 years, 12 months ago by X-Raym.
Forum: Plugins
In reply to: [BadgeOS] Badge for Publishing Custom Post TypeI made a a premium plugin for giving achievement based on custom post type publishing.
it is aimed to be moded (no step GUI), but it isn’t hard php stuff don’t worry ?? You only have to put your desired custom post type and achievement id.
If you are interested, you can take a look here:
[url=https://www.extremraym.com/en/downloads/badgeos-custom-post-types-step/]BadgeOS Custom Post Types Step Add-On / ExtremRaym[/url]Maybe it can help you,
Cheers !
Forum: Developing with WordPress
In reply to: transition_to_post seems to work only on ADD NEW postThanks for the detail explaination ??
It seems to work as expected ??
I just changed my debug function to a function which kill the page loading to be able to debug (the
ddd()
function for kint debugger), and from that, I adjusted my functions and hook so that it works as expected, following your advice ??Thanks again !
- This reply was modified 8 years ago by X-Raym.
Forum: Plugins
In reply to: [WaveSurfer-WP] Auto start and stop on hoverHi,
It should be possible by moding the wavesurfer-wp.js file, yes, but as your feature is very specific, I don’t plan to develop this feature or add it in the core.This .js file is written with jQuery, so the code for this feature would be a bit similar. If you are familiar with it, it should be good .
There is some comments in the file that will help you understand its logic.
You may also develop this feature as an external JS without modifying wavesurfer core, as wavesurfer variable is global, but this would require adding PHP functions to queue the scripts.
It may be a bit more difficult but it worth it, as it prevent modifying the core.If you need custom development, contact me on my website.
- This reply was modified 8 years, 1 month ago by X-Raym.
Forum: Plugins
In reply to: [WaveSurfer-WP] audio missing in certain casesI just released the v2.6.3, it should fix your problem,
Please let me know if it does !
Forum: Plugins
In reply to: [WaveSurfer-WP] audio missing in certain casesHi,
Please contact me from the contact page of my website so we can discuss about custom integration,
I am making some researches to find what could be the best way to allow user to have their own custom init rules.
Thanks !
Forum: Plugins
In reply to: [WaveSurfer-WP] audio missing in certain casesI am happy to be a premium user..
I’m confused, are you a premium user ?
Cause this is the support forum for the free version.- This reply was modified 8 years, 3 months ago by X-Raym.
Forum: Plugins
In reply to: [WaveSurfer-WP] audio missing in certain casesI just check,
and you can in fact write your own custom script to initiate wavesurfer=player in other cicumstances than page load.$j('.wavesurfer-button').click(function() { if ($j('#wavesurfer-player-0').find('canvas').length === 0) { WaveSurferInit(); } });
this for ex trigger the audio waveform render on a click of a button.
You can enqueue this code snippet and add your own initialization rule.
There is a lot of great tuts online about how to make and enqueue your own javascript ??So, wavesurfer-wp can be make ajax friendly, based on custom event. I can mark this issue as solved !
Good luck !
Forum: Plugins
In reply to: [WaveSurfer-WP] audio missing in certain casesWaveSurfer-WP used ot be AJAX friendly,
https://github.com/X-Raym/wavesurfer-wp/commit/554d3d2e982be9a20e8535d41986f50a6b07bacf
just replace the line 13 from https://github.com/X-Raym/wavesurfer-wp/commit/554d3d2e982be9a20e8535d41986f50a6b07bacf#diff-fb4c4e942ed96eb4988ff733d0afd3caR17 back to https://github.com/X-Raym/wavesurfer-wp/commit/554d3d2e982be9a20e8535d41986f50a6b07bacf#diff-fb4c4e942ed96eb4988ff733d0afd3caL13
from
$j(document).on('ready', function() {
back to
$j(document).on("ready ajaxComplete", function() {
However, this method would not work with WaveSurfer-WP-Premium.
A part moding from the user, I don’t see how I could define variable event that the users could hook to say “I also need the player to be initialize with this event”. AJaxComplete event doesn’t seem valid as WaveSurfer-WP-Premium is basd on Ajax events (contrary to the core version)…Hoping to find a way soon or later,
the code is open source so if any contributor have idea, it is welcome !Meanwhile, I have to leave this issue open until I find a way to resolve it from both the free and the premium version.
Thanks for your support !
Forum: Plugins
In reply to: [WaveSurfer-WP] audio missing in certain casesHi !
This sounds like a very specific problem, I didn’t succeed to reproduce,
do you have any link to provide ?
Do you have AJAX page loading ?
Have you tried by disabling all the plugins but WaveSurfer-WP ?
Thanks !
Forum: Plugins
In reply to: [Manual Related Posts] PHP Error: qtrans_convertURL does not existForum: Plugins
In reply to: [WaveSurfer-WP] I get an error code at randomFixed in v2.6.2.
Thanks for considering leaving a note or/and making a donation !
Forum: Plugins
In reply to: [WaveSurfer-WP] I get an error code at randomCan you please tell me what PHP version do you use ?
Can you please post one eg of shortcode that return this error ?Forum: Plugins
In reply to: [Manual Related Posts] PHP Error: qtrans_convertURL does not existActually I find the error, by looking at qTranslate-X code,
you should add a condition to tell that if qTranslate-X then the filter callback is qtranxf_convertURL.
This will resolve the issue. ??
- This reply was modified 8 years, 4 months ago by X-Raym.