Title: kcsck's Replies | WordPress.org

---

# kcsck

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Promo Code By CMSHelpLive] Form out of place](https://wordpress.org/support/topic/form-out-of-place/)
 *  [kcsck](https://wordpress.org/support/users/kcsck/)
 * (@kcsck)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/form-out-of-place/#post-5862823)
 * OK, I’ve got it! This is how I solved it:
 * Go to `index.php` in the plugin folder. At the end, you will find this:
 *     ```
       function Ultimate_promo_form($atts)
       {
       	 include 'ultimate_promo_form.php';
       }
       ```
   
 * Just add `ob_start();` before the `include` and `$output = ob_get_clean();return
   $output;` after it. This is the result:
 *     ```
       function Ultimate_promo_form($atts)
       {
        ob_start();
       	 include 'ultimate_promo_form.php';
       $output = ob_get_clean();
           return $output;
       }
       ```
   
 * And that’s it! It worked fine for me. Hope this helps. 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Promo Code By CMSHelpLive] Form out of place](https://wordpress.org/support/topic/form-out-of-place/)
 *  [kcsck](https://wordpress.org/support/users/kcsck/)
 * (@kcsck)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/form-out-of-place/#post-5862762)
 * The plugin works fine, but I have the same problem… :_(
 * I couldn’t find a solution yet. Do you think it’s about css?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Single event pages and qTranslate](https://wordpress.org/support/topic/single-event-pages-and-qtranslate/)
 *  Thread Starter [kcsck](https://wordpress.org/support/users/kcsck/)
 * (@kcsck)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/single-event-pages-and-qtranslate/#post-4617458)
 * Thanks for your answer. Anyway, I still don’t know what to do…

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