Pradeep Sonawane
Pradeep Sonawane
Create WordPress comments form below single post / page. Post comments using REST API.
Have pretty permalink structure for URLs. Make use of Vue Routers to support WordPress permalinks Post URLs - sitedomain/**%postname%** Page URLs - sitedomain/**%pagename%**
The default youtube codes are loaded all at once. Making it load youtube scripts on page load. Making it lazyload will reduce performance impact at the time of loading. Handle...
The settings page currently has different options for each fields - https://github.com/rtCamp/rt-optimizer/blob/main/includes/settings-page.php - [ ] Convert current settings to a single array of fields in one setting.
Integrate a pagespeed insights library that can give us real results or issues of the page. It can be done in following steps: - [ ] Identify the library that...
Google pagespeed insights mostly gives issue for image sizes. There is a good article here - https://danielbachhuber.com/solving-properly-size-images-wordpress/, which uses a tool to identify image sizes that need to be generated...
The plugin removes the emojis support by default. While this is good for website optimization and core web vitals. That also blocks emojis being rendered. https://github.com/wpcomvip/rtcamp2/blob/master/plugins/rt-scripts-optimizer/rt-scripts-optimizer.php#L293-L325 - [ ] Provide...
## Issue Some scripts have dependencies on other scripts. So if core script is not loaded for example `jquery`, then it causes Javascript error and breaks functionality. ## Possible solutions...