Title: Themezly's Replies | WordPress.org

---

# Themezly

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

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

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Allow Upload .vcf in WordPress 5.0.3](https://wordpress.org/support/topic/allow-upload-vcf-in-wordpress-5-0-3/)
 *  [Themezly](https://wordpress.org/support/users/themezly/)
 * (@themezly)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/allow-upload-vcf-in-wordpress-5-0-3/#post-11242641)
 * It is vcard now , without x-
 * [https://github.com/WordPress/WordPress/blob/6fd8080e7ee7599b36d4528f72a8ced612130b8c/wp-includes/class-phpmailer.php#L3600-L3601](https://github.com/WordPress/WordPress/blob/6fd8080e7ee7599b36d4528f72a8ced612130b8c/wp-includes/class-phpmailer.php#L3600-L3601)
 * so this works
 *     ```
       function _thz_enable_vcard_upload( $mime_types ){
         	$mime_types['vcf'] = 'text/vcard';
       	$mime_types['vcard'] = 'text/vcard';
         	return $mime_types;
       }
       add_filter('upload_mimes', '_thz_enable_vcard_upload' );
       ```
   
    -  This reply was modified 7 years, 6 months ago by [Themezly](https://wordpress.org/support/users/themezly/).
      Reason: code fix
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Classic Editor] Not working with 5.0 branch](https://wordpress.org/support/topic/not-working-with-5-0-branch/)
 *  Thread Starter [Themezly](https://wordpress.org/support/users/themezly/)
 * (@themezly)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/not-working-with-5-0-branch/#post-10814524)
 * Well that was timing 🙂
    No problem. I managed to find the filter and made gist
   in case others need it
 * [https://gist.github.com/danyj/ec00057550fd6f73995ab2f8fc8b729f](https://gist.github.com/danyj/ec00057550fd6f73995ab2f8fc8b729f)
    -  This reply was modified 7 years, 10 months ago by [Themezly](https://wordpress.org/support/users/themezly/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Adaptive Images for WordPress] Some images don’t work after activating plugin](https://wordpress.org/support/topic/some-images-dont-work-after-activating-update/)
 *  [Themezly](https://wordpress.org/support/users/themezly/)
 * (@themezly)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/some-images-dont-work-after-activating-update/#post-10013717)
 * Testing on wamp w10, php 7.2 , all images are 403, no bugs no errors
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Autoptimize] Nice work bud!](https://wordpress.org/support/topic/nice-work-bud/)
 *  Thread Starter [Themezly](https://wordpress.org/support/users/themezly/)
 * (@themezly)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/nice-work-bud/#post-8082923)
 * 🙂 thnx!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Autoptimize] Nice work bud!](https://wordpress.org/support/topic/nice-work-bud/)
 *  Thread Starter [Themezly](https://wordpress.org/support/users/themezly/)
 * (@themezly)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/nice-work-bud/#post-8082921)
 * I hope you dont mind this one,
    everything is perfect but the wait time for the
   first time pageload is bit slower which is understandable , what I did on my 
   joomla cache plugin ( it resembles your 99% ) was a scan pages button that lets
   admin scan all menu pages via ajax and this way initiates and eliminates that
   first time load Process is very simple , get all menu url’s loop and open those
   pages via ajax
 * here it is in action [http://screencast.com/t/5L8bpAH5](http://screencast.com/t/5L8bpAH5)
 * It would be great if you would have time to add something like this.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Autoptimize] Nice work bud!](https://wordpress.org/support/topic/nice-work-bud/)
 *  Thread Starter [Themezly](https://wordpress.org/support/users/themezly/)
 * (@themezly)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/nice-work-bud/#post-8082889)
 * Great bud , thnx much for clarifying!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Unyson] a good framework but some basic features are missing](https://wordpress.org/support/topic/a-good-framework-but-some-basic-features-are-missing/)
 *  [Themezly](https://wordpress.org/support/users/themezly/)
 * (@themezly)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/a-good-framework-but-some-basic-features-are-missing/#post-7990862)
 * Unyson is a framework for developing themes and primarily focused on simplicity
   and options to extend it. To add ID , class or anything you need , all you have
   to do is add an option type and output it in the view. It is a 10sec process.
   Here is my version of adding classes [http://prntscr.com/8jjlvr](http://prntscr.com/8jjlvr),
   this is the output, [http://prntscr.com/8jjktm](http://prntscr.com/8jjktm) .
   
   I am glad that dev team did not do this since my way of doing things might be
   different than others. They gave us an awesome framework and huge array of options
   to extend it. Don’t be afraid to get your hands dirty.

Viewing 7 replies - 1 through 7 (of 7 total)