Title: nebin2010's Replies | WordPress.org

---

# nebin2010

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Popups] GenerateBlocks – missing CSS](https://wordpress.org/support/topic/generateblocks-missing-css/)
 *  [nebin2010](https://wordpress.org/support/users/nebin2010/)
 * (@nebin2010)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/generateblocks-missing-css/#post-15788243)
 * Hi there, I have had the same issue. Dont know if you still need help.
 * Add this code snippet to your functions.php or Snippet plugin. This should work
   for you like it did for me. Had to do some digging to see what the CPT was called.
 *     ```
       add_filter( 'generateblocks_do_content', function( $content ) {
           $args = array(
               'post_type' => 'adp-popup',
               // Other args if you need them.
           );
   
           $posts = get_posts( $args );
   
           foreach ( (array) $posts as $post ) {
               if ( isset( $post->post_content ) ) {
                   $content .= $post->post_content;
               }
           }
   
           return $content;
       } );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Help with Category Structure](https://wordpress.org/support/topic/help-with-category-structure/)
 *  Thread Starter [nebin2010](https://wordpress.org/support/users/nebin2010/)
 * (@nebin2010)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/help-with-category-structure/#post-11017837)
 * Any help with this please?

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