Pandasonic2
Forum Replies Created
-
On Monday I’ll go online with the new website and I’ll use your beta plugin. Is exactly what I needed. Do you think to keep this feature in next releases?
You’re great!!! It works perfectly.
The second question I would have ask to you is: where are stored setting? And you prevented the question and the problem.
So if insert define( ‘FDP_SKIP_DB_FOR_ARCHIVES’,true ); in wp_config avoid to store data in DB, is it right?
Thank you for the answer. No error (debug was already active). The question is simply: since tags are some hundreds it can’t correctly update the DB. Would be necessary to split tags with some filter, for example the first letter. So the user can update “A” tags, “B” tags and so on…
This is a good thing. I wasn’t the only to request this feature. Now I reverted to Imagify from Shortpixel since your plugin requires less DB resourcesI think that changing this parameter in class-who-load-url-task.php the preloading should be slower
usleep(apply_filters('wpoptimize_preload_delay', 500000));- This reply was modified 3 years, 7 months ago by Pandasonic2.
Forum: Fixing WordPress
In reply to: Remove subtitleSolved, found and removed the function in jnews theme
Forum: Fixing WordPress
In reply to: Remove subtitleThank you, I thought it was a native feature in wp.
Forum: Reviews
In reply to: [Autoptimize] Impressive!I tried the code locally and seems to be ok. I only had to deactivate lazy loading in perfmatters and move to lazy load in autoptimize. At difference than minify html the snippet doesn’t change perfmatters code in images.
I added some other changes in html code to validate in W3C because WP in “class-wp-styles” and “class-wp-scripts” respectively adds “text/css” and “text/javascript”.add_filter( ‘autoptimize_html_after_minify’,
function( $html ) {
return str_replace( ‘ />’, ‘>’, $html );
return str_replace( ‘type=\’text/javascript\”, ”, $html );
return str_replace( ‘type=\’text/css\”, ”, $html );
return str_replace( ‘/>’, ‘>’, $html );
}
);- This reply was modified 3 years, 7 months ago by Pandasonic2.
Forum: Reviews
In reply to: [Autoptimize] Impressive!Yes, I’d like. It’s always better to reduce the number of plugins installed, so I’ll remove the other one. Thank you.
- This reply was modified 3 years, 7 months ago by Pandasonic2.
Forum: Reviews
In reply to: [Autoptimize] Impressive!Minify Html (plugins/minify-html-markup/) has a very useful feature, it removes trailing slashes and is very useful to W3C actual standards validations. It even compresses more the code.
$buffer = str_replace( ' />', '>', $buffer );I think is very easy to introduce this feature in Autoptimize. Let me know if you do it.
- This reply was modified 3 years, 7 months ago by Pandasonic2.
It’s a nonsense anyway if I change in wp-config.php from debug false to debug true the error (in Query monitor) disappear…
Forum: Plugins
In reply to: [WP Telegram (Auto Post and Notifications)] Exclude private postThank you very much. It works!
- This reply was modified 4 years, 7 months ago by Pandasonic2.
Forum: Plugins
In reply to: [Cache Enabler] Number of page cached for minuteForum: Plugins
In reply to: [WP Super Cache] Function to delete cache for page onlyI’m interested too. How can I use that function?
Risolto
In theme.php occorre cambiareif (isset($theme_options[‘theme_posts’])) {
$filters = array();in
if (isset($theme_options[‘theme_posts’])) {
$filters = array(
‘orderby’ => ‘modified’,
‘order’ => ‘DESC’,
);- This reply was modified 5 years, 11 months ago by Pandasonic2.
- This reply was modified 5 years, 11 months ago by Pandasonic2.