REQUEST Change to different sports guide in Sky Glass or other Smarters

ShawnAsap

Member
Joined
Nov 10, 2021
Messages
41
Awards
2
Offline
The tvsportsguide (USA) widget does not work. Is there was a way to use sport-tv-guide.live because it's much more functional. Or even use the sports button to launch a different app? Any help would be great. Thanks
 

verg0

New member
Joined
Dec 13, 2021
Messages
15
Awards
1
Offline
Depending on what panel you have, you could edit the sport.php in /api to point to your own landing page for multiple guides.

say make a folder api/guide/ then make your landing page. Here is a basic example of a landing page with 3 guides you can try:

<html lang="en">
<head>
<meta charset="utf-8">
<title>Stretch and Scale Background-image with CSS</title>
<style>

body {
background: url("img/bg.webp") no-repeat;
background-size: 100%;
background-size: 100vw 100vh;
background-size: cover;
}

a{
text-decoration:none;
}

.container {
height: 300px;
position: relative;
}

.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}

</style>

<div style="text-align: center;">
<img src="img/logo.png" alt="Enigma3" style="width: 170px; height: 110px;">
</div>

</head>

<body>
<div style="text-align:center">
<div class="adjust-line-height">
<div class="center">
<font size="+2">
<strong>

<a href="https://www.liveonsat.com/uk-britain-ireland-all-football.php" style="color: white">UK Football</a>
</br>
</br>
<a href="https://www.tvsportguide.com/widget...ll=0&prev_nonce=a7242d2019&custom_colors=1234" style="color: white">General Sports</a>
</br>
</br>
<a href=https://box.live/privacy-policy/" style="color: white">Boxing Schedule</a>
</br>

</strong>
</font>
</style>
</div>
</div>
</div>


</body>
</html>
 

ShawnAsap

Member
Joined
Nov 10, 2021
Messages
41
Awards
2
Offline
Depending on what panel you have, you could edit the sport.php in /api to point to your own landing page for multiple guides.

say make a folder api/guide/ then make your landing page. Here is a basic example of a landing page with 3 guides you can try:

<html lang="en">
<head>
<meta charset="utf-8">
<title>Stretch and Scale Background-image with CSS</title>
<style>

body {
background: url("img/bg.webp") no-repeat;
background-size: 100%;
background-size: 100vw 100vh;
background-size: cover;
}

a{
text-decoration:none;
}

.container {
height: 300px;
position: relative;
}

.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}

</style>

<div style="text-align: center;">
<img src="img/logo.png" alt="Enigma3" style="width: 170px; height: 110px;">
</div>

</head>

<body>
<div style="text-align:center">
<div class="adjust-line-height">
<div class="center">
<font size="+2">
<strong>

<a href="https://www.liveonsat.com/uk-britain-ireland-all-football.php" style="color: white">UK Football</a>
</br>
</br>
<a href="https://www.tvsportguide.com/widget/636672aca5c7f?filter_mode=all&filter_value=&days=5&heading=Enigma3 TV - Sports Guide&border_color=black&autoscroll=0&prev_nonce=a7242d2019&custom_colors=1234" style="color: white">General Sports</a>
</br>
</br>
<a href=https://box.live/privacy-policy/" style="color: white">Boxing Schedule</a>
</br>

</strong>
</font>
</style>
</div>
</div>
</div>


</body>
</html>
Tried this method but kept getting "you don't have application to open this" error. I guess this is because I don't have a web browser. What I did instead was I made a sports.html and embedded the widget code. Now it shows up, but for some reason the icon pics will not show.
 

Attachments

  • IMG20230311230513-picsay.png
    IMG20230311230513-picsay.png
    841.5 KB · Views: 41
Top