Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter linusbjork

    (@linusbjork)

    Thanks for your answers!
    I will try to reach the Flatsome support for help.

    Thread Starter linusbjork

    (@linusbjork)

    My webshop gonna sell merchandise for another brand. That want their part of the webshop branded with their colors and logo.

    So my plan was to create a new product category where I put all their products. And when the visitor change to this product category also the design change.

    Thread Starter linusbjork

    (@linusbjork)

    Hi! I think you’re right when you say it should be text/xml but it still doesn’t work ??
    When I try to fetch the mime type from the gpx file I get the result “text/xml”.

    echo mime_content_type($filename)
    > text/xml

    $finfo = finfo_open(FILEINFO_MIME_TYPE);
    foreach (glob("*") as $filename) {
        echo finfo_file($finfo, $filename) . "\n";
    }
    finfo_close($finfo);

    > directory
    > text/html
    > text/xml

    the test gpx file looks like this:

    <?xml version="1.0" encoding="utf-8"?>
    <gpx version="1.1" creator="Movescount - https://www.movescount.com" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://www.topografix.com/GPX/1/1 https://www.topografix.com/GPX/1/1/gpx.xsd https://www.cluetrust.com/XML/GPXDATA/1/0 https://www.cluetrust.com/Schemas/gpxdata10.xsd https://www.garmin.com/xmlschemas/TrackPointExtension/v1 https://www.garmin.com/xmlschemas/TrackPointExtensionv1.xsd" xmlns:gpxdata="https://www.cluetrust.com/XML/GPXDATA/1/0" xmlns:gpxtpx="https://www.garmin.com/xmlschemas/TrackPointExtension/v1" xmlns="https://www.topografix.com/GPX/1/1">
       <rte>
          <name>FJM Salomon 27K</name>
          <rtept lat="63.215577" lon="13.055972">
             <ele>550</ele>
          </rtept>
          <rtept lat="63.215597" lon="13.055838">
             <ele>550</ele>
          </rtept>
          <rtept lat="63.215621" lon="13.055691">
             <ele>550</ele>
          </rtept>
          <rtept lat="63.259668" lon="13.186767">
             <ele>668</ele>
          </rtept>
       </rte>
    </gpx>
    • This reply was modified 4 years, 9 months ago by linusbjork.
Viewing 3 replies - 1 through 3 (of 3 total)