استرداد المبلغ والغاء الاشتراك

  • khaledalsubaie96
    تم السؤال بتاريخ ٦ نوفمبر ٢٠٢٣ في ٣:١٢ م

    لا اود تجديد الاشتراك ولا الاستمرار في العمل على تقرير الاستبيانات والتقارير وذلك لعدم توفر نماذج بصيغه عربيه تبدا من اليمين الى اليسار

  • Gian Jotform Support
    تم الرد بتاريخ ٦ نوفمبر ٢٠٢٣ في ٦:٤٥ م

    Hi khaledalsubaie96,

    Thanks for reaching out to Jotform Support. Unfortunately, our Arabic Support agents are busy helping other Jotform users at the moment. I'll try to help you in English using Google Translate, but you can reply in whichever language you feel comfortable using. Or, if you'd rather have support in Arabic, let us know and we can have them do that. But, keep in mind that you'd have to wait until they're available again.

    Now, let me help you with your question. You can create a form in Arabic format and start the questions from right to left. We can also inject CSS codes into your forms to achieve that. You can share the URL of the form that you're working on so we can help you.

    Otherwise, let us know if you want to continue with the cancelation.

    Let us know if you need any other help.

  • محمد خيراني
    تم الرد بتاريخ ٩ نوفمبر ٢٠٢٣ في ٥:٠٦ م

    override func application(

    _ app: UIApplication,

    open url: URL,

    options: [UIApplication.OpenURLOptionsKey : Any] = [:]

    ) -> Bool {

    if (try? CoinbaseWalletSDK.shared.handleResponse(url)) == true {

    return true

    }

    // handle other types of deep links

    return false

    }


    override func application(

    _ application: UIApplication,

    continue userActivity: NSUserActivity,

    restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void

    ) -> Bool {

    if let url = userActivity.webpageURL,

    (try? CoinbaseWalletSDK.shared.handleResponse(url)) == true {

    return true

    }

    // handle other types of deep links

    return false

    }