Forum Replies Created

Viewing 15 replies - 751 through 765 (of 935 total)
  • in reply to: First login after installation #676

    Hi

    Have your issue fixed? or till now you facing, please share your URL and admin login, let us see

    Best regards

    in reply to: Confirm Paypal #654

    Hi

    I don’t think

    You need to be add another paypal_email format foru-gorup just below paypal_email div wrap, i am giving you example code

    <div class="form-group {{ $errors->has('confirm_paypal_email')? 'has-error':'' }}">
                                        <label for="confirm_paypal_email" class="col-sm-4 control-label">@lang('app.confirm_paypal_email')</label>
                                        <div class="col-sm-8">
                                            <input type="text" class="form-control" id="confirm_paypal_email" value="{{ withdrawal_preference('confirm_paypal_email') }}" name="confirm_paypal_email" placeholder="@lang('app.confirm_paypal_email')">
                                            {!! $errors->has('confirm_paypal_email')? '<p class="help-block">'.$errors->first('confirm_paypal_email').'</p>':'' !!}
                                        </div>
                                    </div>

    Add above code right after line number 54 in /root/resources/views/admin/withdrawal_preference.blade.php

    You need to be write code also in UserController in method withdrawalPreferenceUpdate()

    Giving an example

    Write below code to validate if really it’s confirmed and matched both email

    Place it write after 153 number line in UserController.php

            if ($request->paypal_email !== $request->confirm_paypal_email){
                return back()->with('error', 'confirm email does not mathced');
            }

    And for update, add an array item to $data like below, though i am giving you full $data value

            $data = [
                'default_withdrawal_account'    => $request->default_withdrawal_account,
                'paypal_email'                  => $request->paypal_email,
                'confirm_paypal_email'                  => $request->confirm_paypal_email,
                'bank_account_holders_name'     => $request->bank_account_holders_name,
                'bank_account_number'           => $request->bank_account_number,
                'swift_code'                    => $request->swift_code,
                'bank_name_full'                => $request->bank_name_full,
                'bank_branch_name'              => $request->bank_branch_name,
                'bank_branch_city'              => $request->bank_branch_city,
                'bank_branch_address'           => $request->bank_branch_address,
                'country_id'                    => $request->country_id,
                'user_id'                       => $user_id,
            ];

    Now you need add a field to Withdrawal_preferences table in database, field type should be varchar 255 length
    field name: confirm_paypal_email

    Hopefully it will be help you

    BTW: from now, we are unable to provide regular support untile 8th September 2017, please see the notice in right sidebar.

    Best regards

    in reply to: Error with Fcebook login #653

    Hi

    Your localhost maybe missing something, please try to check it in our server, hopefully it will work fine.

    Best regards

    in reply to: Urgent Requirement #652

    Dear @jinshu1987

    Thank yo for your offer, we never charge from our valuable buyers more then cost, we just make quote in tight budget, because of we think buyer will happy to get own features.

    Our working hours cost will not be below then $400 USD, So we can do it for $400 with your mentioned features.

    Let us make clarification about exclusive license for your features

    We can guaranty about Point 1,4,5 that it will not come any future update.

    But Premium campaign is in our plan, we may introduce it or not. it’s 90% sure that we will not include it, if any how we include, it will be not your coding, we will introduce in another way but not yours feature, though it will not soon ad possible is just 10%. (It’s just a condition in our favor)

    If you confirm us, then we can start after end our vacation. Feel free let us know

    Best regards

    in reply to: Unable to upload any images #651

    Hi

    Please check your server extension called fileinfo, set false to APP_DEBUG in .env file

    If still it’s show error, please wait until 08 September 2017, because of you may already seen our notice about vacation in right sidebar, we are including also here.

    Dear buyers,

    Due to a vacation, our office will be close from 29 August 2017 to 08 September 2017, in this time, we may unable to provide any support. But keep asking your question on our forums. We will start support again as soon as possible after open office.

    Sorry for the inconvenience.

    Best regards

    in reply to: New product sell issue #650

    That’s great

    in reply to: Category image #643

    Please send me your cPanel in private reply, also send your admin panel login info, our technical team will help you.

    BTW: Our office is now closed, we will fix it tomorrow.

    Best regards

    in reply to: Category image #641

    You have did wrongly, please remove closing first bracket from your code,

    Like you’ve placed $upload_dir = './uploads/images/';)

    It should be $upload_dir = './uploads/images/';

    Then your issue will be fixed

    in reply to: New product sell issue #640

    Please send us your URL and cPanel info in a private reply, so we will check it

    Best regards

    in reply to: Change default mao #638

    You are most welcome

    in reply to: Alignment #636

    Hi

    It’s masonary grid system, when it loading full, then it will be show find, but we will change this style in update.

    Best regards

    in reply to: Urgent Requirement #635

    Hi @jinshu1987

    Thank you for clarification, but this is not really a simple task.

    Letting you know what we can do in $150

    1. Make the user profile completion mandatory to submit the campaign.
    3. User registration mandatory email verification (we’ve added this for honor)

    2. Premium Campaign – means user can pay a fixed amount to promote the campaign. (This is totally a separate module for making a campaign premium, it’s related with payment, and other algorithm, the cost will be for it only $200 )

    4. Can you enable to add a fixed % service charge for the withdrawal apart from the platform charge (Yes, we can, the cost will be only $100)

    5. Is it possible to automatic deduction of Platform commission+Service charge from the total amount if the campaign withdrawal is approved? How’s the payments done? is it manual process to release the funds?

    You need release payment manually, the platform commission already deducting during withdrawal, and service charge deduction is related to number 4, so we’ve added this cost with number 4.

    Feel free let us know

    Best regards

    in reply to: Category image #634

    Hi

    In file /root/app/Http/Controllers/CategoriesController.php On line 40

    Replace the line $upload_dir = public_path('uploads/images/'); with $upload_dir = './uploads/images/';

    So the categories image will be start working

    Best regards

    in reply to: Category image #627

    Please share your URL here

    Best regards

    in reply to: Whoops, looks like something went wrong. #625

    You are most welcome

    To support us, please place a 5-star rating to our product (if you have time) https://codecanyon.net/item/themeqxestate-laravel-real-estate-property-listing-portal/19253362

    Best regards

Viewing 15 replies - 751 through 765 (of 935 total)