Jump to content

sobrenome

Clients
  • Posts

    2,525
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by sobrenome

  1. On 6/17/2020 at 2:17 PM, Gesundheit said:

    How would I go about using template logic to get the value data from a specific custom profile field?

    Have you found out how to get custom profile field data?

    Here is a hint from customFieldsDisplay template:

    {{foreach $author->contentProfileFields() as $group => $fields}}
    	{{foreach $fields as $field => $value}}
    	<li class='ipsResponsive_hidePhone ipsType_break'>
    		{$value|raw}
    	</li>
    	{{endforeach}}
    {{endforeach}}

     

  2. On 12/22/2016 at 9:03 AM, newbie LAC said:

    Hello,

    
    try
    {
    	$geoData = \IPS\GeoLocation::getByIp( \IPS\Member::loggedIn()->ip_address );
    	
    	if ($geoData['country'] == 'DE')
    	{
    		// Show message
    	}
    }
    catch ( \Exception $e )
    {
    }

     

    Does the built in GeoLocation method return the latitude and longitude by IP?

  3. On 8/19/2014 at 6:23 AM, Mark said:

    The methods available are:

    
    /* IP address */
    IPSGeoLocation::getByIp( $ipAddress );
    
    /* Latitude and longitude (such as returned by the GPS) */
    IPSGeoLocation::getByLatLong( $latitude, $longitude );
    
    /* Manually */
    $geolocation = new IPSGeoLocation;
    $geolocation->addressLines = array( '123 Fake St.' );
    $geolocation->city = 'City';
    $geolocation->country = 'US';

    Are these methods available on 4.5? Any DEV docs about them?

  4. Users are posting more and more media everyday on my community.

    I face a problem related to iPhone mov video file, that does not play on Google Chrome.

    Please add SDK integration to Amazon Elastic Transcoder to save the mov file under mp4 format, saving space and making the video compatible to all devices.

  5. Same issue here. Most members of my community are browsing from phones (and apple iPhones) and posting videos as attachments. Unfortunately the .MOV videos does not play on Chrome and Firefox.

    I would be nice if IPS had a solution for these media files, more even important for those communities that have Gallery App.

×
×
  • Create New...