Title: masteryo's Replies | WordPress.org

---

# masteryo

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder by SiteOrigin] $instance dosn't retrieve saved data](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/)
 *  Thread Starter [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/#post-4132301)
 * I was trying to figure out a solution , but I think the only solution is to retrieve
   data & widget form of opened dialog using ajax
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder by SiteOrigin] $instance dosn't retrieve saved data](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/)
 *  Thread Starter [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/#post-4132299)
 * Dear Greg Priday, When do you think the first bug will be fixed?
 * Cause if it’s going to take time , I’ll try to figure out work around
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder by SiteOrigin] $instance dosn't retrieve saved data](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/)
 *  Thread Starter [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/#post-4132284)
 * Huh? he is using your name that’s why I thought is you
    check it out [https://github.com/wp-plugins/siteorigin-panels](https://github.com/wp-plugins/siteorigin-panels)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder by SiteOrigin] $instance dosn't retrieve saved data](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/)
 *  Thread Starter [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/#post-4132279)
 * actually I’v been checking your page builder plugin in github every day looking
   for updates ,Really thank you for your great support
 * Don’t forget Please , let me know once you fix it
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder by SiteOrigin] $instance dosn't retrieve saved data](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/)
 *  Thread Starter [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/#post-4132165)
 * 🙂 , thanks
 * Please let me know once you fix the issue especially the first bug , Cause I’m
   not able to continue develop widgets without fixing it
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder by SiteOrigin] $instance dosn't retrieve saved data](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/)
 *  Thread Starter [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/#post-4132099)
 * Another Bug Found:
    if we enable “Copy Content to Post Content” I get always 
   php timeout
 *     ```
       // Update the post, removing this action first so we don't infinite loop.
               remove_action('save_post', 'siteorigin_panels_save_post');
               wp_update_post($post);
               add_action('save_post', 'siteorigin_panels_save_post', 10, 2);
       ```
   
 * I the above code didn’t fix stopping from infinite loop. If i remove it will 
   work fine
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder by SiteOrigin] $instance dosn't retrieve saved data](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/)
 *  Thread Starter [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/#post-4132067)
 * Btw , edit gallery In gallery widget is not working
 * error in firebug :
    ReferenceError: event is not defined event.preventDefault();
   panels.admin.media.js (line 83)
 * You forgot to add event in ” click: function(){“
    click: function(event){
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder by SiteOrigin] $instance dosn't retrieve saved data](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/)
 *  Thread Starter [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/instance-dosnt-retrieve-saved-data/#post-4132062)
 * it’s possible to retrieve data in form function , but we need panel id to do 
   that
    like this :
 *     ```
       $global $post
       $all_instances = get_post_meta($post->ID, 'panels_data', true);
       foreach($all_instances $as $i => $instances)
           if($this->panel_id == $i)
              $instance = $instances;
       ```
   
 * unfortunately , you are creating panel id in panels.admin.panels.js , so it’s
   hard to get panel id in php
    `formHtml = formHtml.replace( /\{\$id\}/g, newPanelId);`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.YTPlayer for background videos] Show a picture after video](https://wordpress.org/support/topic/show-a-picture-after-video/)
 *  [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/show-a-picture-after-video/#post-3626538)
 * I’ve updated to development version but the problem still there
 * Please check again : [http://demo37.cadr.sa/](http://demo37.cadr.sa/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.YTPlayer for background videos] Show a picture after video](https://wordpress.org/support/topic/show-a-picture-after-video/)
 *  [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/show-a-picture-after-video/#post-3626536)
 * I’m setting background after the video is finish , the problem is when the video
   is finish. Play icon from youtube it will appear for 1 second then it will hide.
 * How to hide the video once it finish without seeing youtube play icon ??
 * See the demo : [http://demo37.cadr.sa/](http://demo37.cadr.sa/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.YTPlayer for background videos] Only work on firefox](https://wordpress.org/support/topic/only-work-on-firefox/)
 *  Thread Starter [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/only-work-on-firefox/#post-3752833)
 * the problem has been fix , it was youtube premission
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.YTPlayer for background videos] Only work on firefox](https://wordpress.org/support/topic/only-work-on-firefox/)
 *  Thread Starter [masteryo](https://wordpress.org/support/users/masteryo/)
 * (@masteryo)
 * [13 years ago](https://wordpress.org/support/topic/only-work-on-firefox/#post-3752576)
 * So strange , I did nothing but now is working in firefox and Chrome
 * but not in internet explorer

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