Willy Bahuaud
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Deferred JavaScripts] Bad Bad Bad Bad Bad Bad Plugin !!Hello,
Sorry but I’ll insist: our plugin doesn’t write any file.
If you deactivate it but you’re problem is still here, it’s because a static cache (on the server side) is not flushed :-/Forum: Plugins
In reply to: [WP Twitter Wall] Feature requestHello,
Thanks for your feedback! ??
About your suggestions:1. it’s a bug (a wrong spelled function name :-/ ), so I’ll solve it
2. it’s on our plans (to remove old tweets while loading new ones)
3. if you reach the trending topics, people (or bots) will start to spam your wall. It’s very annoying. In order to prevent this, we chose to filter tweets with more than 3 hashtags.
4. I’ll inspect this (maybe a bug)
5. what was your feed? I’ll try with the same request in order to solve itForum: Plugins
In reply to: [Pastacode] Front End Enabled?Hello again,
I worked on a new version that allow commenting on front-end with Pastacode. Do you want to try Pastacode 2.0RC1 ?
Have a nice day!
Forum: Plugins
In reply to: [Pastacode] Front End Enabled?Hello,
Actually the plugin isn’t natively compatible with front-end commenting, but I have a short snippet to make this possible (if you’re using the default comment form). I’ll share this snippet as soon as I can!
I wrote another plugin to migrate from Crayon to Pastacode if you’re interested ??
- This reply was modified 8 years, 3 months ago by Willy Bahuaud.
There’s no permanent changes made my the plugin: deactivate it and it’s done. I think you just need to flush you static cache (you’re using w3 total cache, wp rocket or another cache plugin, didn’t you?)
Forum: Plugins
In reply to: [WP Twitter Wall] The plugin does not have a valid header.@easyrew Yes we will add this in the futur release, but actually I suggest you to use the wall in fullscreen mode.
Forum: Plugins
In reply to: [WP Twitter Wall] There are… wordingHello,
Thanks, we will update this (like: ‘2 hours ago’) ??
Forum: Plugins
In reply to: [WP Twitter Wall] The plugin does not have a valid header.Hello,
Version 1.3 solve the bug.
Sorry ??Forum: Plugins
In reply to: [WP Deferred JavaScripts] Does this support the new WordPress 4.6?Yes, there are no issues with WP4.6 ??
Forum: Plugins
In reply to: [WP Deferred JavaScripts] Scripts load without versionsActually we recommand to use the pluging SF Cache busting with pass query string version argument into the ressource name (for exemple jquery.js?ver=3=0 will become jquery.3.0.js). We think it’s more efficient because many proxies don’t cache ressources with query string.
To use this plugin, before installing it you need to add rules to htaccess (or nginx config file):
for apache and lightspeed<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.+)\.(\d+)\.(css|js)$ $1.$3 [L] </IfModule>
for nginx
if (!-e $request_filename) { rewrite ^/(.+)\.(\d+)\.(css|js)$ /$1.$3 break; }
More information (in french) here
??
Forum: Plugins
In reply to: [WP Deferred JavaScripts] bbPress compatibilityHello, bbPress print inline JavaScript requiring tinymce, jquery.ui, quicktags and more…
It test if tinymce is undefined (this is why you don’t get any error). I don’t know why buddyPress did this inline (and not in an external file…) :<script>tinyMCEPreInit = { baseURL: "", suffix: "", mceInit: {}, qtInit: {'bbp_reply_content':{id:"bbp_reply_content",buttons:"strong,em,link,block,del,img,ul,ol,li,code,close"}}, ref: {plugins:"",theme:"modern",language:""}, load_ext: function(url,lang){var sl=tinymce.ScriptLoader;sl.markDone(url+'/langs/'+lang+'.js');sl.markDone(url+'/langs/'+lang+'_dlg.js');} };</script> <script> var ajaxurl = "/wp-admin/admin-ajax.php"; ( function() { var init, id, $wrap; if ( typeof tinymce !== 'undefined' ) { // Fix RTL tinymce.on( 'addeditor', function( event ) { event.editor.rtl = event.editor.settings.rtl_ui || ( event.editor.editorManager && event.editor.editorManager.i18n && event.editor.editorManager.i18n.rtl ); }, true ); for ( id in tinyMCEPreInit.mceInit ) { init = tinyMCEPreInit.mceInit[id]; $wrap = tinymce.$( '#wp-' + id + '-wrap' ); if ( ( $wrap.hasClass( 'tmce-active' ) || ! tinyMCEPreInit.qtInit.hasOwnProperty( id ) ) && ! init.wp_skip_init ) { tinymce.init( init ); if ( ! window.wpActiveEditor ) { window.wpActiveEditor = id; } } } } if ( typeof quicktags !== 'undefined' ) { for ( id in tinyMCEPreInit.qtInit ) { quicktags( tinyMCEPreInit.qtInit[id] ); if ( ! window.wpActiveEditor ) { window.wpActiveEditor = id; } } } }());</script>
So, WP Deferred JavaScript is not natively compatible with this plugin. You can try to exclude tinymce from the defer process (using the plugin setting panel).
Revolution slider use a lot of inline scripts… without testing dependencies (like jquery and /revslider/public/assets/js/jquery.themepunch.revolution.min.js, maybe other script)… I don’t know which ones exactly… (I don’t use this plugin)
I suggest you to inspect the source code of your website (with WP deferred unactivate), to locate revolution slider’s scripts ??Hi!
The plugin Revolution slider doesn’t enqueue his scripts properly… so dependencies are not loaded when he try to execute it. I suggest you to use the exclude panel (you have to exclude the javascript files requiered by revolution slider)
??
Forum: Reviews
In reply to: [WP Deferred JavaScripts] Un-install is not clean (broken site)Hello,
Your site seem to be broken because some javascripts files (or tags) are not enqueued properly. So when when you defer theses files, errors appear…
The plugin didn’t modify any files… so you juste have to unactivate-it to reverses changes. If your website is still broken, it’s because you have a static cache (like w3 total cache, or another plugin…). I invite you to flush your website static cache files (in admin area).
Forum: Networking WordPress
In reply to: WP multisite on different servers.Maybe you can use HyperDB plugin? (which is behind WordPress.com)
You juste have to specify that some tables are stored on another MySQL server ??