• I’d like to display client logos in the partner area at the bottom of the page but not link out to them. I’ve left the link destination empty but it still links to itself.

    Any ideas how I can remove the link completely?

    Thanks,
    SD

Viewing 4 replies - 1 through 4 (of 4 total)
  • Tanay

    (@tanaykhandelwal-1)

    Hello djelal,

    1. Create Child Theme advertica-lite-child refer Child_Theme.

    2. Copy paste the advertica/includes folder, front-page.php and template-front-page.php in child theme directory from advertica-lite.

    3. Open advertica-lite-child/includes/front-client-logo-section.php and then modify the code for each logo image like this.

    <?php if(sketch_get_option($advertica_shortname.'_img1_icon')){ ?><li class="span2"><img alt="client-logo" src="<?php if(sketch_get_option($advertica_shortname.'_img1_icon')){ echo sketch_get_option($advertica_shortname.'_img1_icon','advertica-lite'); } ?>"/></li><?php } ?>

    4. In child themes style.css write below code

    .clients-items img{
    	position: inherit;
    }

    Activate the child heme and Have fun!!!

    Best,
    Tanay Khandelwal

    Thread Starter djelal

    (@djelal)

    Tanay – that’s spot on! Worked like a charm, much appreciated.

    Regards,
    SD

    BestBuySigns

    (@bestbuysigns)

    We are looking to do the same as djelal, or have the client logo links open in a new tab. We do not have experience with child themes though.

    Any help is greatly apprecieated.

    Thank you,
    Olivia

    Tanay

    (@tanaykhandelwal-1)

    Hi BestBuySigns,

    First of all I would recommend you to go with the Child_Themes. It’s pretty simple and keeps you out of troubles. during update your changes will not get lost and if you’re customizing your site and something goes wrong you can just activate the original theme and fix the issue in the child theme and reactivate it. So, at least your site will be running all the time plus many more…

    Next for the link to open in the new tab. You can add the target=”_blank” attribute to the links. Like this –

    <a id="brand1-a" target="_blank"  href="...

    Regards,
    Tanay Khandelwal

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove partner/client links’ is closed to new replies.