Prafulla Kumar Sahu
Forum Replies Created
-
Forum: Plugins
In reply to: [Kirki Customizer Framework] How uploads/kirki-css is used?Thank you for this info.
Forum: Plugins
In reply to: [Flamingo] How to add support for new fieldI made it worked.
Forum: Plugins
In reply to: [Flamingo] SuggestionThis is done.
Forum: Plugins
In reply to: [Flamingo] SuggestionWith recent updates
flamingo_add_inbound
is able to do the job.Forum: Plugins
In reply to: [Flamingo] Issue regarding new flamingo_htmlize filterIt can be done with current filter, I did it with some modification and another filter to my function in my custom extension and it worked as expected.
so,
function flamingo_htmlize( $val ) { $result = ''; if ( is_array( $val ) ) { foreach ( $val as $v ) { $result .= sprintf( '<li>%s</li>', flamingo_htmlize( $v ) ); } $result = sprintf( '<ul>%s</ul>', $result ); } else { $result = wpautop( esc_html( (string) $val ) ); } return apply_filters( 'flamingo_htmlize', $result, $val ); }
is 100% correct.
- This reply was modified 7 years, 4 months ago by Prafulla Kumar Sahu.
- This reply was modified 7 years, 4 months ago by Prafulla Kumar Sahu.
- This reply was modified 7 years, 4 months ago by Prafulla Kumar Sahu.
Forum: Plugins
In reply to: [Autoptimize] Why auto optimize creates so large cache file?Thank you so much Frank.
Thank you so much Frank, lots of love <3.
Forum: Plugins
In reply to: [Autoptimize] Why auto optimize creates so large cache file?Thank you Frank, I gone through you blog for around 5/6 hrs and loved it. I would also like to know is there any way to separate cache generated by auto optimize from wp super cache? So that cache file related to only auto optimize will be removed and rest will remain as usual, is it possible? Will it harmful?
Forum: Plugins
In reply to: [Autoptimize] Why auto optimize creates so large cache file?Hi Frank, thank you for your kind reply again. I will follow your suggestion and report to you. In this time, I have gone through several pages of your blog and got about these plugins, I would like to know if I should move to any of them or there is any method to allow wp super cache to clear auto optimize cache in some interval keeping its own cache file safe. Will it be harmful, is it possible?
- This reply was modified 7 years, 4 months ago by Prafulla Kumar Sahu.
Forum: Plugins
In reply to: [Autoptimize] Why auto optimize creates so large cache file?I got this yourr blog post got some idea, but not able to solve it and also I would like to know more about it.
Hi Michal sorry about posting in multiple places, but I would like to know if there is any chance with ACF/ACF pro to achieve this. I understand it is very hard because I have already spend nearly 3days on this, but would still like to continue to achieve it. I will be much thankful to you if even you will give me some rough idea about the path I should cover to achieve this.
Forum: Plugins
In reply to: [Autoptimize] Why autooptimize is not optimizing few scriptsIn this time, I have tried adding defer to those scripts using
script_loader_tag
filter and now the scripts are not render blocking but interestingly the page speed remain same no improvement. I will try your suggestion and report to you.Forum: Plugins
In reply to: [Autoptimize] Why autooptimize is not optimizing few scriptsHi Frank, thank you for your reply again, but my question was reverse, the JS-file are render blocking on mobile and not in Desktop. Beside the theme there is also other script I have listed which are render blocking, so may be the issue is not the theme.
Forum: Plugins
In reply to: [Autoptimize] Why autooptimize is not optimizing few scriptsHi Frank, thank you so much for your kind reply. Can you give me more idea on the difference in mobile and desktop Google page speed result. As Google page speed does not think the scripts are render blocking for desktop but for mobile these are render blocking. Thank you again. ??
Forum: Plugins
In reply to: [Autoptimize] How this plugin is deciding the sequence?Sorry for late reply and thank you.