Jump to content

Martin A.

Clients
  • Posts

    4,230
  • Joined

  • Last visited

  • Days Won

    21

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Martin A.

  1. Is it not showing new images, or are location changes to existing images not updated? Are you sure the images contain location information? Is the category the image is uploaded to visible to guests?
  2. I think you could have done width: unset !important;
  3. Hello, You would need to get official support for this, as dissociating a marketplace resource is not something you can do in your own. Do not under any circumstances uninstall Member Map, as that will result in data loss. Please let me know how this goes 🙂 To clear things straight away; Member Map was a free app, you did not purchase this back in the days. Community Map is a paid app, and you will be asked to purchase a copy of that once you get that issue cleared out.
  4. This is a nice one. If you edit it from the overview it goes to the "api" controller, which properly loads the api.css. If you edit it from the OAuth details page it goes to the "oauth" controller which doesn't load the css.
  5. But are you able to get the error message? And what PHP version are you on?
  6. I have a hard time believing updating this app was the issue. Pretty much all the last update did was update language strings and bump the versions of Javascript libraries used by the map, none which should cause the entire site to break down. Are you able to get the PHP error message?
  7. Yes it is. There was nothing in the last update that broke compatibility with 4.6.
  8. Unless you can sort this out with custom fields, it should be in the marker description. Or it may be solved with a template edit. The styling of the markers in that category is done on a per-group level. I should have added a notice about this in the category form. What is your reason for setting a max height? The large gap at the bottom is because of this max height. You have to set this restriction to #mapWrapper, as this is the div that controls the height of the map.
  9. @Steve Bullman The map should resize itself to fill as much space as it can. I'll have check into this soon. Changing the height in that template does not do anything, as this calculation is done in the javascript.
  10. You can remove that from the template. Replace the content of the template "viewMarker", in communitymap > front > markers, with the content of the attached file. viewMarker.txt
  11. The markers for each category is customizable. I am not aware of there being any issues changing the URL.
  12. {{if \IPS\cms\Pages\Page::$currentPage and \IPS\cms\Pages\Page::$currentPage->id == 15}} YOUR CODE {{endif}}
  13. Any news on this? Our slow query log is FULL of this now.
  14. I don't think that will cause issues. I do the same for my mobile ads. Google will not load ads in containers that are hidden. {{$guestAdvert = \IPS\core\Advertisement::loadByLocation( "index_970x250" );}} {{if $guestAdvert !== NULL}} <div class="ipsResponsive_showDesktop"> {$guestAdvert|raw} </div> {{endif}} {{$guestAdvertMob = \IPS\core\Advertisement::loadByLocation( "index_970x250_mobile" );}} {{if $guestAdvertMob !== NULL}} <div class="ipsResponsive_hideDesktop"> {$guestAdvertMob|raw} </div> {{endif}}
  15. No, there's no proper way to tell what device is being used on server side. You should use the responsive CSS classes for this instead.
  16. PHP Fatal error: Type of IPS\File\_Exception::$file must be string (as in class Exception) Getting lots of those. Opening the file in PhpStorm gives more details
  17. The argument $count in the constructor. Not the class var $count. The method arg was added in 4.7 beta 1
  18. When manually running the queue from the ACP, the keyLocation submitted to IndexNow uses the ACP base url. Got errors like these: 422 invalid_url Array ( [host] => www.site.com/ [key] => 6c076eb62f3b43e8cf6c62a8d69dff7a [keyLocation] => https://www.site.com/admin/<hash>.txt [urlList] => Array ( [0] => https://www.site.com/<url> ) ) Issue is here: $url = \IPS\Http\Url::internal(''); $data = array( 'host' => \IPS\Http\Url::baseUrl(\IPS\Http\Url::PROTOCOL_WITHOUT ), 'key' => \IPS\Settings::i()->indexnow_key, 'keyLocation' => (string) $url->setPath( $url->data[ \IPS\Http\Url::COMPONENT_PATH ] . $this->getKeyFileName() ), 'urlList' => $urls, ); $url should specify the 'front' base $url = \IPS\Http\Url::internal( '', 'front' ); Error happened in 4.6, but this file is not touched in 4.7.
  19. That file isn't purchasable as @newbie LAC is in the "Members" group.
  20. Can add that we're seeing the same numbers. Takes 14+ seconds to load a combined view with 2 subforums.
  21. Or add it as attributes to the element where you define your controller. <div data-controller="my.controller.here" data-var="{$var}"> Then access with in your controller this.scope.attr( 'data-var' )
  22. This is the support topic for the old unsupported Member Map application. Please use the new topic
  23. This was posted in the old support topic I don't keep a list of sites that use this app, nor do I have the ability to do so. But have a look through the last pages of topic and look at the sites posted, or if their site is linked in the signature. Below is @Unlucky's site that use almost all features of this application, except member markers. https://www.walkingfootball.com/communitymap/ And here's @bradl's site, which only have member markers. https://www.cairntalk.net/communitymap/
  24. This would be how the settings should look like: The "Profile Field" refers to one (or more) or the profile fields you'll define in in the core software. You'll find this under Members > Member Settings > Profiles Once you got this right, you can go to your own profile and edit the selected profile field in order to test this. Add your marker when viewing the map on the front end by either clicking the "Add Location" button or right click on the spot where you want your marker to be placed.
  25. Profile sync is what you use to automatically populate the map. This will both, when enabled, add markers for members that don't have one, and also reflect any changes they do to their profile back to the map. Meaning that when they change the location in the profile field you set to be the location, if will also change their location on the map. Do note that the import process is done with a daily task that imports 100 members. Just enabling the settings and all that will not cause all members to show up immediately, as this would most likely use up your entire monthly API quota. Do you mean a new marker category? Or a new map marker?
×
×
  • Create New...