Mal
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH WooCommerce Quick View] Code quality of this pluginThank you for your answer. At least you support this plugin, that’s a plus.
1,2,3) Ok, my point is that I wanted to download this plugin, see 5 files that actually create quick view as advertised and customize that plugin (to add AJAX, change styles etc.) But I can’t easily customize it if I see 230 files there…
I can’t agree that putting some big framework for such simple plugin is a “design choice”. There is no need for any framework there. It doesn’t do anything like you say.
I will rewrite this plugin or write my own from scratch for my needs. But if you simplified your plugin (tremendously) then you would have me as its user, I would happily purchase its premium version, advertise it and recommend to people that use my WC themes.
4) You’re right. But this page says the opposite: https://codex.wordpress.org/I18n_for_WordPress_Developers so I don’t know which to trust.
5) Ok.
6) Ok. (It would be nice to have this.)
7) It happens on the default theme. The JS files probably need to use scopes to solve this.
Forum: Plugins
In reply to: [YITH WooCommerce Quick View] Code quality of this pluginI just noticed another crucial error: Your plugin even manages to break jQuery. Activate it and type in
jQuery('body').lengthin the console. Now deactivate it and do the same.Please use scoping and don’t mess with jQuery and $. Otherwise the plugin is not usable.
Forum: Alpha/Beta/RC
In reply to: 4.0-beta1 Embeds previews missingUpdate:
After updating to 4.0-beta1-20140714 I can see YouTube/SoundCloud previews. However, it takes like 5-10 seconds to see them and there is no loading indicator in the meantime.There should be a loading indicator.
Also, when I try to edit inserted embed there is no preview in the media library window and it doesn’t appear after waiting 30 seconds so I assume it won’t appear.
Forum: Plugins
In reply to: [Front-end Editor for WordPress] CKEditor is superior to TinyMCETinyMCE bug #3:
<sub>and<sup>can be used together. In HTML that’s invalid, right? CKEditor = correct again.Relax. I didn’t mean that it breaks wp-options. In fact I think that it’s very unlikely that this or any other plugin would break wp-options in any way. How would a plugin do that if 99% of them are using simple update_option()?
By “properly” I only meant that I can’t use this plugin on WAMP, localhost, when I’m for instance on a plane or in a train because it requires Internet connection. This is invalid to me. Unnecessary complication.
My localhost is using IP address like: 123.123.0.1 where “123” are like 192 or other appropriate for the network that I’m currently in. Changes depending on LAN.
It still doesn’t work for me neither unfortunately.
Good advice: instead of asking average non-tech-savvy users if their wp-options database table is corrupted (which is very unlikely to happen), why not write this plugin properly?
Sorry to say that but it’s overcomplicated and many people think that it’s just broken. I really respect your work and I would love to use this plugin and recommend it to other WordPress users but let me say this straight: it needs to be corrected before this can happen. I hope that you’ll act upon this comment.
Good luck!
Google maps offer this option but I’m wondering if this plugin supports it as well.
Oh, I just noticed that you wrote it in the description. So, I have to install “Bootstrap” using some other plugin. Alright! I didn’t see this message because I installed your plugin from within admin panel. Sorry, this is resolved then!
I didn’t install Bootstrap. I only installed this plugin. It looks like the default WordPress theme is missing those ‘required files’ because I’m using that one.
Forum: Fixing WordPress
In reply to: Unwanted p tags in the editorI found an option to remove “wpautop” filer. What a relief! That’s simply AWESOME now without those <p> tags 🙂
Automatic <p> insertion is definitely not something I would ever want to use.
Forum: Plugins
In reply to: [OptionTree] OptionTree causes conflicts with other plugins and themesIt’s custom post type called “Portfolio” and it’s its [Portfolio > Add New] but not only there. Well, some of my clients reported this and I can confirm that indeed it does happen, so I’m reporting it to you 🙂
Like I said – it’s nothing crucial and we can live with that but if you have some spare time and you’d like to improve your nice plugin then it’s just another feedback from user.
Yes, I’m using 2.0.11.
Forum: Plugins
In reply to: [OptionTree] OptionTree causes conflicts with other plugins and themesRelax 🙂 Since I’m not a good coder I just show you what I see and it’s up to you to take a look at that or not. I really appreciate the plugin and the fact that it’s free LGPL work. Those issues are minor and easy to live with.
Two facts:
1) On “Add New Post” (custom post type) page #TB_window getstopwhich is in conflict with other plugins/themes that use Thick Box with default ID.
2) Colorpicker on the same page changes from dark skin to light.
Before: http://gyazo.com/73e0f34987d297c3faebb4c3c100672b
After: http://gyazo.com/54d24803a5a772d48ccee87e62f80629 (and color code field stops working).There are clearly at least two conflicts. As a side note none of the plugins (or theme) modifies anything on OT page. It’s just OT modifying something on other plugins’/themes’ pages.
I’m unfortunately not sure what exactly the code you mentioned above does but again – it’s just my kind and friendly remark. I’m not expecting you to do anything about it 🙂 I just noticed two issues and I report them – that’s all! Thanks for replies 🙂
Forum: Plugins
In reply to: [OptionTree] OptionTree causes conflicts with other plugins and themesThat’s not the only thing – it also changes style of colorpicker that the theme I use uses. It’s perhaps because it’s very common colorpicker. Unfortunately, it becomes partially broken after activating OT. It works but its style is wrong and I can’t type in color code manually.
Can you perhaps make plugin files load only on its sub-page? I’ve seen that WordPress suggests that in Codex just a few days ago and there was an example on how to make that happen.
It makes a lot of sense to use NAMESPACE for themes and plugins but sooo many people don’t do this (in this case both theme author and plugin author) and therefore CSS or JS is in conflict.
Forum: Plugins
In reply to: [OptionTree] OptionTree causes conflicts with other plugins and themesThe newest version of OT. When I deactivate it – everything returns back to normal.
JSFiddle: http://jsfiddle.net/metwG/
Before: http://img51.imageshack.us/img51/3241/normalcf.jpg
After: http://img15.imageshack.us/img15/781/aftervu.jpgForum: Fixing WordPress
In reply to: How to add hidden options page in admin panel?Thanks! I need to hide it for aesthetic purposes. I just need to move one menu to admin bar but I don’t need this one on the left side at all.
“If you register the menu with the correct permissions, only the administrator(s) will see it.”
– I think that’s true for all placements anyway.
Aren’t there any other ways to hide it? Like using “add_options_page()” but without location specified or something like that.