962 comments found.
Hi MGAppcelerator, i bought your app (ios and android) a couple years ago. Now i want to test release 2.0. So i have several questions:
- How to edit “consent” content
- Is “terms and conditions” a scroll view? It looks like a normal view with 3 paragraphs. Our terms and conditions has about 15 paragraphs. A html view with scroll function where nice.
- How to edit “About us”
- Is it possible to add a second language: german?
In tutorial i only find some information for android but not for ios xcode. Could you help please?
regards from germany
Hi, we have updated the tutorials for iOS. The consent is automatically calculated. Regardless if you type in long text and add also a
\n\nfor new line per paragraph, that would work.
For about us and terms and condition page. Edit it directly in the AboutView.xib and TCView.xib
Guys, on the precedent version you told me to use \n to add a space between paragraph. So:
text \n text
Now this function doesn’t works. App show: text\ntext
How I can fix it? Thanks a lot for all.
Guys, forget it. I got it using the new html function! Need to find a way to replace the old one.
Quick question: When I buy the website can I overwrite the current backend folder or will I have to recompile the apps?
Yes, you can. just keep the details inside the Config.php. There is also a new tutorials for website on how to make the facebook and twitter login work.
Hi guys, updating to 1.13 (app and php script) I have this issue showing on app
French “Mirazur” At The Top! (who look fine on php script) become into the app: French “Mirazur” At The Top!
precedent app version works fine. do you have a fix for this?
many thanks!
What is this? We can’t seem to find any difference?
Ok.Please see this picture: https://ibb.co/JQgVczF
French “Mirazur” At The Top! (who look fine on php script) become into the app: French "e ; Miramar "e ; At The Top!
Can you give us screenshots. Maybe communicate via email so that we can check it right away. mangasaurgames@gmail.com
Thanks for your answer. Works fine now.
Build Error Log below:
2019-07-10 14:16:37.139351-0400 StoreFinder[1871:508612] Google Mobile Ads SDK version: afma-sdk-i-v7.31.0 2019-07-10 14:16:37.200500-0400 StoreFinder[1871:508905] Reachability Flag Status:- First throw call stack: (0×1b2f56168 0×1b346151c 0×1b2e5b3e8 0×1bab32fa4 0×1b2f5a0e4 0×1b2f5bdac 0×1ba443024 0×1ba442150 0×1ba4359ec 0×1ba43360c 0×1ba4391f4 0×1ba433258 0×1ba430c18 0×1bab3bb8c 0×1bab3cba4 0×10056bd1c 0×1b2b8be50 0×1b2ed3e54 0×1b2ed3de0 0×1b2ed356c 0×1b2ece6cc 0×1b2ecdf6c 0×1b20d5180 0×1bab0586c 0×100594ba0 0×1b3422c6c) libc++abi.dylib: terminating with uncaught exception of type NSException (lldb)
Hi, ok let us check. What Xcode version you are using?
We did check and it works fine. Can we know how can we replicate the issue you reported?
10.2.1 and Xcode beta 11. Same issue as @carl5243
Just build even out of the box gets the error.
We have the same Xcode build. 10.2.1 Did you try to Go to Simulator > hardware > Erase all content and settings.
Our testing just now to verify doesn’t have any issue and it works fine.
It doesn’t load to my device either..
Does It crash or not? Basically, logs are just for debugging only. If the app still usable or does not terminate then it is not crashing.
If you want to ignore, Go to Store Finder > Edit Scheme > Run > Arguments > Check OS_ACTIVITY_MODE
Terminating app due to uncaught exception ‘NSInvalidArgumentException’, reason: ‘-[ECSlidingViewController notifyWhenInteractionChangesUsingBlock:]: unrecognized selector sent to instance 0×138068600’
Can you send a screenshots on our email mangasaurgames@gmail.com on your Project Settings > Targets.
We really don’t know what is happening in your case because we can’t replicate it.
A video also might help so that we can see what is happening in your machine. We can’t guess the issue here if we cannot replicate.
Will do. Thanks a million for your help.
Sent, hope it helps..
This is where it stops: }
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
I’M STUPID!!!!!!!!!! I didn’t have location on in simulator…. SORRY FOR BEING SLOW….... You guys are the best!!!!
Fixed on simulator but not on device. Location is on. Not sure if because phone is ios 13…..
We cannot verify it in iOS 13 if it is still in beta. So we do not recommend upgrading or testing it first in iOS 13 not unless it us for Final Release.
You are 100% correct. iOs13 was the issue…
Hi,
I try to build the project by using my iPad for test, the Xcode shows the GoogleMobileAdsSdk version too old! How do I update the SDK by following the website https://developers.google.com/admob/ios/quick-start ? I can’t find the “GADApplicationIdentifier” value to update the key.
Actually not useful. Not all logs written in the Xcode are errors or missing. It is just a debug log.
You can download the update here by simply overwriting the libraries.
https://developers.google.com/admob/ios/downloadHello, Store Finder Website is out. you can check this you might be interested. https://codecanyon.net/item/store-finder-admin-website-v10/24076518
mcrypt_encrypt() is deprecated
Can we get updated php scripts for the backend on php 7.3 please 
We havent added the update yet for iOS. But if you bought the Android version, the backend there is already updated and we remove the mcrypt usage to another non PHP libraries dependent encryption.
Hello, Store Finder Website is out. you can check this you might be interested. https://codecanyon.net/item/store-finder-admin-website-v10/24076518
Hi MGAppcelerator,
How do I call to the second image in the array? I duplicated the code that exists throughout the app, but it’s showing the same image.
DetailViewController.m:https://codecanyon.net/comments/21921915/edit
Photo* p = _arrayPhotos nil || _arrayPhotos.count 0 ? nil : _arrayPhotos [0];
Photo* p2 = _arrayPhotos nil || _arrayPhotos.count 0 ? nil : _arrayPhotos [0];
if(p != nil) [self setImage:p.photo_url imageView:_headerView.imgViewPhoto];
if(p2 != nil) [self setImage:p.photo_url imageView:_headerView.imgViewPhoto02];
Hi,
Photo* p2 = _arrayPhotos != nil || _arrayPhotos.count > 1 ? _arrayPhotos [1] : nil;
Hi MGAppcelerator,
Also, how do I call to the second image from the “arrayPhotos” for the SearchResultViewController.m? I duplicated the code that exists throughout the app, but it’s showing the same image again.
SearchResultViewController.m
Photo* p = [CoreDataController getStorePhotoByStoreId:store.store_id];
Photo* p2 = [CoreDataController getStorePhotoByStoreId:store.store_id];
if(p != nil) [self setImage:p.thumb_url imageView:cell.imgViewThumb];
if(p2 != nil) [self setImage:p2.thumb_url imageView:cell.imgViewThumb02];
Will the solution above work for SearchResultViewController.m?
In this example or another,
Photo* p2 = _arrayPhotos != nil || _arrayPhotos.count > 1 ? _arrayPhotos [1] : nil;
Also, thank you for your fast response!
Yes. It will work.
Hello, Store Finder Website is out. you can check this you might be interested. https://codecanyon.net/item/store-finder-admin-website-v10/24076518
Hello, pre-purchase question for localization of multi-languages 1. Is the localization string inside the iOS app? 2. If so, after app is uploaded to App Store, if I add/modify content from admin panel, should I modify the localization string inside app and upload the App again to App Store?
Thank you
Hi,
1.) Yes
2.) There are some clever way to do it aside from reuploading the app everytime you add another translation or data translation. You only upload the app once, you can translate the app to different language but a little modification needed to be able to show also the translated data from the server. You can email us here for custom work. mangasaurgames@gmail.com
Thank you. I have sent a email to you.
Ok we will check.
how does store owners add their stores? HHow does Admin earns from it? Are store owners required to pay to add their stores, or subscription features, etc?
Stores entry are added by admin. For payment requirement to add stores via in the app, it needs code modification.
Hello please get back to me i need news about the app! thank you
Hi, After buy both iOS and Andorid , does it comes with 100% source code or do you encrypt anything inside ?
Hi, yes it does. No encryption.
it is 100% plain text source code , not even embedded your own class file ?
We have created our own files to simply things up. It is 100% plain text source code.
Hi…...
There is a problem in Google Map in admin backend
Please solve the problem as soon as possible
Hi, that is easy. You just need to get your own API Key here http://console.developers.google.com/ and add it inside store_insert.php and store_update.php
Hi I added API Key But the problem has not been solved
http://apps.aljthoor.com/333.pngDid you Enable the Google Maps Javascript API?
yes
You mean this
https://imgur.com/a/wsnjLvTMaps Javascript API enabled But the problem has not been solved
Can you email me here mangasaurgames@gmail.com and we will check your server
I sent the information server
Hello. I’m totally new to mobile app. Some questions 1) Your app can be used together with a wordpress directory theme?
Hi,
1.) Nope. It does have admin backend to manage data.
Is it possible to add html code to each business? that is, to be able to embed YouTube code for a video
Hi, not possible but via freelance work. Email us here. mangasaurgames@gmail.com
How could it fit the screen of an iphone x?
Hi, we have an update on it. We are still finalizing it and hoping for release next week.
Hello, I would like to edit the home page layout of the app. The current screen displays a featured companies slide and below the recent news.
I’d like to change the layout so it looks like the image below (SEE THE URL BELOW). Where can I change and what files should I change?
Thank you!
Hi, yes possible. Email us here. mangasaurgames@gmail.com
Hi, i’ve bought both versions of store finder and i would ask a question about searching. How can i extend searching even on description area for both versions ? I can’t put tags on address boxes, i want to use them for localization. But i need customers to search shops even by descriptions. It will be more exact. please help me solve this. Thanks.
HI, you can email us here. mangasaurgames@gmail.com
Hi, we like to buy your Store Finder Full Application for iOS and Android, the android version have recent actualizations but the iOS last actualization is in 2017. Is safe to publish in App Store the iOS version? Is the same app the iOS version and the Android version?
Yes still safe. We have a pending update on it and it will be released all next week. The updates are adjustments and latest xcode project integration
Thanks, please exists any video demo or iOS app in App Store to test?
Hello, I would like to duplicate the link button for website to display two sites per each client. How can I do this in the iOS app and in the Admin panel?
See the sample image: https://i.imgur.com/60lBNc3.png
Thank you!
HI, email us here. mangasaurgames@gmail.com
Hello, email sent a few hours ago. I await an answer.
Hi, yes replied in your email already.