Delete Links From Slider (SP Simple Portfolio) - Question | JoomShaper
SP Page Builder 6 is Here! Learn More →

Delete Links From Slider (SP Simple Portfolio)

TD

TOCHTERMANN DAMIEN

Extension 3 years ago

Hello,

How can i remove links from SP Simple Portfolio items https://diemer-photo.com/index.php

https://prnt.sc/1xp88hw

I cant see any one by looking at items details. i also cant find the pages associated to items.

Thanks

0
4 Answers
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 3 years ago #40656

Hello TOCHTERMANN DAMIEN

Please use this CSS to Template Options -> Custom Code -> Custom CSS

.sp-simpleportfolio .spsimpleportfolio-items .sp-simpleportfolio-item-wrap 
.sp-simpleportfolio-info .sp-simpleportfolio-title a{
    pointer-events: none;
}

Best regards

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 3 years ago #40654

Hi,

You have two ways to remove them:

  1. Edit php file and remove link code (but this kind of code customization is on your hands only !)
  2. OR use custom CSS to disable link feature. Example code:
.sp-simpleportfolio .spsimpleportfolio-items .sp-simpleportfolio-item-wrap .sp-simpleportfolio-info .sp-simpleportfolio-title a {cursor: default !important;
   pointer-events: none !important; cursor: not-allowed;
   text-decoration: none; color: white !important;}
0
TD
TOCHTERMANN DAMIEN
Accepted Answer
3 years ago #40661

Thanks for all... it was surprising that there wasnt another way to disable the link :) (for non coders i mean)

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 3 years ago #40663

In general portfolio how it works, you see small pictures and click on them to see bigger with details.

It's like SMS on your smartphone in Message center - you see few words and you have to click on it to read more. I guess around 95% of users don't need to disable link feature, that's why it wasn't added ON/OFF.

0