Lost my Read More Button on the front page

Discussion in 'Blackriders WordPress Theme' started by maggiemae, Jan 12, 2015.

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

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    I would like to change my Read More Button on the front page. It needs to be -> Lees meer.
    (Dutch language)

    I did something in the Front Page.php area but now I lost my button. Can you help me to get my Read More Button back?

    Thank you.
     
  2. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    This is the Front Page.php

    }
    ?>
    <h1 class="post_title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
    <div class="post_content">
    <ul class="post_meta">
    <li class="posted_by"><?php the_author_posts_link(); ?></li>
    <li class="post_date"><?php echo get_the_time('M-d-Y') ?></a></li>
    <li class="post_category"><?php the_category(', '); ?></li>
    <li class="postc_comment">&nbsp;<?php comments_popup_link('0 Comments.', '1 Comments.', '% Comments.'); ?></li>
    </ul>
    <?php echo custom_trim_excerpt(40); ?>
    <a class="lees meer" href="<?php the_permalink() ?>"><?php echo LEES_MEER; ?></a>
    </div>
    </div>
    <?php
    endwhile;
    endif;
    ?>
    </div>
    </div>
    <div class="grid_8 omega">
    <div class="sidebar">
    </div>
    </div>
    <div class=" grid_8 omega">
    <div class="sidebar home">
    <?php if (is_active_sidebar('home-page-widget-area')) : ?>
    <?php dynamic_sidebar('home-page-widget-area'); ?>
    <?php else : ?>
    <iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Finkthemes&width=290&height=430&colorscheme=light&show_faces=true&border_color&stream=false&header=true" scrolling="yes" frameborder="0" style="border:none; width:290px; height:450px;" allowTransparency="true"></iframe>
    <?php endif; ?>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div class="clear"></div>
    <?php get_footer(); ?>
     
  3. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi maggiemae,

    I have attached the code that you have mentioned in your issue and highlighted the line which make the issue.

    --------------------------------------------------------------------------

    read_more_issue.png
    ----------------------------------------------------------------------------------

    Please replace the highlighted line with the code given below.

    HTML:
    <a class="read-more" href="<?php the_permalink() ?>"><?php echo LEES_MEER; ?></a>
    Thanks
    Praveen
     
  4. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    Thank you my button is back :)

    Online now there is standing LEES_MEER (capital letters). Is it also possible to change the text in Lees meer. So without the underscore and capital letters.

    I also have an other question: about the purple accent colors, like the icons and the titel from my messages when click on it. How can I change it?

    Thank you!
     

    Attached Files:

  5. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi maggiemae,

    In the earlier code replace "LEES_MEER" with "Lees meer".

    To change color, please paste the code given below in custom css.
    (Appearance->Theme Options->Styling Options->Custom Css) of your dashboard.

    Code:
    .post .post_title a:hover {
    color: red !important;
    }
    Note : You can change color according to your need.

    Thanks
    Praveen
     
  6. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    Thank you! The button is working now!

    Only the purple color. I tried the code but it stays purple -> see attachment.

    I have the black color theme and purple is the accent color.
     

    Attached Files:

  7. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi maggiemae,

    I fails to understand what changes you exactly need.
    Please provide us your website url and explain your issue in detail.

    Thanks
    praveen
     
  8. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    Website url: http://test.aangepastwonen.info

    When you are on my website scroll down to "Laatste nieuws" than you see the title "Aangepast Wonen in de Telegraaf". When you go with your mouse to the title the color changes from black to purple.
    Also the icons under the title are purple. I would like to change the purple color.

    I hope I have explained well now..
     
  9. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi maggiemae,

    The icons are available in limited number of colours in this theme.
    See screenshot for colours.
    images.png
    So, you have to select one.

    Hope you understand.

    Thanks
    Praveen
     
  10. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    I understand. Can I also delate the icons than?

    But still my titels are purple as I explained to you.
     
  11. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi maggiemae,

    Please paste the code given below in custom css.
    (Appearance->Theme Options->Styling Options->Custom Css) of your dashboard.

    1>To delete icon use the following code:
    Code:
    .post .post_meta .post_date {
    background: none !important;
    }
    .post .post_meta .posted_by {
    background: none !important;
    }
    .post .post_meta .post_category {
    background: none !important;
    }
    .post .post_meta .postc_comment {
    background: none !important;
    }
    2>
    Code:
    .post .post_title a:hover {
    color: black !important;
    }
    Thanks
    Praveen
     
  12. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    Thank you for your help :)
     
Thread Status:
Not open for further replies.

Share This Page