Serge Boyko
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Enqueue] Need to set High Priority for CSSHi, I glad you like the plugin.
The thing is that in current version of the plugin all scripts are enqueued first and all styles are enqueued after already.
It means that allwp_enqueue_scripts()
functions are called beforewp_enqueue_styles()
functions.
Therefore, styles must be already prioritised as you need, but for some reason WordPress still loads CSS files before JS files.Can you explain me the difference if CSS file is loaded after JS?
In my experience there is no difference to put it before or after JS.
Maybe some modifications to your JS files could help.Forum: Plugins
In reply to: [WP Enqueue] Conditionals to include Not and RangeSorry for a late reply.
To be honest I was thinking about it, especially about ‘not page’ conditional.
I will probably take some time to update the plugin next month.1 – is not so critical, because you can add as many ‘page {id}’ as you want.
3 – never had a need for it, most sites are responsive now and use common CSS. But I think it wouldn’t be to hard to implement.Thanks for your feedback!
I will update the thread when plugin update is ready.Forum: Plugins
In reply to: [Contact Form 7] latest update very painfulI just can’t believe it, have they actually removed form translation selection? Or this setting is hidden somewhere else?
Do I need to manually translate text for every message now? BUT WHY!?
Forum: Plugins
In reply to: [WP Enqueue] Multisite errorHello and thanks for the feedback!
There was indeed a problem with a Multisite.
I have uploaded an updated version of the plugin with a Multisite support.Let me know if it works now.
Forum: Plugins
In reply to: [Polylang] Can't get access to ACF gallery field from a translated page.Try to turn off mediafiles translation in Polylang settings.
I decided not to use gallery field at all.
Let me know if it worked.Forum: Plugins
In reply to: [Polylang] Language widget not linking to translated category pageI couldn’t get it to work so I created a custom post type with hierarchy to achieve a desired effect.
I used the latest version of Polylang (the one that was released 3 days ago).Forum: Plugins
In reply to: [Polylang] Can't get access to ACF gallery field from a translated page.Calling
get_field('gallery', 'options', false);
on translated page returned array of image ids. Issue is probably connected with applying filters, but why only on the translated page?Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] some characters don't workI had a similar problem of not able to search if string contained a non-latin symbol.
The problem as I found out was in using strtolower() function instead of mb_strtolower() on line 23 in ajax-search-lite\search.php file.
It would be great if author fix it in future versions.