• I am not sure if this is the right place to post ??
    Im using edsbootstrap theme and I have notice that contact info on header options doesn’t show up. inside lite theme option.
    here is what i found buggy..

    problem—– class-customize.php
    $manager->add_control(‘edsbootstrap_theme_options_show_top’, array(
    ‘label’ => __( ‘Show Contact Info on Header’, ‘edsbootstrap’ ),
    ‘section’ => ‘edsbootstrap_options’,
    ‘settings’ => ‘edsbootstrap_theme_options_contact_info’,
    ‘type’ => ‘checkbox’,
    ) );

    Solution——
    $manager->add_control(‘edsbootstrap_theme_options_contact_info’, array(
    ‘label’ => __( ‘Show Contact Info on Header’, ‘edsbootstrap’ ),
    ‘section’ => ‘edsbootstrap_options’,
    ‘settings’ => ‘edsbootstrap_theme_options_contact_info’,
    ‘type’ => ‘checkbox’,
    ) );

  • The topic ‘Contact info on header not showing’ is closed to new replies.