• Hi

    Im testing a new webiste and noticed the hyperlink on the front page to makes is not working.

    Example about displays all makes not just Mazda.

    How do I fix this?. Im new to php so any code amendments need to be explained in idiot speak.

    Thank you

    Keith

    Does it have anything to do with this file:
    ecar>templates-parts>home>makes.php

    <section class="makes">
    	<div class="container">
    		<div class="row">
    			<?php
    			foreach ( $makes_items as $make => $image ) : ?>
    				<div class="col-md-2 col-6 makes-item">
    					<a href="<?php echo get_the_permalink( auto_listings_option( 'archives_page' ) ) . '?make[]=' . $make; ?>">
    						<img class="makes-item__image" src="<?php echo esc_url( $image ) ?>" alt="<?php echo esc_attr( $make ) ?>">
    						<h3 class="makes-item__title"><?php echo esc_html( $make ); ?></h3>
    					</a>
    				</div>
    			<?php endforeach; ?>
    		</div>
    	</div>
    </section>

    The page I need help with: [log in to see the link]

The topic ‘MAKE LOGO HYPERLINK = MAZDA NOT WORKING’ is closed to new replies.