How to create 'show more' link on homepage on video category list

Discussion in 'VideoCraft WordPress Theme' started by afuyemedia, Jan 29, 2015.

  1. afuyemedia

    afuyemedia New Member

    Joined:
    Jun 10, 2014
    Messages:
    11
    Likes Received:
    0
    Hello,

    I would like to have show more link right under each category list of video on homepage and when a user click on the 'show more link', it should go to the category page of the video.

    See image attached of what I want.

    here is the link to the site - oak.tv

    Thank you.
     

    Attached Files:

  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello !


    PHP:
    <?php echo '<h4 class="titlenext"><a href="' get_term_link($term->slug'video_cat') . '">Show More</a></h4>'?>
    You have to add given php code in front-page.php. Please follow below image.
    video-30-jan.png


    Thanks & Regards
    Pramod
     
  3. afuyemedia

    afuyemedia New Member

    Joined:
    Jun 10, 2014
    Messages:
    11
    Likes Received:
    0
    Thank you Pramod.

    Please, i will like to have it aligned by the right hand side.

    Thanks
    Afuyemedia.
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello Afuyemedia,

    Paste the code given below in Custom CSS section
    (Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    h4.titlenext {
      text-align: right;
    }
    
    Thanks & Regards
    Pramod
     

Share This Page