Answer to General Questions – URL2App Knowledge-base https://URL2App.com/knowledge-base Sun, 06 Oct 2024 06:18:18 +0000 en-US hourly 1 https://wordpress.org/?v=6.9 Why payment is not working while upgrading my App? https://URL2App.com/knowledge-base/articles/why-payment-is-not-working-while-upgrading-my-app/ https://URL2App.com/knowledge-base/articles/why-payment-is-not-working-while-upgrading-my-app/#respond Sun, 06 Oct 2024 06:09:14 +0000 https://URL2App.com/knowledge-base/?post_type=manual_kb&p=2278

If you’re facing issues with your payment, don’t worry—you can try the alternative payment gateway option, which you’ll find at the bottom of the upgrade page 💳⬇. This alternative method might help resolve any issues caused by the primary payment option.

However, if you still encounter problems, it could be for one of the following reasons:

  1. Your card details might be incorrect—double-check the information you’ve entered to ensure it’s accurate 🔍✅.
  2. You may be using a local card that doesn’t support international transactions 🌍🚫. Some cards have restrictions that limit their use outside certain regions, which could be the cause of the failure.

If none of these solutions work, don’t stress—you can always connect with the support team for assistance 🛠💬. They’ll help you resolve any payment issues and guide you through the process, ensuring everything gets sorted out smoothly 😊👍

]]>
https://URL2App.com/knowledge-base/articles/why-payment-is-not-working-while-upgrading-my-app/feed/ 0
Why is the Navigation Drawer not showing? https://URL2App.com/knowledge-base/articles/navigation-drawer-not-showing/ https://URL2App.com/knowledge-base/articles/navigation-drawer-not-showing/#respond Thu, 03 Oct 2024 05:49:50 +0000 https://URL2App.com/knowledge-base/?post_type=manual_kb&p=2272

The navigation drawer might be working just fine in your app, but there’s a chance that your system navigation button is hidden from view on your phone 😅. This could lead to a frustrating situation where, when you slide left to right to access the navigation drawer, your phone accidentally exits the app instead 😫.

If you’re someone who prefers to keep the system navigation button hidden for a cleaner look, don’t worry—there’s a simple solution for you! 😊

Just head over to the Integration Module of URL2App and enable the App Bar option 🛠. This will allow you to access the drawer easily without the risk of accidentally quitting the app 🙌. Problem solved, and you’re back in control! 🎉

Also our support team is always here for help. ☎💬

]]>
https://URL2App.com/knowledge-base/articles/navigation-drawer-not-showing/feed/ 0
Why disabling Zoom not working in the app? https://URL2App.com/knowledge-base/articles/disabling-zoom-not-working/ https://URL2App.com/knowledge-base/articles/disabling-zoom-not-working/#respond Mon, 23 Sep 2024 11:51:54 +0000 https://URL2App.com/knowledge-base/?post_type=manual_kb&p=2223

On some Android devices, turning off zoom might not always work as expected 📱. This happens because different phone manufacturers customize the Android system in their own way ⚙. So, even if you try to disable zoom (like pinch-to-zoom gestures ✌) for design or accessibility reasons, it may not function properly on every device 🔄

To avoid this problem in your app, you can inject a custom CSS or JavaScript code into your web or app’s advanced settings 🛠. This approach allows you to manually control the behavior of zoom 🔍, ensuring greater compatibility across devices 📱.

 

 

Follow the procedure below:

  1. Go to Integration Modules 📂
  2. Enable Custom CSS & JS 🔧
  3. Copy the script below and paste it in ‘custom JavaScript’ ✍
  4. Click on Save Changes 💾

Hopefully, this will solve your issue! 🤞 If not, we suggest contacting support ☎. The support team can provide more tailored help or guide you through adding custom scripts to ensure zoom disabling works properly on your specific device 🔄.

The script:

var metaElement = document.createElement('meta');

metaElement.name = 'viewport';

metaElement.content = 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no';

var head = document.head || document.getElementsByTagName('head')[0];

head.appendChild(metaElement);     

 


]]>
https://URL2App.com/knowledge-base/articles/disabling-zoom-not-working/feed/ 0
How to show the camera option while uploading a file or image in the app? https://URL2App.com/knowledge-base/articles/show-camera-option-in-file-upload-field/ https://URL2App.com/knowledge-base/articles/show-camera-option-in-file-upload-field/#respond Mon, 23 Sep 2024 11:51:28 +0000 https://URL2App.com/knowledge-base/?post_type=manual_kb&p=2242 When clicking on a file upload field, the app will give you the option to upload an image 📸. If you want to add the option to use the camera directly for image uploads, follow these steps:

Steps to enable the camera for file uploads:

  1. Go to Advanced Settings ⚙ in your app’s configuration panel.
    • Enable the camera by selecting “Yes” to allow access to the device’s camera 📷. This will let users upload images by capturing them directly from the camera.
  2. Go to the Integration Module 🔧.
    • In the integration settings, enable Custom CSS & JS by toggling this option on.
    • Then, navigate to the Custom JavaScript section ✍.
    • Paste the script code provided below into the custom JavaScript field. This code will allow the camera to be accessed from the file upload field.
  3. After pasting the code, make sure to save your changes 💾 by scrolling to the bottom and clicking the “Save” button.
  4. Finally, rebuild the app 🛠 to apply the new settings. Once rebuilt, users will be able to choose between uploading an image from their gallery or using their camera directly when uploading files.

If you need further assistance or run into any issues, our support team is always available to help you ☎💬.

The script:

if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {

    const constraints = {

      video: true

    };

    navigator.mediaDevices.getUserMedia(constraints)

      .then(function (stream) {})

      .catch(function (error) {});

  }

]]>
https://URL2App.com/knowledge-base/articles/show-camera-option-in-file-upload-field/feed/ 0
Why some of the links are opening in the browser automatically? https://URL2App.com/knowledge-base/articles/links-are-opening-in-the-browser/ https://URL2App.com/knowledge-base/articles/links-are-opening-in-the-browser/#respond Mon, 23 Sep 2024 11:50:38 +0000 https://URL2App.com/knowledge-base/?post_type=manual_kb&p=2252

The URL address is considered the domain of a website. If you add a link from a different domain or external site, it may cause issues with how the app opens the content, as it might not be set to handle those URLs properly.

How to Fix It:

 

To resolve this, you can control which URLs open inside the app versus those that open in an external browser. Here’s how:

 

  1. Go to the Advanced Settings tab ⚙.
  2. In the  Include/Exclude URLs for opening inside app select Any URL can be displayed in the app.
  3. Save the changes 💾 and ensure the app is set up to handle URLs correctly.

By configuring these settings, you can prevent issues with external links and keep your app functioning smoothly.

]]>
https://URL2App.com/knowledge-base/articles/links-are-opening-in-the-browser/feed/ 0
Why location access is not working in the app? https://URL2App.com/knowledge-base/articles/location-access-is-not-working/ https://URL2App.com/knowledge-base/articles/location-access-is-not-working/#respond Mon, 23 Sep 2024 11:49:23 +0000 https://URL2App.com/knowledge-base/?post_type=manual_kb&p=2249 If  your app requires location updates you need to enable the location access from URL2App’s advanced settings tab.

If it is still not working then:

  1. Go to the Integration Module 🔧.
    • In the integration settings, enable Custom CSS & JS by toggling this option on.
    • Then, navigate to the Custom JavaScript section ✍.
    • Paste the script code provided below into the custom JavaScript field. After pasting the code, make sure to save your changes 💾 by scrolling to the bottom and clicking the “Save” button.

Finally, rebuild the app 🛠

If you need further assistance or run into any issues, our support team is always available to help you ☎💬.

The script: 

if ("geolocation" in navigator) {

    navigator.geolocation.getCurrentPosition(function(position) {

      // Successfully retrieved the location

      console.log("Latitude: " + position.coords.latitude);

      console.log("Longitude: " + position.coords.longitude);

    }, function(error) {

      // Failed to retrieve the location

      console.error("Error Code = " + error.code + " - " + error.message);

    });

  } else {

    console.error("Geolocation is not supported by this browser.");

  }
]]>
https://URL2App.com/knowledge-base/articles/location-access-is-not-working/feed/ 0
Enabled Camera Access but why still Camera option is not showing while choosing file or image? https://URL2App.com/knowledge-base/articles/camera-not-showing-while-choosing-file/ https://URL2App.com/knowledge-base/articles/camera-not-showing-while-choosing-file/#respond Mon, 23 Sep 2024 11:48:32 +0000 https://URL2App.com/knowledge-base/?post_type=manual_kb&p=2246 Sometimes, just enabling the Camera Access Permission from Advanced Settings page does not work for some sites. To solve that issue, make sure you followed the  procedure after enabling the camera access. Which is ,

  1. Go to the Integration Module 🔧.
    • In the integration settings, enable Custom CSS & JS by toggling this option on.
    • Then, navigate to the Custom JavaScript section ✍.
    • Paste the script code provided below into the custom JavaScript field. This code will show the camera permission popup when the app opens for the first time.
  2. After pasting the code, make sure to save your changes 💾 by scrolling to the bottom and clicking the “Save” button.
  3. Finally, rebuild the app 🛠 to apply the new settings. Once rebuilt, users will be able to choose between uploading an image from their gallery or using their camera directly when uploading files.

If you need further assistance or run into any issues, our support team is always available to help you ☎💬.

The script:

if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {

    const constraints = {

      video: true

    };

    navigator.mediaDevices.getUserMedia(constraints)

      .then(function (stream) {})

      .catch(function (error) {});

  }

]]>
https://URL2App.com/knowledge-base/articles/camera-not-showing-while-choosing-file/feed/ 0
Why is the website loading slowly in the app? https://URL2App.com/knowledge-base/articles/website-loading-slowly-in-app/ https://URL2App.com/knowledge-base/articles/website-loading-slowly-in-app/#respond Mon, 23 Sep 2024 11:47:36 +0000 https://URL2App.com/knowledge-base/?post_type=manual_kb&p=2239 URL2App displays the webpage directly within the app, without any intermediate layers 🌐. This means that if your website is fast, the app will perform quickly as well ⚡.

Let’s point out a few possibilities for slow performance:

  1. Heavy website content: In some cases, your website might be heavy with images, videos 🎥, and other content that takes time to load 🖼. While your website may seem fast, the app could take longer to load that content.
  2. Default Loader Setting: In URL2App’s case, the value for ‘Hide Circle Loader at % Page Loaded’ is set to 80% by default 📊. This means the app will only show progress once 80% of the website is loaded. To make the app feel faster, change the value to 40-60% ⚙. This will display progress earlier, speeding up the perceived performance of your app 🚀.
  3. Check your website’s speed: You can check your website’s loading speed using the tool 👉 PageSpeed Insights 🌍. If the results show your site is slow 🐢, you may need to optimize it to improve app performance.

If you need more help, our support team is always here for you ☎💬

 

]]>
https://URL2App.com/knowledge-base/articles/website-loading-slowly-in-app/feed/ 0
Content in website is updated but in app why it’s showing previous content? https://URL2App.com/knowledge-base/articles/app-showing-previous-content/ https://URL2App.com/knowledge-base/articles/app-showing-previous-content/#respond Mon, 23 Sep 2024 11:46:52 +0000 https://URL2App.com/knowledge-base/?post_type=manual_kb&p=2234 This issue can occur because of resource caching.

[Resource caching refers to the process of storing copies of files or data (like images, scripts, stylesheets, or web pages) locally on a device or server] 🗂. When caching is enabled, the app stores a local copy of previously loaded content 🗃. This means that updates made to websites may not appear in the app immediately, as it keeps showing the older cached version instead of loading the most recent content 🔄. So, if your app requires frequent data changes 🔁, the solution is to disable resource caching.

How to resolve the issue:

To fix this, follow these steps:

  1. Go to Advanced Settings ⚙.
  2. Locate the option for ‘Enable Resource Caching’ 📂. By default, this option might be set to ‘YES,’ which enables caching ✅.
  3. Select ‘NO‘ from the dropdown or toggle button to disable resource caching 🚫. This ensures that the app will always load the latest version of your website 🔄.
  4. Save the changes 💾 by scrolling to the bottom and clicking the ‘Save‘ button.

 

Once you’ve done that, you need to rebuild the app 🛠 and update it 🔃 on the relevant platform. After this process, the app should display the most current version of your website.

]]>
https://URL2App.com/knowledge-base/articles/app-showing-previous-content/feed/ 0
Why is the double back press to exit app not working? https://URL2App.com/knowledge-base/articles/double-back-press-to-exit-app-not-working/ https://URL2App.com/knowledge-base/articles/double-back-press-to-exit-app-not-working/#respond Sun, 15 Sep 2024 17:48:55 +0000 https://URL2App.com/knowledge-base/?post_type=manual_kb&p=2161 The double back press feature allows users to press the back button twice quickly to confirm exiting an app. On the first press, a message like “Press back again to exit” 🛑 appears. If the user presses the back button again within a short time, the app will close 🔚.

This feature helps avoid accidental exits by requiring a second confirmation, making navigation smoother and less frustrating 👍.

To fix the double back press issue for exiting the app:

  1. On the Homepage 🏠: When you’re on the homepage, pressing the back button won’t show an exit confirmation pop-up. That’s the normal behavior!
  2. On Other Pages 📄: If you’re browsing any other page, pressing the back button will bring up the exit confirmation pop-up, letting you exit the app with a simple tap.
  3. Adjust Settings ⚙: Make sure the “Show Exit App Confirmation on Double Back Press?” setting is enabled. Head to the Customization tab and set it to “Yes” to turn on this feature.

Follow these colorful steps to make sure the double back press works perfectly and shows the exit confirmation when needed! 🌟🚀

]]>
https://URL2App.com/knowledge-base/articles/double-back-press-to-exit-app-not-working/feed/ 0