D5 Creation Forum

Open Forum for D5 Creation's Members and Visitors

Before requesting any support Please search the Forum First. You may find your desired answer. This will save your waiting time and will save our working hour. We may not answer the question which we have already answered. You should also read our Support Policy

Error Message

Front Page D5 Creation Forum General Support Error Message

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #3104
    Steve Marsh
    Participant

    I am getting the following error:

    Fatal error: Call to undefined function d5businessline_continue_reading_link() in /home/content/31/9783131/html/wp-content/themes/d5-business-line/functions.php on line 98

    It is showing on this page: http://bizassetsale.com/classyfried_listings/

    When i google it, I see many other sites using these theme are having the same problem.

    Please advise ASAP. Thanks

    #3618
    D5 Creation
    Keymaster

    Our theme will function properly if you use it without any conflicting plugins. But the latest version will not conflict. Please download the latest version from D5 Creation and use that.

    #3619
    Steve Marsh
    Participant

    Just did – same issue still exists 🙁

    #3620
    D5 Creation
    Keymaster

    The problem occurs when you use the_excerpt() instead of the_content()
    Open the functions.php and go to Line no 97. Remove the 04 lines,

    Code:
    function d5businessline_auto_excerpt_more( $more ) {
    return ‘ …’ . d5businessline_continue_reading_link();
    }
    add_filter( ‘excerpt_more’, ‘d5businessline_auto_excerpt_more’ );

    and paste the following lines

    Code:
    function d5businessline_excerpt_length( $length ) {
    global $blExcerptLength;
    if ($blExcerptLength) {
    return $blExcerptLength;
    } else {
    return 50; //default value
    } }
    add_filter( ‘excerpt_length’, ‘d5businessline_excerpt_length’, 999 );

    function d5businessline_excerpt_more($more) {
    global $post;
    return ‘<a href=”‘. get_permalink($post->ID) . ‘” class=”read-more”>Read the Rest…</a>’;
    }
    add_filter(‘excerpt_more’, ‘d5businessline_excerpt_more’);

    #3621
    Steve Marsh
    Participant

    Thanks! That worked perfectly.

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.