Activity Stream
48,167 MEMBERS
62551 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 7 of 7

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1.     
    #1
    Member
    Website's:
    RNBxBeatz.com Storedpics.com

    Default Disabling Featured Slide

    Hi,

    I got a website http://rnbxbeatz.com/ & i want to remove the featured slide case on the home page. I have looked into it and it is using "AW ShowCase".

    Correct me if I am wrong, but i think i need to edit index.php on wordpress theme to remove it completely? I have tried but had no success.

    Here is what my index.php File looks like, please help me!
    http://pastebin.com/eucfNSxc

    Thanks.
    RNBxBeatz Reviewed by RNBxBeatz on . Disabling Featured Slide Hi, I got a website http://rnbxbeatz.com/ & i want to remove the featured slide case on the home page. I have looked into it and it is using "AW ShowCase". Correct me if I am wrong, but i think i need to edit index.php on wordpress theme to remove it completely? I have tried but had no success. Here is what my index.php File looks like, please help me! http://pastebin.com/eucfNSxc Thanks. Rating: 5


  2.   Sponsored Links

  3.     
    #2
    Banned
    Website's:
    RevLine.net LinkDetour.net
    i dont see what your talking about.

  4.     
    #3
    Member
    Website's:
    sborg.us
    Check the settings(theme settings in particular), There'll be an option to disable the slider.

    V3g3ta | Halcyon | Abhi

  5.     
    #4
    Member
    Website's:
    RNBxBeatz.com Storedpics.com
    Quote Originally Posted by Halcyon View Post
    Check the settings(theme settings in particular), There'll be an option to disable the slider.
    I've checked there doesn't seem to be any though.


  6.     
    #5
    OH GOD!!!!!
    Website's:
    HotNewHipHop.com
    You can manually edit the theme and remove the slider code, If its located in the header then edit the header file and try to located the code which is calling the slider and remove it.

  7.     
    #6
    Respected Member
    Website's:
    DL4Everything.com Soft2050.in
    Remove the "show" div if you want to remove this:


    Edited Code:

    PHP Code: 
    <?php get_header(); ?>

            <div style="clear:both"></div>        
                    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Photo Gallery') ) : ?><div style="clear:both"></div>
    <?php endif; ?>             
                <div id="body">             
                <?php
    if ( function_exists('dynamic_sidebar') )
    echo 
    '<div id="centerwidgets">';
    dynamic_sidebar('Widgets Home');
    echo 
    '<div style="clear:both"></div></div>';
    ?>             
        <?php if ( get_option('layout') == 'right_sidebar'  ) echo '<div id="content" style="float:left;margin-left:22px;">'; else echo '<div  id="content" style="float:right;margin-right:42px;">';?> 
                
                <?php if (have_posts()) :while (have_posts()) :the_post();?>            
                <div class="postMain"></div>
                <div class="post">            
                         <div class="date_title">
                    <div class="date_back">
                        <div class="month"><?php the_time('M'?></div>
                        <div class="day"><?php the_time('d'?></div>            
                    </div>                       
                         <h2><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
                </div>    
                    <?php if ( has_post_thumbnail() ) {
    $mypostimage the_post_thumbnail'thumbnail', array('class' => 'homethumb' 'alt' => get_the_title() , 'title' => get_the_title() ));
    the_content('</br></br><span class="fullarticle">FULL ARTICLE &raquo;</span>');} else {the_content('</br></br><span class="fullarticle">FULL ARTICLE &raquo;</span>'); } ?>    
                    <div class="postMeta"><?php _e("Posted in ","language"); ?> <?php the_category(', '?> </div>
                    <div style="clear:both;"></div>
                    </div>                                             
                    <div style="clear:both"></div>
                    <div class="postFoot"></div> 
                    <?php endwhile;endif;  ?>
                     <div class="navigation"><p><?php posts_nav_link('∞','Next &raquo;&raquo;',' &laquo;&laquo; Previous'); ?></p>
                </div>
            </div>            
    <?php get_sidebar(); ?>  
    <?php get_footer(); ?>

  8.     
    #7
    Member
    Website's:
    RNBxBeatz.com Storedpics.com
    Quote Originally Posted by soft2050 View Post
    Remove the "show" div if you want to remove this:


    Edited Code:

    PHP Code: 
    <?php get_header(); ?>

            <div style="clear:both"></div>        
                    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Photo Gallery') ) : ?><div style="clear:both"></div>
    <?php endif; ?>             
                <div id="body">             
                <?php
    if ( function_exists('dynamic_sidebar') )
    echo 
    '<div id="centerwidgets">';
    dynamic_sidebar('Widgets Home');
    echo 
    '<div style="clear:both"></div></div>';
    ?>             
        <?php if ( get_option('layout') == 'right_sidebar'  ) echo '<div id="content" style="float:left;margin-left:22px;">'; else echo '<div  id="content" style="float:right;margin-right:42px;">';?> 
                
                <?php if (have_posts()) :while (have_posts()) :the_post();?>            
                <div class="postMain"></div>
                <div class="post">            
                         <div class="date_title">
                    <div class="date_back">
                        <div class="month"><?php the_time('M'?></div>
                        <div class="day"><?php the_time('d'?></div>            
                    </div>                       
                         <h2><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
                </div>    
                    <?php if ( has_post_thumbnail() ) {
    $mypostimage the_post_thumbnail'thumbnail', array('class' => 'homethumb' 'alt' => get_the_title() , 'title' => get_the_title() ));
    the_content('</br></br><span class="fullarticle">FULL ARTICLE &raquo;</span>');} else {the_content('</br></br><span class="fullarticle">FULL ARTICLE &raquo;</span>'); } ?>    
                    <div class="postMeta"><?php _e("Posted in ","language"); ?> <?php the_category(', '?> </div>
                    <div style="clear:both;"></div>
                    </div>                                             
                    <div style="clear:both"></div>
                    <div class="postFoot"></div> 
                    <?php endwhile;endif;  ?>
                     <div class="navigation"><p><?php posts_nav_link('∞','Next &raquo;&raquo;',' &laquo;&laquo; Previous'); ?></p>
                </div>
            </div>            
    <?php get_sidebar(); ?>  
    <?php get_footer(); ?>
    Thanks so much, it worked like a charm


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Disabling catch-all email
    By Areon in forum Server Management
    Replies: 0
    Last Post: 20th Mar 2014, 01:16 PM
  2. Problem in showing featured images
    By ashokbansal in forum Wordpress
    Replies: 1
    Last Post: 3rd May 2012, 08:17 AM
  3. Full Featured IMDB Generator
    By JamesVaporH in forum Web Development Area
    Replies: 0
    Last Post: 21st Mar 2012, 09:12 PM
  4. Disabling images in Mozilla 5.0.1
    By Cojba in forum Technical Help Desk Support
    Replies: 3
    Last Post: 22nd Jul 2011, 10:11 PM
  5. Rapidshare Account Disabling, due to Sharing
    By EvilGenius in forum General Discussion
    Replies: 7
    Last Post: 8th Oct 2009, 07:13 AM

Tags for this Thread

BE SOCIAL