Deprecated: Function get_currentuserinfo is deprecated since version 4.5.0! Use wp_get_current_user() instead. in /var/www/html/wp-includes/functions.php on line 5383

thoughton

Forum Replies Created

Viewing 10 posts - 1 through 10 (of 15 total)
  • Author
    Posts
  • in reply to: Default to 'full width', instead of 'right sidebar'? #3677
    thoughton
    Participant

    Fantasitc! I copied lines 496-609 into my functions.php and everything works! New posts default to right sidebar, and new projects default to full width.

    (At first I used all 3 of your files, but that resulted in posts having the sidebar below the comments form.)

    All perfect now, cheers!

    in reply to: Default to 'full width', instead of 'right sidebar'? #3668
    thoughton
    Participant

    Sorry the above post is so long. Basically what I want to do is:

    if page is ‘add new project’ then
    ‘options’ => array(‘Full Width’,’Right Sidebar’,’Left Sidebar’
    else
    ‘options’ => array(‘Right Sidebar’,’Full Width’,’Left Sidebar’

    What if/else can I use to do that?

    Thanks

    in reply to: Default to 'full width', instead of 'right sidebar'? #3664
    thoughton
    Participant

    Okay I’ve fiddled around and got nowhere fast :)

    I’m trying something like this:

    if( get_post_type($post->ID) == 'project' ) {
    $kanso_sd_meta_box = array(
    'id' => 'post-layout-choice',
    'title' => 'Post Layout',
    'page' => 'post',
    'context' => 'side',
    'priority' => 'core',
    'fields' => array(
    array(
    'name' => 'Pick one:',
    'id' => $kanso_sd_prefix . 'post-layout',
    'type' => 'select',
    'options' => array('Full Width','Right Sidebar','Left Sidebar')
    )
    )
    );
    } else {
    $kanso_sd_meta_box = array(
    'id' => 'post-layout-choice',
    'title' => 'Post Layout',
    'page' => 'post',
    'context' => 'side',
    'priority' => 'core',
    'fields' => array(
    array(
    'name' => 'Pick one:',
    'id' => $kanso_sd_prefix . 'post-layout',
    'type' => 'select',
    'options' => array('Right Sidebar','Full Width','Left Sidebar')
    )
    )
    );
    }

    Obviously I’m doing something wrong :) Is there an if I can use to make the ‘options’ conditional? Thanks!

    • This reply was modified 9 years, 9 months ago by thoughton.
    • This reply was modified 9 years, 9 months ago by thoughton.
    in reply to: Argh, I've broken it :) #3661
    thoughton
    Participant

    Thanks Andrii,

    I’ve already tried fixing my problem using Simple WP Retina yesterday but it didn’t work.

    I also yesterday restored my local uploads folder via Time Machine, and re-uploaded the (non optimsed) images. Retina.js still goes crazy and removes everything!

    Anyway, I’ve run out of time and budget on this one. I will just comment out the retina.js call on line 19 of functions.php and leave the site as is. Most of the important bits are retina anyway, the logo, and the photo gallery featured images.

    Thanks for all your assistance!

    Tim

    in reply to: Default to 'full width', instead of 'right sidebar'? #3657
    thoughton
    Participant

    Hi Andrii,

    Thanks again for being so helpful!!!

    I tried out the new files, but I noticed it removes the ‘page layout’ box entirely. This also affects the ‘new post’ and ‘new pages’ pages, not only the ‘new project’.

    In the end I think I’ve managed to do what I want anyway. I just re-ordered the options on line 510 of functions.php. From this:

    'options' => array('Right Sidebar','Full Width','Left Sidebar')
    to this

    'options' => array('Full Width','Right Sidebar','Left Sidebar')

    This (so far!! haha) seems to work. I’m now looking into making it conditional so this only happens on the projects pages.

    Thanks again!!

    • This reply was modified 9 years, 9 months ago by thoughton.
    • This reply was modified 9 years, 9 months ago by thoughton.
    in reply to: Argh, I've broken it :) #3654
    thoughton
    Participant

    I was downloading images from the uploads folder, then using ImageOptim on my Mac, and reuploading them. I’ve done this before on other WP sites and everything seemed okay.

    Ideally I would like retina.js to work, but something has gone wrong with it. It is removing every image on the site, including all of the ones that don’t have a @2x version. Shouldn’t it ignore the ones that don’t have @2x versions? I’m pretty sure it used to work properly, but in the last week or so something has gone wrong and I can’t think what.

    in reply to: Argh, I've broken it :) #3643
    thoughton
    Participant

    In case it helps you with debugging I’ve discovered I can prevent the images vanishing if I delete retina.js

    in reply to: Default to 'full width', instead of 'right sidebar'? #3639
    thoughton
    Participant

    PS If it makes it any simpler I don’t need right or left sidebars at all on my projects page, it will be full-width all the time. If it’s easier completely removing the ‘Post Layout’ box would be fine with me.

    I do use right-sidebar on my news pages though.

    Thanks!

    • This reply was modified 9 years, 9 months ago by thoughton.
    in reply to: Default to 'full width', instead of 'right sidebar'? #3638
    thoughton
    Participant

    Hi Andrii,

    I’ve uploaded the 2 new files (header and single-project) but unfortunately they don’t seem to do anything. When I add a new project the Post Layout drop down still defaults to ‘Right Sidebar’, and if I go ahead and publish there is a sidebar on the right.

    Tim

    in reply to: Header shrink on scroll, control size #3597
    thoughton
    Participant

    Thanks Andrii!

Viewing 10 posts - 1 through 10 (of 15 total)