ravenousravendesign

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Landing Page Template Bugs #13099

    uhg, no way man. Mine looks like what I pasted above. What the heck…

    in reply to: Landing Page Template Bugs #13087

    I meant I tried this…
    remove_action( ‘genesis_footer_creds_text’, ‘genesischild_footer_creds_text’ );

    in reply to: Landing Page Template Bugs #13086

    Sort of. I copy and pasted what you gave me and it removed the header elements so I guess I just need the code to remove the copyright. I tried this and it didn’t work. what do you suggest? And thank you 🙂

    add_filter( ‘genesis_footer_creds_text’, ‘genesischild_footer_creds_text’ );

    <?php
    /**
    * This file adds the Landing template to the Epik Pro Theme.
    *
    * @author StudioPress
    * @package Epik
    * @subpackage Customizations
    */

    /*
    Template Name: Landing
    */

    //* Add custom body class to the head
    add_filter( ‘body_class’, ‘epik_add_body_class’ );
    function epik_add_body_class( $classes ) {

    $classes[] = ‘epik-landing’;
    return $classes;

    }

    // Forces Full Width Layout
    add_filter( ‘genesis_pre_get_option_site_layout’, ‘__genesis_return_full_width_content’ );

    //* Remove site header elements
    remove_action( ‘genesis_header’, ‘genesis_header_markup_open’, 5 );
    remove_action( ‘genesis_header’, ‘genesis_do_header’ );
    remove_action( ‘genesis_header’, ‘genesis_header_markup_close’, 15 );

    //* Remove navigation
    remove_action( ‘genesis_before_content_sidebar_wrap’, ‘genesis_do_nav’ );
    remove_action( ‘genesis_footer’, ‘genesis_do_subnav’, 7 );

    //* Remove breadcrumbs
    remove_action( ‘genesis_before_loop’, ‘genesis_do_breadcrumbs’ );

    //* Remove site footer widgets
    remove_action( ‘genesis_before_footer’, ‘genesis_footer_widget_areas’ );

    //* Remove site footer elements
    remove_action( ‘genesis_footer’, ‘genesis_footer_markup_open’, 5 );
    remove_action( ‘genesis_footer’, ‘genesis_do_footer’ );
    remove_action( ‘genesis_footer’, ‘genesis_footer_markup_close’, 15 );

    //* Run the Genesis loop
    genesis();
    <!–formatted–>`

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