Feature Heading Link "read more"

Discussion in 'Gommero WordPress Theme' started by gfrankwick, Dec 27, 2013.

  1. gfrankwick

    gfrankwick Guest

    Joined:
    Dec 12, 2013
    Messages:
    3
    Likes Received:
    0
    Hello,

    First of all, thanks for the great themes!

    I am wondering how I can change the text and or remove the text from the Feature Heading Link. It currently displays as "read more" and would like to change this for some and delete it for others.

    I found a way to do this by changing the front-page.php but would prefer to just add this to custom css. If there is not a way to do this let me know.

    Thanks!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    This is not possible with custom css code because you want to do it only for the particular column.
    The only possible way is to edit front-page.php file present in your theme directory to fulfill your requisition.
     
  3. gfrankwick

    gfrankwick Guest

    Joined:
    Dec 12, 2013
    Messages:
    3
    Likes Received:
    0
    What would the custom css be if I wanted to do it for all columns?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to front-page.php present in your theme directory and remove the code given below

    Code:
                <?php if (get_option('inkthemes_link1') != '') { ?>
                        <a href="<?php echo get_option('inkthemes_link1'); ?>">read more </a>
    <?php } else { ?>
                        <a href="#">read more </a>
    <?php } ?>
    Check image for reference

    2013-12-30_1231.png


    Use same process for others also.
     

Share This Page