Viewing 15 replies - 1 through 15 (of 35 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Did you update the theme as well?

    Thread Starter Jackie Chan

    (@jackie-chan)

    Not that i can remember, however there is no update available

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    That topic unfortunately doesn’t mention anything about a Child Theme.
    Modifications to themes’ files will erase once the theme updates.

    I would re-do that thread’s image solution but within a Child Themed environment.

    Thread Starter Jackie Chan

    (@jackie-chan)

    Sorry that may have been the wrong support post, i have this set up in a child theme which still exists however since the update the child theme is no longer active, how can i get the child theme to work again?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Is there still an option to activate it within the dashboard?

    Thread Starter Jackie Chan

    (@jackie-chan)

    Its still active through Appearance > Themes
    Sorry i wasn’t very clear, by ‘no longer Active’ i ment its no longer working.

    Below is my child themes code (which worked fine before the 3.5 update)

    @charset "UTF-8";
    /* CSS Document */
    /*
    Theme Name: bp-default
    Theme URI: http://example.org/themes/dusk/
    Description: Dark theme for BuddyPress.
    Version: 1.0
    Author: John Doe
    Author URI: http://example.org/
    Template: bp-default
    Tags: blue, buddypress, custom-background, custom-header, custom-menu, editor-style, featured-image-header, featured-images, fixed-width, light, right-sidebar, rtl-language-support, sticky-post, threaded-comments, translation-ready, two-columns, white
    */
    
    #logo a{
     display:block;
     float:left;
     width: (160px);
     height: (94px);
     background:url(http://www.releasethereal.com/wp-content/uploads/2012/08/RTR-logo2click.png) no-repeat 0 0;
     text-indent:-999em;
    }
    
    <a id="logo" href="www.releasethereal.com" class="linkedImage">
    #header {
    background: url(http://www.releasethereal.com/wp-content/uploads/2012/06/Header-Workerwithout-line.png)0 top no-repeat;}
    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try replacing that code with this;

    @charset "UTF-8";
    /* CSS Document */
    /*
    Theme Name: bp-default
    Theme URI: http://example.org/themes/dusk/
    Description: Dark theme for BuddyPress.
    Version: 1.0
    Author: John Doe
    Author URI: http://example.org/
    Template: bp-default
    Tags: blue, buddypress, custom-background, custom-header, custom-menu, editor-style, featured-image-header, featured-images, fixed-width, light, right-sidebar, rtl-language-support, sticky-post, threaded-comments, translation-ready, two-columns, white
    */
    
    #logo a{
     display: block;
     float: left;
     width: 160px;
     height: 94px;
     background:url(http://www.releasethereal.com/wp-content/uploads/2012/08/RTR-logo2click.png) no-repeat 0 0;
     text-indent:-999em;
    }
    
    /*<a id="logo" href="www.releasethereal.com" class="linkedImage">*/
    #header {
     background: url(http://www.releasethereal.com/wp-content/uploads/2012/06/Header-Workerwithout-line.png) 0 top no-repeat;
    }

    It also seems like you’re missing an @import code line, to grab the parent theme’s CSS.

    Thread Starter Jackie Chan

    (@jackie-chan)

    Pasted your code still no luck, how do i add an @import code line?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Codex’ Child Theme guide provides a nice example of how your style.css file should look like http://codex.wordpress.org/Child_Themes#Example_of_a_basic_Child_Theme

    Me Too! None of my images show up since update to 3.5. I’m a newby and I don’t understand Andrew Nevins’ suggestions about child themes.
    I’ve been struggling with this for a month now. Could I get some (simple to understand) help, please? http://www.critnick.com

    Thread Starter Jackie Chan

    (@jackie-chan)

    Thanks for your help, i had to activate the Parent Theme which solved the problem,

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    And Thank you, Jackie Chan for contributing to the WordPress.org community. Sharing your problems really helps others who experience the same issues.

    Thread Starter Jackie Chan

    (@jackie-chan)

    Ahh i spoke to soon! When i activated the parent theme it had just changed the header to one which had the logo on already, but i need the logo to hyperlink to the home page.

    I just tried this code still no luck

    @charset "UTF-8";
    /* CSS Document */
    /*
    Theme Name: bp-default
    Theme URI: http://example.org/themes/dusk/
    Description: Dark theme for BuddyPress.
    Version: 1.0
    Author: John Doe
    Author URI: http://example.org/
    Template: bp-default
    Tags: blue, buddypress, custom-background, custom-header, custom-menu, editor-style, featured-image-header, featured-images, fixed-width, light, right-sidebar, rtl-language-support, sticky-post, threaded-comments, translation-ready, two-columns, white
    */
    
    @import url ("www.releasethereal.com/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/style.css");
    
    #logo a{
     display: block;
     float: left;
     width: 160px;
     height: 94px;
     background:url(http://www.releasethereal.com/wp-content/uploads/2012/08/RTR-logo2click.png) no-repeat 0 0;
     text-indent:-999em;
    }
    
    /*<a id="logo" href="www.releasethereal.com" class="linkedImage">*/
    #header {
     background: url(http://www.releasethereal.com/wp-content/uploads/2012/06/Header-Workerwithout-line.png) 0 top no-repeat;
    }
    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    This sounds like something you need to add in your Child Theme (therefore activate the Child Theme again) header.php file.

    Can you use PasteBin to hold your header.php code, then link us the PasteBin’d page?

    Thread Starter Jackie Chan

    (@jackie-chan)

    Yes i can, i just signed up and pasted the code how can i share the page with you?

Viewing 15 replies - 1 through 15 (of 35 total)
  • The topic ‘Image vanished since 3.5 update’ is closed to new replies.