• Hey all,

    I have the Tasty theme by whalesalad. It is a fixed width (400) two column theme. I want to make a full page template for my forum (it’s squished into 400 pixels). I have created and uploaded a copy of my original page template and have been tinkering, but I cannot find how the code is calling the sidebar.

    Can anyone provide any pointers? I know it is frowned upon to paste chunks of code on here, so the site is http://www.sausagemama.com

    I can post any parts of the code that are needed. Even if someone can tell me where in the code the side bar is being called, that would be very helpful.

Viewing 3 replies - 1 through 3 (of 3 total)
  • I can’t give you any specific info about a commercial theme that I can’t download and look at the code of the theme. If you want specific info, you’d have to contact the theme seller.

    However, your page template should have a line of code like this that you can delete to remove the sidebar from that page:

    <?php get_sidebar(); ?>

    Once you remove the sidebar, you can edit this bit of your stylesheet to make the main column full width:

    #wrapper #content {
    display:inline;
    width:500px;
    }

    Change it to look like this:

    #wrapper #content {
    display:inline;
    width:760px;
    }
    Thread Starter whatistopat

    (@whatistopat)

    Thanks for replying JLeuze. The thing is I have emailed the creator of the theme three times with no response over a month, and sent him a direct facebook message with no response over the last week. I understand that publishing his code is bad for his business, but so is ignoring me.

    Is there an alternate way to call the sidebar in PHP? Because I have checked every page of the code and cannot find reference to the sidebar except for the stylesheet that mentions the sidebar is terms of “wrapper” and margins and such, not actually calling it. I have also checked the footer and header, no dice.

    Is it possible to just send you some code for you to take a look at? As I said, I have tried to contact the seller repeatedly.

    That’s too bad, not a good way to run a business. I’m sure anyone reading this thread will think twice before buying any themes from that developer…

    I wouldn’t worry to much about sharing a bit of the code. Sharing the whole theme without the author’s permission might have issues because of a different license on the JavaScript or images. But technically the PHP code of any WordPress theme or plugin is open source and can be freely shared.

    If you want to email me your custom page template, I can tell you how the sidebar is being loaded so that you can remove it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Full Page Template on Two Column Theme’ is closed to new replies.