• Resolved lcapponi

    (@lcapponi)


    I don’t necessarily want to make the links clickable, but by default they are showing up that way. Here’s the website: http://www.skincatalyst.net

    If you hover over the product lines, the wording is clearly a link but it’s linked with a # so it just redirects to the homepage. Is there a way to make it stop doing this?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi lcapponi

    Thanks for using our theme.

    The product lines hover color is clearly.

    Using theme custom css option and add given some line of code in custom css box.

    ul#flex_new li a:hover{ color:#353c3f; }

    It resolved your issues.

    Thanks

    Theme Author webriti

    (@priyanshumittal)

    @icapponi

    Find the following line of codes one by one in the index-product.php file

    <a href="#"><?php echo $products['product1_title']; ?></a>

    <a href="#"><?php echo $products['product2_title']; ?></a>

    <a href="#"><?php echo $products['product3_title']; ?></a>

    <a href="#"><?php echo $products['product4_title']; ?></a>

    Now create a child theme and copy paste the index-product.php file , edit this file and replace the first line of snippet mentioned above with
    <?php echo $products[‘product1_title’]; ?>

    Similarly do the same for others.

    Thanks
    Priyanshu

    Hi Webriti,

    If i would like to add links to the Products, I simply insert a link to replace “#” in
    <?php echo $products[‘product1_title’]; ?>

    correct? Thanks!

    Hi,

    Did the above issue fixed.

    can i close this ticket.

    Thanks

    Harish

    Hi Harish,

    May i know if my assumption is correct:

    If i would like to add links to the Products, I simply insert a link to replace “#” in
    <?php echo $products[‘product1_title’]; ?>

    Theme Author webriti

    (@priyanshumittal)

    Yup.. you just need to replace the hash with your custom link

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Product Section, links go nowhere’ is closed to new replies.