• Hi all! I need an advice how to remove link from my “ABOUT US” title.
    I want this title to be static and I don’t need it hoovered or clickable but can’t find how to “unlink” it.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    You’ll need to edit the template file or index.php file within the <h2> tag.

    Thread Starter lora_gg

    (@lora_gg)

    Hi! This is what my index.php file says:

    <?php get_header(); ?>
    			<?php get_sidebar('top'); ?>
    			<?php
    			if (have_posts()) {
    				/* Display navigation to next/previous pages when applicable */
    				if (theme_get_option('theme_' . (theme_is_home() ? 'home_' : '') . 'top_posts_navigation')) {
    					theme_page_navigation();
    				}
    				/* Start the Loop */
    				while (have_posts()) {
    					the_post();
    					get_template_part('content', get_post_format());
    				}
    				/* Display navigation to next/previous pages when applicable */
    				if (theme_get_option('theme_bottom_posts_navigation')) {
    					theme_page_navigation();
    				}
    			} else {
    				theme_404_content();
    			}
    			?>
    			<?php get_sidebar('bottom'); ?>
    <?php get_footer(); ?>

    Can you guide me where to search?

    Thread Starter lora_gg

    (@lora_gg)

    No luck yet. Any ideas?

    Since you’re index.php file calls the function <?php get_header(); ?>, you need to edit the title tag in header.php file!

    Thread Starter lora_gg

    (@lora_gg)

    Pls explain how to do that. Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘How to remove link from title’ is closed to new replies.