Title: Sending header twice?
Last modified: August 21, 2016

---

# Sending header twice?

 *  Resolved [ditdotdat](https://wordpress.org/support/users/ditdotdat/)
 * (@ditdotdat)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/sending-header-twice/)
 * I am having a very intractable problem. I’m using the newest WordPress with a
   clean install of Twenty Fourteen and the most recent version of the plugin.
 * When I go to Support Tickets in my dashboard I can see the tickets that have 
   been opened but when I go to the Front-facing support page I can’t see anything.
 * If I turn on display_errors I get this:
 * Warning: Cannot modify header information – headers already sent by (output started
   at /telfordcourt.info/wp-content/themes/twentyfourteen/header.php:13) in /telfordcourt.
   info/wp-includes/pluggable.php on line 1121
 * (I’ve obscured some site data!)
 * You can see the non-working page at telfordcourt.info/trial
 * Any ideas?
 * [https://wordpress.org/plugins/key4ce-osticket-bridge/](https://wordpress.org/plugins/key4ce-osticket-bridge/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [m.tiggelaar](https://wordpress.org/support/users/mtiggelaar/)
 * (@mtiggelaar)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/sending-header-twice/#post-4995571)
 * Hello,
 * There’s indeed some theme compatability issues (mainly due to shortcodes not 
   yet being impletemented).
 * What you can do is:
 * Templates/header.php
 *     ```
       <?php
       /**
        * This is the header template that displays in all pages.
        *
        * Please note: this is the WordPress constructed page layout for theme
        * (Twenty_Fourteen) and you maybe using a different theme.
        *
        * You can look in your theme's main folder for the (page.php) file
        * and copy over the following below with it's header's div's
        *
        * key4ce-osticket-bridge uses (Twenty_Fourteen) theme for all testing..
        *
        * @package WordPress
        * @subpackage Twenty_Fourteen
        * @since Twenty Fourteen 1.0
        */
   
       get_header(); 
   
       ?>
       ```
   
 * and in:
    templates/footer.php:
 *     ```
       <?php
       /**
        * This is the footer template that displays in all pages.
        *
        * Please note: this is the WordPress constructed page layout for theme
        * (Twenty_Fourteen) and you maybe using a different theme.
        *
        * You can look in your theme's main folder for the (page.php) file
        * and copy over the following below with it's footers's div's
        *
        * key4ce-osticket-bridge uses (Twenty_Fourteen) theme for all testing..
        *
        * @package WordPress
        * @subpackage Twenty_Fourteen
        * @since Twenty Fourteen 1.0
        */
   
        get_footer();
       ?>
       ```
   
 * Once thats done i still see an issue with the sidepar over flowing
    You can either
   set zindex for the div’s OR apply some margins to the ost-container:
 * in the plugin file:
    css/style.css
 * search for:
    #ost_container
 * change
    `margin: 20px 20px 20px 20px;` into: `margin: 20px 20px 20px 240px;`
 * Think that should help a little.
 * Regards,
    Marco

Viewing 1 replies (of 1 total)

The topic ‘Sending header twice?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/key4ce-osticket-bridge_dddede.svg)
 * [Key4ce osTicket Bridge](https://wordpress.org/plugins/key4ce-osticket-bridge/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/key4ce-osticket-bridge/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/key4ce-osticket-bridge/)
 * [Active Topics](https://wordpress.org/support/plugin/key4ce-osticket-bridge/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/key4ce-osticket-bridge/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/key4ce-osticket-bridge/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [m.tiggelaar](https://wordpress.org/support/users/mtiggelaar/)
 * Last activity: [11 years, 11 months ago](https://wordpress.org/support/topic/sending-header-twice/#post-4995571)
 * Status: resolved