Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi…

    I have a minor modified version of Inove and have fixed this with these changes…

    In function.php in theme directory i have made this change to the function custom_comments

    change around line 483
    FROM

    <div class="name">
    	<?php if (get_comment_author_url()) : ?>
    	<a id="commentauthor-<?php comment_ID() ?>" class="url" href="<?php comment_author_url() ?>" rel="external nofollow">
    	<?php else : ?>
    	<span id="commentauthor-<?php comment_ID() ?>">
    	<code><?php endif; ?></code>
    	<?php comment_author(); ?>
    
    	<?php if(get_comment_author_url()) : ?>
    	</a>
    	<?php else : ?>
    	</span>
    	<?php endif; ?>
    </div>

    TO

    <div class="name">
         <div id="commentauthor-<?php comment_ID() ?>">
         <?php comment_author_link() ?>
    </div>

    Thread Starter egitimtube

    (@egitimtube)

    hi @acoustika
    codes in this way you get an error from the time I’ve replaced the functions.php file if you upload

    Instead of changing the theme, you should ask the plugin author to filter:

    get_comment_author_url

    A reference to this hook can be found here:
    https://adambrown.info/p/wp_hooks/hook/get_comment_author_url

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: SEO Super Comments] iNove Themes does not work error’ is closed to new replies.