Remove footer and blog from homepage

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by jordielindstrom, Dec 18, 2013.

  1. jordielindstrom

    jordielindstrom New Member

    Joined:
    Mar 2, 2012
    Messages:
    27
    Likes Received:
    0
    Hi Just want to know if I can use Custom CSS to remove the footer above where the first on the two footers at the bottom, the one above where the copyright should go and also the blog content. Can you provide how using the Custom CSS if possible. Thanks heaps.


     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,
    1.
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .footer_wrapper {
    display: none;
    }
     
    2.
    Go to index.php present in your theme directory and remove the code given below
    Code:
    <div class="feature_content_inner">
                            <div class="feature_content_inner_head">
        <?php if (inkthemes_get_option('inkthemes_blog_heading') != '') { ?>
                                    <h2><?php echo inkthemes_get_option('inkthemes_blog_heading'); ?></h2>
        <?php } else { ?>
                                    <h2>
            <?php _e('Show Your Latest Posts', 'salejunction'); ?>
                                    </h2>
        <?php } ?>
        <?php if (inkthemes_get_option('inkthemes_blog_desc') != '') { ?>
                                    <h6><?php echo inkthemes_get_option('inkthemes_blog_desc'); ?></h6>
        <?php } else { ?>
                                    <h6>
            <?php _e('Here you can showcase your latest blog and let users know about your recent activities.', 'salejunction'); ?>
                                    </h6>
        <?php } ?>
                            </div>
                            <ul class="feature_content_inner_box">
        <?php query_posts('showposts=3');
        if (have_posts()) : while (have_posts()) : the_post(); ?>
                                        <li>
                                            <div class="feature_content_inner_box1"><span class="f-date">
                <?php the_time('j') ?>
                                                </span><span class="f-month">
                <?php the_time('M') ?>
                                                </span>
                                                <h5><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
                <?php the_title(); ?>
                                                    </a></h5>
                <?php echo inkthemes_custom_trim_excerpt(15); ?> </div>
                                        </li>
            <?php endwhile;
        else: ?>
                                    <li>
                                        <div class="feature_content_inner_box1">
                                            <p>
            <?php _e('Youy have not posted any blog yet.', 'salejunction'); ?>
                                            </p>
                                        </div>
                                    </li>
        <?php endif; ?>
                            </ul>
                        </div>
    Check image for reference

    [​IMG]
     
    sooraj and amaconline like this.

Share This Page