Arunas Liuiza
Forum Replies Created
-
Forum: Plugins
In reply to: [Gust] API error: parsererror on new hostGlad to hear. I would need to see the Apache error.log file.
Forum: Plugins
In reply to: [Gust] API error: parsererror on new hostOk, on the other site WP Super Cache is the culprit. It is adding a line
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->to the output of everything and that makes Gust’s json unreadable. Make that message go away (by fixing WP Super Cache or getting rid of it completely) and things should run smoothly. If you use caching, make sure Gust is not being cached (by white-listing /gust/* and /api/*)On your personal site I see a 500 error on some API calls. Problem is, the errors are not detailed. I would need to see server log file to find actual error.
Forum: Plugins
In reply to: [Gust] API error: parsererror on new hostAccess would be perfect for debugging. If you could write to arunas (at) liuiza (dot) lt
Forum: Plugins
In reply to: [Gust] Obeying No-Post-Edithi,
Gust is meant as en editing platform, so uneditable pieces of content are not shown by design.
I’ll have to look into possible solutions for your problem. In the meantime, you should note, that wp-admin panel is still accessible if gust is enabled, so you could still link your authors there for the help and tutorials.Forum: Plugins
In reply to: [Gust] API error: parsererror on new hostHi, sorry for late reply. I am having trouble of replicating this so far. Could you please provide details about your system – what PHP version are you using, what other plugins are you using?
Forum: Plugins
In reply to: [Gust] API error: parsererror on new hostHi,
parsererror generally means there is some additional output on the API call response. could you give me a screenshot of the error?
Forum: Plugins
In reply to: [Gust] Support to attachment imageAdded in v0.4.0
Forum: Plugins
In reply to: [Gust] 404 errors when accessing CPTypes from Gustv0.4.0 supports CPTs, so this is resolved.
Forum: Plugins
In reply to: [Gust] 3 months without a single update :(As promised, v0.4.0 is out. Quite a few new things: PHP 5.2 support, CPT support, custom fields, post thumbnails, a bunch of bugfixes, etc. Please let me know if I broke anything in the process 😉
Forum: Plugins
In reply to: [Gust] 3 months without a single update :(Hi,
There will be an update. As it has been pointed out before, the original code is quite a mess, so I am now in the process of cleaning it up and making a better structure for later updates. I want to do that before I add any more features, as that would make for much more cleaning afterwards.
Forum: Plugins
In reply to: [tinyCoffee] WooCommerce Checkout?Hi,
By integrated you mean ‘using WooCommerce’ checkout system?
Forum: Plugins
In reply to: [tinyCoffee] Slider not visible and other bugsThe problem with your site is that your theme loads a second copy of jQuery and related scripts in the footer, and it does not do that in proper “WordPress way” – via wp_enqueue_script.
My plugin enqueues jQuery and after that loads a jQuery extension – noUiSlider. Your theme then loads a second copy of jQuery, which overrides the first one and drops noUiSlider in the process, so in the end you have jQuery, but no slider.
Solution: Removing line
<script type="text/javascript" src="http://www.incomemesh.com/wp-content/themes/codilight/js/jquery.js?ver=1.8.3"></script>
from your themes footer.php (or wherever it is put) should solve this problem (and probably for some other plugins, if they rely on jQuery extensions), and your theme should still be working the same way, as jQuery will be present. It is a bad practice to manually include a copy of jQuery in a theme/plugin. WordPress has jQuery, jQuery UI and a lot of other JavaScript libraries built-in and You should use those whenever possible. You can find documentation of wp_enqueue_script and a list of available libraries here: http://codex.wordpress.org/Function_Reference/wp_enqueue_scriptHope this helps, if not – please let me know again.
Forum: Reviews
In reply to: [tinyCoffee] CompatibilityHi, could you please give the names of the themes in question?
Forum: Plugins
In reply to: [Gust] Post not savedHi, thanks for the report.
I’ll try to replicate that and get back to you. I have a hunch it might be IIS related, as I haven’t tested on it before.
Forum: Plugins
In reply to: [Gust] 404 errors when accessing CPTypes from GustHi,
Custom post types and taxonomies are not supported yet. There is a bug in top menu, that still shows CPTs at the moment. It will be fixed in the next release. Sorry about that mix up.