Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter mikkai

    (@mikkai)

    Already figured it out thank you!

    Thread Starter mikkai

    (@mikkai)

    Thanks so much! I appreciate the help!

    Okay fixed the easing slider, now loading my pics!

    If yours is in the “loading state” jQuery is most likely loading twice and you need to remove this from the Easing Slider file: easing-slider/easingslider.php. Can be found in your admin-plugins-editor.

    The code I removed is:

    jQuery.noConflict();

    and it works now! Hope this helps someone also!

    I changed some coding in the front=page.php file which removed “home top feature image” Here is my php file snippet so you can compare it to yours. Gives you can get an idea of what you need to change in your theme….`
    <div class=”slides_container col-full” >

    <div class=”” >
    <div class=””>
    <?php if ( inkthemes_get_option(‘colorway_slideheading1’) !=” ) {?>
    <h2 class=”title”><a href=”<?php echo inkthemes_get_option(‘colorway_slidelink1’); ?>”><?php echo inkthemes_get_option(‘colorway_slideheading1’); ?></a></h2>
    <?php } else { ?>
    <h2 class=”title”><a href=”#”></a></h2>
    <?php } ?>
    <?php if ( inkthemes_get_option(‘colorway_slidedescription1’) !=” ) {?>
    <p><?php echo inkthemes_get_option(‘colorway_slidedescription1’); ?></p>
    <?php } else { ?>

    <?php } ?>
    </div>
    <?php if (function_exists(“easing_slider”)){ easing_slider(); }; ?>
    <!– /.slide-content –>
    <?php if ( inkthemes_get_option(‘colorway_slideimage1’) !=” ) {?>
    <div class=”slide-image fl”><img src=”<?php echo inkthemes_get_option(‘colorway_slideimage1’); ?>” class=”slide-img” alt=”Slide 1″/> </div>
    `

    As for the slider issue, I have it up on the site, but its permanently in the “loading” state. You can see where I placed the “easing slider” code in there. On my webapge, it sits where the Top header USED to be. If I get the slider to load I will update!

    Hope this helps!!

    Well, my bad then.

    I figured out how to remove the Home Top Feature Heading.

    Remove the following from the front-page.php file in your theme.

    <!-- /.slide-content -->
    			<?php if ( inkthemes_get_option('colorway_slideimage1') !='' ) {?>
                <div class="slide-image fl"><img  src="<?php echo inkthemes_get_option('colorway_slideimage1'); ?>" class="slide-img" alt="Slide 1"/> </div>
    			 <?php } else { ?>
    			 <div class="slide-image fl"><img  src="<?php echo get_template_directory_uri(); ?>/images/slide-img-1.jpg" class="slide-img" alt="Slide 1"/> </div>
    			 <?php } ?>
                <!-- /.slide-image -->

    [Please post code snippets between backticks or use the code button.]

    If you want to remove the text within that header you will have to remove that also in the front-page.php file. But you can obviously change this text in your theme options.

    I’m trying to figure that out also. Want to remove the main header picture and add a slider. Cannot find a way to do this. Anyone have any suggestions with in addition?

    Thanks in advance!

    Thread Starter mikkai

    (@mikkai)

    If anyone is looking for a answer for this you plug the following in your ‘index.php’ file. It replaces all the thumbnails on your homepage that are posts into pages! AND excludes pages you do not want on your homepage; like ‘about me’, or ‘contact us’. You just have to specify in the code what pages you want excluded.

    <?php // Retrieve only Pages and exclude About, links, contact, etc.
    $args = array( // set up arguments
    ‘post_type’ => ‘page’, // Only Pages
    ‘post__not_in’ => array(2,9,5,12) // Do NOT show postID 2,9,5,or 12
    );
    query_posts($args); // execute the arguments
    ?>

    Info found on this page:

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