remove review stars from home slider - Geocraft

Discussion in 'GeoCraft WordPress Theme' started by myinktheme, Mar 3, 2014.

Thread Status:
Not open for further replies.
  1. myinktheme

    myinktheme Member

    Joined:
    Feb 1, 2014
    Messages:
    28
    Likes Received:
    0
    Can I make the following changes to the Home Slider Listings:
    1) display 1 line only for the business name. Sometimes if the business name is long, the name moves to the 2nd line. Just cutoff the text to display it on 1 line.
    2) remove the "review stars" line from the Home Slider listings
    3) instead of review stars, display text from first line of business description (same as text displayed on "Recent Listings" listings)
    Thanks
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    1) Open front-page.php file and replace code given below with the code shown in the image.

    Code:
       <?php 
    $max_length = 20;
    $title = get_the_title($post->ID);
    echo substr($title, 0, $max_length); if (strlen($title) > $max_length) echo "...";                                                                 
     ?>
    title.png

    2) Open front-page.php file and replace code given below with the code shown in the image.

    Code:
    <?php the_excerpt(); ?>
    replacecode.png



    and paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .slider-item p{max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;} 
    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. myinktheme

    myinktheme Member

    Joined:
    Feb 1, 2014
    Messages:
    28
    Likes Received:
    0
    Hi Nitesh,
    it worked like a charm ... thanks.

    By the way, how about limiting the characters for the address line in the Home slider?
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    For this open "front-page.php" file and add <p> tag as shown in the image given below.
    ptag.png

    Thanks & Regards
    Nitesh Raghuwanshi
     
  5. myinktheme

    myinktheme Member

    Joined:
    Feb 1, 2014
    Messages:
    28
    Likes Received:
    0
Thread Status:
Not open for further replies.

Share This Page