zavaboy
Forum Replies Created
-
Forum: Plugins
In reply to: [Challonge] Plugin Dead?First off, I don’t want to understate how much I appreciate your support. Thank you!
The state of things at the moment has a lot to be desired. I want to assure you, I want to get back to developing this plugin. It was a nice hobby and it was pretty rewarding seeing people using it and contributing to it.
There are many reasons I haven’t been as active as I would like to be. A lot has changed in my personal life that has caused this project (among others) to fall off to the side because I no longer have the time for it. As they say, there are bigger fish to fry. It’s a priority thing, not a lack of interest thing.
For the foreseeable future, this project will remain in the void. When I have time for hobbies like this again, I will consider reviving this project, giving it new life. In the meantime, anyone with the proper programming skillset may modify and distribute it according to the MIT license included with it, hopefully to make it better for everyone.
I know this isn’t what you were hoping for, but to be truthful, I’m right there with you. I really hope opportunities to continue this project show up soon. I’m confident they will show up, I’m just unsure when.
Thanks again for all your patience and support! ??
Forum: Plugins
In reply to: [Challonge] Date formatThe date format used is whatever you set in your general WordPress settings:
Settings → General → Date FormatHTH
Forum: Plugins
In reply to: [Challonge] challonge live bracket not showing due to insecure connectionI’m glad you got it resolved! ??
May you please share the lines you added to your .htaccess so it may help out someone else experiencing the same problem? (Also, I’m curious.)
Thanks!
Forum: Plugins
In reply to: [Challonge] challonge live bracket not showing due to insecure connectionIt sounds like this issue here:
https://www.ads-software.com/support/topic/iframe-displaying-blank-content/I give directions in that thread on how to resolve it. Please let me know if that doesn’t work.
Also, I’ll note that this will be resolved in the next update.
Thanks for your feedback! ??
Forum: Plugins
In reply to: [Challonge] No API Key! Set one.That is a bit odd. :/
Please double-check your API key in your settings and make sure it matches your current API key on your Challonge account exactly.
The API key input field has validation on it. What does it say when your API key is entered?
Try clearing the API key, saving, then entering it again. I don’t expect that to fix the issue, but it’s worth a try.
Another suggestion would be to generate a new API key on Challonge and see if that works.
Sorry for the inconvenience this is causing. Thanks for the feedback and I hope I’ve been some help. ??
Forum: Plugins
In reply to: [Challonge] Blank page@sjorsmetz, please try the solution I offer here:
https://www.ads-software.com/support/topic/iframe-displaying-blank-content/Sorry, I forgot about that one. Like I said in that topic, this will be fixed in the next update. With more and more sites going secure, it will become a very common issue until I release the next update.
HTH
Forum: Plugins
In reply to: [Challonge] Blank pageThe only instance I know of this issue is when you have too few participants in your tournament bracket. From memory, I believe you need at least two participants in the bracket before it shows anything.
If this was not the case for @pytchoun, I’d like to know what the problem was and how they fixed it.
HTH
Cheers! ??
Forum: Reviews
In reply to: [Challonge] Nice plugin! need some help too.You will have to ask the fine folks at Challonge. The ads are not handled by this plugin, so I can not help you with them.
Forum: Reviews
In reply to: [Challonge] Nice plugin! need some help too.Thanks for your feedback! ??
Ads are handled by Challonge and not this plugin. You will have to pay for Challonge Premier in order to remove ads.
Forum: Plugins
In reply to: [Challonge] iframe displaying blank contentThanks for the feedback! ??
To allow the iframe to load HTTPS:
Search forhttp:
in jquery.challonge.min.js and remove it. It should look like this now:
...+".":"";return"//"+t+"challonge.com/"+...
Sorry for the inconvenience. This will be fixed in the next update.
HTH
Forum: Plugins
In reply to: [Challonge] Challonge Sign up not workingI’m going to mark this topic resolved because it is a duplicate of:
https://www.ads-software.com/support/topic/challonge-sign-up/Please continue discussion there.
Thank you! ??
Forum: Plugins
In reply to: [Challonge] Challonge Sign upMy apologies, I’ve been preoccupied with other projects as of late. I’ll try to get back to working on this plugin this weekend.
Are you using one of WordPress’s default themes? If not, does the Challonge plugin work when using an default theme?
Most issues now are usually conflicts with other themes or plugins. If the Challonge plugin works nicely on a clean WP install, but not so well with all your themes and plugins installed, then there must be a conflict. If you could narrow down which theme or plugin it may be, that could help me tremendously on getting the issue resolved, or at very least identified.
Thank you for the feedback! ??
Forum: Plugins
In reply to: [Challonge] widget signup buttonNice detective work! ?? That makes sense now that you mention it.
Forum: Plugins
In reply to: [Challonge] widget signup button$pmisc[0]
will be equal to a 32 character string or null. The first condition is met if it’s null and if it’s a string,$this->oLnk->usrkey
must match it to meet the second condition. If you look a little higher up in the code, you will find$this->oLnk->usrkey
should be true and not a string unless you are a logged in.// User key hash if ( is_user_logged_in() && current_user_can( 'challonge_signup' ) ) $this->oLnk->usrkey = md5( $tourny->url . ' ' . $this->oUsr->user_login . ' <' . $this->oUsr->user_email . '>' ); // Shows signup elseif ( ! is_user_logged_in() && $this->aOptions['public_widget_signup'] ) $this->oLnk->usrkey = true; // Shows signup to login else $this->oLnk->usrkey = false; // Shows nothing
There may be an error happening somewhere there causing
$this->oLnk->usrkey
to have an incorrect value.I remember there were some challenges involved with checking valid logins over AJAX, perhaps I’ve forgotten something.
I will try more testing when I have a chance later today.
Thanks for your help! It is appreciated. ??
Forum: Plugins
In reply to: [Challonge] widget signup buttonThanks for confirming this! I will take another look at this issue.