Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #193533

    Hello

    My site is almost finished, i have some final issues:

    1. I don’t want to see date and time in the widget Enfold Latest News
    2. Can I change the language of “You are here” and “read more” without using WPML?
    3. There is difference between the color of the main font and the font of text when I’m using a the “icon list”.
    In that cae i also want het color of the main font.

    Thanks

    #193717

    Hey tomdeloof!

    1.) You can add this on your custom.css or Quick CSS:

    .news-time {
    display: none;
    }

    2.) Edit framework > php > class-breadcrumb.php, find this code on line 186:

    'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',

    Edit includes > loop-index.php, find this code:

    $current_post['content'] = $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> &rarr;</span>') : get_the_excerpt();

    3.) You can change the color of the iconlist content using this:

    .main_color .iconlist_content {
    color: red;
    }

    Best regards,
    Ismael

    #194195

    1.) You can add this on your custom.css or Quick CSS:
    OK
    2.) Edit framework > php > class-breadcrumb.php, find this code on line 186:
    Only OK on the contact page
    Edit includes > loop-index.php, find this code:
    does not work, i still see “read more”
    3.) You can change the color of the iconlist content using this:
    OK

    #194313

    Hi!

    2.) Open class-breadcrumb.php again, find this code on line 26:

    echo '<p class="breadcrumb"><span class="breadcrumb_info">'.__('You are here:','avia_framework').'</span> <a href="'.get_bloginfo('url').'">';

    3.) Open loop-index.php again, find this code then change the Read More text:

    $current_post['content'] 	= $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span>') : get_the_excerpt();
    	$current_post['content'] 	= $blog_content == "excerpt_read_more" ? $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>' : $current_post['content'];

    Regards,
    Ismael

    #194922

    Hello

    tried point 2 and 3, but still no succes.

    Any ideas?
    thanks

    #195033

    Hey!

    2.) Change line 26 and line 186.

    3.) Please test it on another browser. Can you please give us a link to the post?

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Some questions’ is closed to new replies.