Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • I kind of got it working. I’m still playing with it. In Customize there are two Footer Bars, one listed in the main categories and one in the Widgets category.
    Add a widget First.
    In customizing click on Widgets category, there you will see another Footer Bar option, click on it and add a widget, give it some time to update and now you will see a new footer bar and your widget. Now if you go back to the main customizing categories and click on that Footer Bar the background image and colors will work.

    I haven’t figured how to remove the old footer its still there and how to get the widgets to align horizontally.

    If some one figures out the rest before I do please post ASAP.

    • This reply was modified 7 years, 2 months ago by EDFM.

    Same here. I have a feeling the old footer is still overriding it. Just gives you option to add background image and text colors, non of which works.

    • This reply was modified 7 years, 2 months ago by EDFM.
    • This reply was modified 7 years, 2 months ago by EDFM.

    When I add the above code in my child themed function.php my header height is reduced clipping logo and everything else at the top of the header. I have tried placing it before my footer code but still have the same results.

    <?php
    // Exit if accessed directly
    if ( !defined( ‘ABSPATH’ ) ) exit;

    // BEGIN ENQUEUE PARENT ACTION
    // AUTO GENERATED – Do not modify or remove comment markers above or below:

    if ( !function_exists( ‘chld_thm_cfg_parent_css’ ) ):
    function chld_thm_cfg_parent_css() {
    wp_enqueue_style( ‘chld_thm_cfg_parent’, trailingslashit( get_template_directory_uri() ) . ‘style.css’ );
    }
    endif;
    add_action( ‘wp_enqueue_scripts’, ‘chld_thm_cfg_parent_css’ );

    // END ENQUEUE PARENT ACTION

    add_action( ‘init’, ‘custom_remove_footer_credit’, 10 );

    function custom_remove_footer_credit () {
    remove_action( ‘storefront_footer’, ‘storefront_credit’, 20 );
    add_action( ‘storefront_footer’, ‘custom_storefront_credit’, 20 );
    }

    function custom_storefront_credit() {
    ?>
    <div class=”site-info”>
    © <?php echo get_bloginfo( ‘name’ ) . ‘EDFM LLC ‘ . get_the_date( ‘Y’ ); ?>
    </div><!– .site-info –>
    <?php
    }

    add_action( ‘init’, ‘jk_remove_storefront_header_search’ );
    function jk_remove_storefront_header_search() {
    remove_action( ‘storefront_header’, ‘storefront_product_search’, 40 );
    }

Viewing 3 replies - 1 through 3 (of 3 total)