Title: Plugin updates
Last modified: August 21, 2016

---

# Plugin updates

 *  [Micemade](https://wordpress.org/support/users/anydog/)
 * (@anydog)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/)
 * Hi Syamil,
 * thank you very much for your great plugin.
 * I was wondering if you plan any updates for the plugin? Becauase, it was quite
   a while from your latest update, so I started to wonder if there are gonna be
   any … 🙂
 * One “technical” question – I created Row block using your column block to be 
   able to have non-resizable full-width block that can contain other blocks. It
   works great, except I can’t add column block inside – it starts some kind of 
   infinite loop … I would like to be able to add column inside the row – and off
   course, that columns can get other blocks.
 * I don’t want full solution – just maybe a pointer in right direction …
 * Thanks
 * [http://wordpress.org/plugins/aqua-page-builder/](http://wordpress.org/plugins/aqua-page-builder/)

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

 *  [Prelevic Milos](https://wordpress.org/support/users/prelevicm/)
 * (@prelevicm)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315439)
 * I have the same problem with infinite loop.
 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315440)
 * **[@prelevicm](https://wordpress.org/support/users/prelevicm/)**: It is impolite
   to interrupt another poster’s ongoing thread unless you are posting a solution
   or suggestion. It causes significant problems for the forum’s volunteers and 
   prevents us from being able to track issues by topic. Please post your own topic.
 *  [Prelevic Milos](https://wordpress.org/support/users/prelevicm/)
 * (@prelevicm)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315442)
 * [@esmi](https://wordpress.org/support/users/esmi/)
 * I’m sorry about that, I did not want to interrupt anyones thread, all I wanted
   is to confirm that I am having exact same issue and did not want to create duplicated
   topic.
 * Cheers
 *  [Prelevic Milos](https://wordpress.org/support/users/prelevicm/)
 * (@prelevicm)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315448)
 * [@anydog](https://wordpress.org/support/users/anydog/)
 * In the file aq-column-block.php there is this part of code
 *     ```
       if($blocks) {
   
       				foreach($blocks as $key => $child) {
       					global $aq_registered_blocks;
       					extract($child);
   
       					//get the block object
       					$block = $aq_registered_blocks[$id_base];
   
       					if($parent == $col_order) {
       						$block->form_callback($child);
       					}
       				}                                                                         
   
       			}
       ```
   
 * I think that is causing the problem, it is used to show blocks inside of the 
   column. I hope this is some pointer for you, if you solve this issue please share,
   I will do also 🙂
 *  Plugin Author [Syamil MJ](https://wordpress.org/support/users/syamilmj/)
 * (@syamilmj)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315502)
 * [@anydog](https://wordpress.org/support/users/anydog/) – Yes, there’s a planned
   update. Thank you for the support 🙂
 * Cheers
 *  Thread Starter [Micemade](https://wordpress.org/support/users/anydog/)
 * (@anydog)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315509)
 * [@prelevicm](https://wordpress.org/support/users/prelevicm/) – off course – I
   will try to solve this – I already had some short efforts in trying … no luck,
   though …
 * If and when I solve this, I will definitely post it here, I must contribute back
   to great WP community 🙂
 * (hvala kolega – sori na engleskom, ali da ipak mogu svi pratiti … ;))
 * [@syamil](https://wordpress.org/support/users/syamil/) – thanks for your answer,
   and also BIG thanks for all your work
 *  [Prelevic Milos](https://wordpress.org/support/users/prelevicm/)
 * (@prelevicm)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315510)
 * Kolega (nisam ni primetio :)) ),
 * This is what I have done to stop the infinite loop
 *     ```
       if($child['id_base'] !== 'aq_column_block'){
                      if($parent == $col_order) {
                         $block->form_callback($child);
                      }
        }
       ```
   
 * I have just placed if statement in aq_column_block.php and that is stopping it
   from infinite loop, but then I am having problem displaying modules inside the
   column, they display inside of it and create another one (same) outside of it.
   That is my next step for solving 🙂
 *  [Prelevic Milos](https://wordpress.org/support/users/prelevicm/)
 * (@prelevicm)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315511)
 * Kolega,
 * I think I have managed to find a solution.
    First of all you should add (edit)
   code from previous post to your aq_column_block.php, you will easily find it.
   I have just added ‘if($child[‘id_base’] !== ‘aq_column_block’){‘, it will stop
   infinite loop.
 * Now open your ‘Row block’ and (if you copied everything from column) you should
   find similar code to mine and similar to column code.
    It should look something
   like this
 *     ```
       if($child['id_base'] == 'aq_column_block'){
             if($parent == $col_order) {
                $block->form_callback($child);
              }
        }
       ```
   
 * This part of code will tell page builder that only $child[‘id_base’] with value
   aq_column_block will be foreached.
 * I think that should do the trick, if you have any problems let me know and if
   you run into any bugs please let me know so I can fix them on my plugin modification.
 * Ziveo 🙂
 *  Thread Starter [Micemade](https://wordpress.org/support/users/anydog/)
 * (@anydog)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315582)
 * @Prelevic Milos – Oh, I haven’t noticed your posts (I checked “Notify me of follow-
   up posts via email”, but I got no email ..) .
 * How did you edit “aq_column_block.php” – directly in plugin or did you extend
   the class ? Because, in case of plugin updates … you know.
 * I will definitely give this a try (I had other coding last couple of days) and,
   in case of issues will post here …
 * _A kako ćeš i primjetiti kad imam takav nick … 😉 Meni je “prelevic” iz tvog (
   bivšeg?) nicka (prelevicm) “zazvonio” poznato … 🙂 Hvala na ovome 🙂_
 *  [Prelevic Milos](https://wordpress.org/support/users/prelevicm/)
 * (@prelevicm)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315583)
 * [@anydog](https://wordpress.org/support/users/anydog/)
    I had some issues with
   saving modules when one (fullwidth) module contains 2 column modules and after
   that I add other column modules out of the fullwidth module. So, I have failed
   making fullwidth module and gave up on it 🙁
 * I hope you make succeed with it 🙂
 *  Thread Starter [Micemade](https://wordpress.org/support/users/anydog/)
 * (@anydog)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315607)
 * [@syamil](https://wordpress.org/support/users/syamil/) MJ – could you please 
   tell us ( if that’s not too much to ask 🙂 ), what are the major features/changes
   you are doing for the next version of AQPB ?
 * Thanks in advance …

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

The topic ‘Plugin updates’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/aqua-page-builder_fafafa.svg)
 * [Aqua Page Builder](https://wordpress.org/plugins/aqua-page-builder/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/aqua-page-builder/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/aqua-page-builder/)
 * [Active Topics](https://wordpress.org/support/plugin/aqua-page-builder/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/aqua-page-builder/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/aqua-page-builder/reviews/)

## Tags

 * [column](https://wordpress.org/support/topic-tag/column/)
 * [infinite loop](https://wordpress.org/support/topic-tag/infinite-loop/)
 * [row](https://wordpress.org/support/topic-tag/row/)

 * 11 replies
 * 4 participants
 * Last reply from: [Micemade](https://wordpress.org/support/users/anydog/)
 * Last activity: [12 years, 6 months ago](https://wordpress.org/support/topic/plugin-updates-7/#post-4315607)
 * Status: not resolved