Jump to content

Azoun

Clients
  • Posts

    338
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    Azoun reacted to All Astronauts in Who Viewed the Topic   
    @Azoun
    Version 4 released.
    Adds option to change the CSS button class.
  2. Thanks
    Azoun reacted to All Astronauts in Who Viewed the Topic   
    I'll just add it as an option. Give me a bit, just woke up after 17 hours of driving.
  3. Thanks
    Azoun reacted to Pete T in Who Was Online   
  4. Like
    Azoun reacted to Michael.J in Portal   
    The Portal application has been updated with confirmed IP.Board 4.2.x support.
  5. Like
    Azoun reacted to Adriano Faria in iAwards   
    Works fine for me in Edge, Chrome and Firefox:

     



     
    It is something related to your theme.
  6. Like
    Azoun reacted to JiigSaaw in iAwards   
    Nice app, but in found a bug in Awards section of Admin CP.
    If you copy an award, edit the copy and save. Award is not visible until you edit permissions (same as original) and save.
    In addition, number of awarded members is the same as original until you award a member with the copy (number seems to be recounted with this action). If you click on the number of the award copy, anyone is shown, normal as no member was awarded with the copy, but the couner is the same as the original.
    Thanks for you work
  7. Like
    Azoun reacted to Michael.J in Portal   
    In ACP > System tab > Menu Manager? Or are you referring to somewhere else?
    Patch can be found here.
    I've actually looked into this recently and until IPB4 includes a better way to setup a left side widget area, this is unfortunately not possible.
  8. Like
    Azoun reacted to InsideEdge in iAwards   
    Scroll down a little further than the red arrow until you see the arrow and "Reorder"  -- click it 
  9. Like
    Azoun reacted to Joel R in iAwards   
    Check your permissions, then +Create
  10. Like
    Azoun reacted to NoGi in iAwards   
    It's via the +Create menu
  11. Like
    Azoun reacted to NoGi in iAwards   
  12. Like
    Azoun got a reaction from svit in Member Map   
    I achieved this by editing the following templates:mapGoogleCustomMarkers mapGoogleJavascript

    The contents of mine are as follows:

    mapGoogleCustomMarkers

    <if test="count($markers) > 0"> <script type="text/javascript"> var {$pinType}Icon = new GIcon(G_DEFAULT_ICON); {$pinType}Icon.image = "http://chart.apis.google.com/chart?chst=d_map_pin_icon&chld={$pinType}|{$pinColour}"; {$pinType}Icon.iconSize = new GSize(20, 33); {$pinType}Icon.iconAnchor = new GPoint(10, 33); <foreach loop="$markers as $marker"> var point = new GLatLng({$marker['lat']},{$marker['lon']}); bounds.extend(point); var marker = ipb.membermap.createMarker(point,"<p><strong>{$marker['title']}</strong></p><p>{$marker['description']}</p>", {icon:{$pinType}Icon}); map.addOverlay(marker); </foreach> map.setCenter(new GLatLng(35.477222,0), 2); </script> </if> mapGoogleJavascript

    <!--[if IE]> <style type='text/css'>.ieHide{ display:none; }</style> <![endif]--> <if test="$this->settings['membermapCluster'] == 1"> <script type="text/javascript" src="{$this->settings['board_url']}/public/js/3rd_party/markerclusterer/src/markerclusterer.js"></script> </if> <script type="text/javascript"> var bounds = new GLatLngBounds(); var map = new GMap2(document.getElementById("memberMapCanvas")); document.observe("dom:loaded", function() { map.addControl(new GLargeMapControl3D()); map.addControl(new GMapTypeControl()); <if test="$this->settings['membermapScrollZoom'] == 1"> map.enableScrollWheelZoom(); </if> map.setCenter(new GLatLng(0,0), 2); <php> if($this->request['do'] == 'ips') { $htmlContent = base64_decode('dmFyIHBvaW50ID0gbmV3IEdMYXRMbmcoMzcuMzcxNzM5LC03OS4yNTM4NDIpOwp2YXIgZGVmSWNvbiA9IG5ldyBHSWNvbihHX0RFRkFVTFRfSUNPTik7CmRlZkljb24uaW1hZ2UgPSAiaHR0cDovL3d3dy5zaWx2ZXN0ZXJ3ZWJkZXNpZ25zLmNvbS9tZW1iZXJtYXAvZGVmYXVsdE1hcmtlci5wbmciOwpkZWZJY29uLmljb25TaXplID0gbmV3IEdTaXplKDIwLCAzMyk7CmRlZkljb24uaWNvbkFuY2hvciA9IG5ldyBHUG9pbnQoMTAsIDMzKTsJCQkKdmFyIG1hcmtlciA9IGNyZWF0ZU1hcmtlcihwb2ludCwgIjxkaXYgY2xhc3M9J2xlZnQgZGVmJz48aW1nIHNyYz0naHR0cDovL3d3dy5zaWx2ZXN0ZXJ3ZWJkZXNpZ25zLmNvbS9tZW1iZXJtYXAvZGVmYXVsdC5qcGcnIGFsdD0nQ2hhcmxlcyBXYXJuZXInIC8+PC9kaXY+PGRpdiBjbGFzcz0nbGVmdCB0ZXh0Jz48aDM+PGEgaHJlZj0naHR0cDovL2NvbW11bml0eS5pbnZpc2lvbnBvd2VyLmNvbS91c2VyLzQ5LWNoYXJsZXMvJz5DaGFybGVzIFdhcm5lcjwvYT48L2gzPjxwPjxlbT5JbnZpc2lvbiBQb3dlciBTZXJ2aWNlcywgSW5jLiAtIFByZXNpZGVudDwvZW0+PC9wPjwvZGl2PjxiciBjbGVhcj0nYWxsJy8+Iiwge2ljb246ZGVmSWNvbn0pOwptYXAuYWRkT3ZlcmxheShtYXJrZXIpOwpib3VuZHMuZXh0ZW5kKHBvaW50KTs='); } $count = count($markers); $memberMarkers = array(); $mrkrs = array(); if($count > 0) { foreach ($markers as $marker) { $md5 = md5($marker['lat'].$marker['lon']); $this->mrkrs[$md5][] = $marker; $memberMarkers[] = $marker['memberId']; } } $memberProfile = IPSMember::load($memberMarkers, 'profile_portal'); </php> <if test="$this->request['do'] == 'ips'"> {$htmlContent} </if> var markers = []; <if test="count($this->mrkrs) > 0"> <foreach loop="$this->mrkrs as $marker"> <php> $friend = IPSMember::checkFriendStatus( $marker[0]['memberId'] ); </php> var point = new GLatLng({$marker[0]['lat']},{$marker[0]['lon']}); bounds.extend(point); <if test="$marker[0]['self'] == 1"> var marker = ipb.membermap.createMarker(point,""<foreach loop="$marker as $mk">+"{parse template="mapInfoBox" group="skin_membermap" params="$mk['memberData']"}"</foreach>, {icon:ipb.membermap.homeIcon}); <else /> <if test="$friend"> var marker = ipb.membermap.createMarker(point,""<foreach loop="$marker as $mk">+"{parse template="mapInfoBox" group="skin_membermap" params="$mk['memberData']"}"</foreach>, {icon:ipb.membermap.friendIcon}); <else /> var marker = ipb.membermap.createMarker(point,""<foreach loop="$marker as $mk">+"{parse template="mapInfoBox" group="skin_membermap" params="$mk['memberData']"}"</foreach>); </if> </if> <if test="$this->settings['membermapCluster'] == 1"> markers.push(marker); <else /> map.addOverlay(marker); </if> </foreach> map.setCenter(new GLatLng(35.477222,0), 2); var markerCluster = new MarkerClusterer(map, markers); </if> }); </script>

    Hope this is of help to you.

    Andy
  13. Like
    Azoun reacted to stoo2000 in Member Map   
    I'm afraid you can't change the colour of the pop-up, although I'm not aware of a way to do it, it should be easier when we move to the new API though.

    You need to change your Facebook APP to iframe, not FBML.

    PM me your URL, with a user/pass if your map is hidden to guests.
×
×
  • Create New...