• Resolved eeprom_one

    (@eeprom_one)


    Hi there,

    how can i import the css custom lines in my last version of Mesocolum Theme for WordPress?

    Thank you very much for the support and the great wordpress theme

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Richie KS

    (@rkcorp)

    as long as you do not reset the customizer option, it will stay even updated to latest version. just in case, copy paste the code into a .txt so you can re-paste it if anything go wrong.

    Thread Starter eeprom_one

    (@eeprom_one)

    aha, ok thank you Richie…

    when i updated the Theme, it works fine but with debuggin On i read this notice:

    Notice: Trying to get property of non-object in /homepages/17/d355962178/htdocs/ATUN-DE-TARIFA/wp-includes/nav-menu.php on line 754
    
    Notice: Trying to get property of non-object in /homepages/17/d355962178/htdocs/ATUN-DE-TARIFA/wp-includes/nav-menu.php on line 754
    
    Notice: Trying to get property of non-object in /homepages/17/d355962178/htdocs/ATUN-DE-TARIFA/wp-includes/nav-menu.php on line 758
    
    Notice: Trying to get property of non-object in /homepages/17/d355962178/htdocs/ATUN-DE-TARIFA/wp-includes/nav-menu.php on line 754
    
    Notice: Trying to get property of non-object in /homepages/17/d355962178/htdocs/ATUN-DE-TARIFA/wp-includes/nav-menu.php on line 754
    
    Notice: Trying to get property of non-object in /homepages/17/d355962178/htdocs/ATUN-DE-TARIFA/wp-includes/nav-menu.php on line 758

    I have this code in my nav-menu.php

    $menu_item->url = get_permalink( $menu_item->object_id );
    
    				$original_object = get_post( $menu_item->object_id );
    				/** This filter is documented in wp-includes/post-template.php */
    				$original_title = apply_filters( 'the_title', $original_object->post_title, $original_object->ID );
    
    				if ( '' === $original_title ) {
    					/* translators: %d: ID of a post */
    					$original_title = sprintf( __( '#%d (no title)' ), $original_object->ID );
    				}

    Thank you so much for your Theme and Support ??

    Thread Starter eeprom_one

    (@eeprom_one)

    ok i read this solution and its run ok! ??

    I get this error when there are no menus defined or no menus set for the location at Appearance->Menus. When that occurs wp_nav_menu uses a page walker fallback.

    The fallback (default) for wp_nav_menu is wp_walker_page
    which uses wp_page_menu
    which uses wp_list_pages
    which uses walk_page_tree
    which uses Walker_Page not Walker_Nav_Menu.
    And apparently the two walkers are not compatible. I don’t know why it doesn’t fail gracefully. That seems like a bug to me.

    With a menu set at wp-admin->Appearance->Menus, your code works.

    Theme Author Richie KS

    (@rkcorp)

    ok, thx, will revise the code in next ver.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How do i import my last custom css after updated theme (no-child)’ is closed to new replies.