Title: skydev2020's Replies | WordPress.org

---

# skydev2020

  [  ](https://wordpress.org/support/users/skydev2020/)

 *   [Profile](https://wordpress.org/support/users/skydev2020/)
 *   [Topics Started](https://wordpress.org/support/users/skydev2020/topics/)
 *   [Replies Created](https://wordpress.org/support/users/skydev2020/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/skydev2020/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/skydev2020/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/skydev2020/engagements/)
 *   [Favorites](https://wordpress.org/support/users/skydev2020/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/skydev2020/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/skydev2020/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment Forms for Paystack] It breaks the elementor form redirection](https://wordpress.org/support/topic/it-breaks-the-elementor-form-redirection/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/it-breaks-the-elementor-form-redirection/#post-15270124)
 * I found the reason.
    Uncaught TypeError: $(…).datepicker is not a function From
   paystack-forms.public.js
 *     ```
       $(".date-picker").datepicker({
                 dateFormat: "mm/dd/yy",
                 prevText: '<i class="fa fa-caret-left"></i>',
                 nextText: '<i class="fa fa-caret-right"></i>'
               });
       ```
   
 * Why do we have this error and how to solve it?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment Forms for Paystack] Load JS and Styles on specific page only](https://wordpress.org/support/topic/load-js-and-styles-on-specific-page-only-2/)
 *  [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/load-js-and-styles-on-specific-page-only-2/#post-15270121)
 * I get this error
    Uncaught TypeError: $(…).datepicker is not a function What 
   is the solution for this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment Forms for Paystack] It breaks the elementor form redirection](https://wordpress.org/support/topic/it-breaks-the-elementor-form-redirection/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/it-breaks-the-elementor-form-redirection/#post-15267779)
 * Looks like this is the reason.
 *     ```
       public function enqueue_scripts()
           {
               wp_enqueue_script('blockUI', plugin_dir_url(__FILE__) . 'js/jquery.blockUI.min.js', array('jquery'), $this->version, true, true);
               wp_enqueue_script('jquery-ui-core');
               wp_register_script('Paystack', 'https://js.paystack.co/v1/inline.js', false, '1');
               wp_enqueue_script('Paystack');
               wp_enqueue_script('paystack_frontend', plugin_dir_url(__FILE__) . 'js/paystack-forms-public.js', array('jquery'), $this->version, true, true);
               wp_localize_script('paystack_frontend', 'kkd_pff_settings', array('key' => Kkd_Pff_Paystack_Public::fetchPublicKey(), 'fee' => Kkd_Pff_Paystack_Public::fetchFeeSettings()), $this->version, true, true);
           }
       ```
   
    -  This reply was modified 4 years, 4 months ago by [skydev2020](https://wordpress.org/support/users/skydev2020/).
    -  This reply was modified 4 years, 4 months ago by [skydev2020](https://wordpress.org/support/users/skydev2020/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment Forms for Paystack] It breaks the elementor form redirection](https://wordpress.org/support/topic/it-breaks-the-elementor-form-redirection/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/it-breaks-the-elementor-form-redirection/#post-15266859)
 * I checked the PayStack Forms plugin code and it works if I disable this line.
   
   $this->loader->add_action(‘wp_enqueue_scripts’, $plugin_public, ‘enqueue_scripts’);
   in includes/class-paystack-forms.php define_public_hooks() function
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Access plugin php using wp-admin/admin.php url](https://wordpress.org/support/topic/access-plugin-php-using-wp-admin-admin-php-url/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years ago](https://wordpress.org/support/topic/access-plugin-php-using-wp-admin-admin-php-url/#post-14431975)
 * [@bcworkz](https://wordpress.org/support/users/bcworkz/) Thank you, it makes 
   very clear now.
    Regards
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Access plugin php using wp-admin/admin.php url](https://wordpress.org/support/topic/access-plugin-php-using-wp-admin-admin-php-url/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years ago](https://wordpress.org/support/topic/access-plugin-php-using-wp-admin-admin-php-url/#post-14427405)
 * [@bcworkz](https://wordpress.org/support/users/bcworkz/) Thanks for your explanation,
   I have experience in using `action` query string in the URL but I have never 
   thought it is related to hook.
    Thanks I will use action. Btw can you give me
   more info how to create route through /wp-admin/admin-post.php
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Asset CleanUp: Page Speed Booster] Work with W3 Total Cache & Autoptimize Plugin](https://wordpress.org/support/topic/work-with-w3-total-cache-autoptimize-plugin/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/work-with-w3-total-cache-autoptimize-plugin/#post-14279543)
 * hi Gabe.
    Thanks for your message. You are saying Asset Clean Up has higher priority
   than W3 Total Cache & Autoptimize?
 * And when you say combination is not ideal, does it mean W3 Total Cache + Asset
   Clean up use?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] converted to WebP is larger than original and has been deleted.](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/#post-14251660)
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] converted to WebP is larger than original and has been deleted.](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/#post-14251527)
 * it looks like working
    [https://prnt.sc/10zeh32](https://prnt.sc/10zeh32) Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] converted to WebP is larger than original and has been deleted.](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/#post-14251517)
 * Yes, I can do of course but regarding this screenshot [https://prnt.sc/10zdzvm](https://prnt.sc/10zdzvm)
   
   can you answer this is the expected behavior or not?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] converted to WebP is larger than original and has been deleted.](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/#post-14251508)
 * you mean this one?
    [https://prnt.sc/10zebgu](https://prnt.sc/10zebgu)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] converted to WebP is larger than original and has been deleted.](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/#post-14251503)
 * your answer to first question is clear to me.
    I am asking about the screenshot.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] converted to WebP is larger than original and has been deleted.](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/#post-14251492)
 * Yes, but couldn’t find the solution.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] converted to WebP is larger than original and has been deleted.](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/#post-14251470)
 * Thanks for quick reply.
    Can you check this screenshot please? [https://prnt.sc/10zdzvm](https://prnt.sc/10zdzvm)
   I noticed that one of my images are successfully converted. But when I open the
   image in chrome, it seems like original image is loaded not .webp version. According
   to my understanding the plugin will automatically loads webp version if it is
   available. FYI, my site is the multisite. Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Converter for Media - Optimize images | Convert WebP & AVIF] converted to WebP is larger than original and has been deleted.](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/)
 *  Thread Starter [skydev2020](https://wordpress.org/support/users/skydev2020/)
 * (@skydev2020)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/converted-to-webp-is-larger-than-original-and-has-been-deleted/#post-14251344)
 * But when I check in the network panel, it see the size has been decreased.
    converted
   to WebP is larger than original and has been deleted.”],”size”:{“before”:562554,”
   after”:451462}}

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/skydev2020/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/skydev2020/replies/page/2/?output_format=md)