Forum Replies Created

Viewing 15 replies - 451 through 465 (of 935 total)
  • in reply to: Uploaded image is rotated #1737

    Hi

    Please check, your issue has been fixed to campaigns feature image.

    Best Regards

    in reply to: Help Us Install issue #1736

    Hi

    Please place your website URL and server information, So I can see the issue and fix immediately.

    Best Regards

    in reply to: Please Help … #1735

    Hi

    1. Subcategory is not available in this application
    2. Bidder name cannot be shown here, because of anyone can set
    3. Yes, the owner can put owners price, but it needs to meet minimum Bid amount.

    Best Regards

    in reply to: Help Us Install issue #1728

    Please download the latest sql file that we’ve updated recently

    Import that SQL file and delete your previous database.
    Then you can logged in easily without reCAPTCHA

    If you want to use reCAPTCHA, enable it with your credential.

    Best Regards

    in reply to: I need help with the facebook Social Log in #1727

    is social logged in working now?

    in reply to: Withdrawals (getfund) #1726

    Hi

    The user can withdraw from WithDraw menu from the left side of the admin panel.

    After Campaign End, campaign owner will get an option to make withdraw the request.

    Best Regards

    in reply to: Please some issues #1687

    Dear @solfitec

    Please check the application carefully, I am describing the application lifecycle.

    Agent Will sell the product, not Admin, make some fresh users with the referral code.
    During sales, select that users which registered using another referral code. Such as

    User 1 has been registered
    User 2 registered using User1 Ref Code

    Agent1 sold some product to user 2

    The Commission will be divided by below format

    Agent1 will get his mentioned percent as commission
    User1 will get the commission as percent for reference
    User2 will get his commission for buying the product (You can disable it by the set commission to 0 at settings)
    Admin Will get his commission as mentioned percent as platform owner

    In the settings, you can set persons commission

    Agent Commision
    User Commision
    Refferal Commision
    Admin Commision

    If you need anything more or your requirement is the difference, then you need to be customized this product, it will reduce your cost instead of making the new one.

    Best Regards

    in reply to: Bank Account Number #1681

    Hi @kezzlock

    Please find the ChangeLog below.

    1. Added a database called bank_payments, Please import it into your current database. below Migration.

    Migration File name: 2018_06_03_183905_create_bank_payments.php

    
    
    use Illuminate\Support\Facades\Schema;
    use Illuminate\Database\Schema\Blueprint;
    use Illuminate\Database\Migrations\Migration;
    
    class CreateBankPayments extends Migration
    {
        /**
         * Run the migrations.
         *
         * @return void
         */
        public function up()
        {
            Schema::create('bank_payments', function (Blueprint $table) {
                $table->increments('id');
                $table->integer('user_id')->nullable();
                $table->integer('campaign_id')->nullable();
                $table->string('bank_swift_code')->nullable();
                $table->string('account_number')->nullable();
                $table->string('branch_name')->nullable();
                $table->string('branch_address')->nullable();
                $table->string('account_name')->nullable();
                $table->string('iban')->nullable();
                $table->text('notes')->nullable();
                $table->timestamps();
            });
        }
    
        /**
         * Reverse the migrations.
         *
         * @return void
         */
        public function down()
        {
            Schema::dropIfExists('bank_payments');
        }
    }
    
    

    2. Routes Lists, add below route to web.php line number 171 under group > admin > users

    
     Route::get('add-bank/{id}', ['as'=>'add_users_bank_account', 'uses' => 'UserController@addBankAccount']);
                Route::post('add-bank/{id}', 'UserController@addBankAccountPost');
    
                Route::get('bank-edit/{id}', ['as'=>'bank_edit', 'uses' => 'UserController@bankEdit']);
                Route::post('bank-edit/{id}', 'UserController@bankEditPost');
    
                Route::get('bank-delete/{id}', ['as'=>'bank_delete', 'uses' => 'UserController@bankDelete']);
    

    3. Model > Add BankPayment.php from app directory
    4. Controller, Add below methods to UserController

    
    
        public function addBankAccount($id){
            if ($id){
                $title = trans('app.add_bank');
                $user = User::find($id);
                $campaigns = Campaign::active()->orderBy('created_at', 'desc')->get();
    
                return view('admin.add_bank', compact('title', 'user', 'campaigns'));
            }
        }
    
        public function addBankAccountPost(Request $request, $id){
    
            $rules = [
                'campaign_id'       => 'required',
                'bank_swift_code'   => 'required',
                'account_number'    => 'required',
                'branch_name'       => 'required',
                'branch_address'    => 'required',
                'account_name'      => 'required',
            ];
            $this->validate($request, $rules);
    
            $check_duplicate = BankPayment::whereUserId($id)->whereCampaignId($request->campaign_id)->first();
            if ($check_duplicate){
                return back()->with('error', trans('app.bank_payment_exists_info'));
            }
    
            $bank_data = array_except($request->input(), '_token');
            $bank_data['user_id'] = $id;
    
            BankPayment::create($bank_data);
            return back()->with('success', trans('app.bank_payment_created'));
        }
    
        public function bankEdit($id){
            $bank = BankPayment::find($id);
    
            if ($bank){
                $title = trans('app.edit_bank');
                $campaigns = Campaign::active()->orderBy('created_at', 'desc')->get();
    
                return view('admin.edit_bank', compact('title', 'bank', 'campaigns'));
            }
    
        }
    
        public function bankEditPost(Request $request, $id){
            $bank = BankPayment::find($id);
    
            $rules = [
                'bank_swift_code'   => 'required',
                'account_number'    => 'required',
                'branch_name'       => 'required',
                'branch_address'    => 'required',
                'account_name'      => 'required',
            ];
            $this->validate($request, $rules);
    
            $bank_data = array_except($request->input(), '_token');
            $bank->update($bank_data);
            return redirect(route('add_users_bank_account', $bank->user_id))->with('success', trans('app.bank_payment_updated'));
    
        }
    
        public function bankDelete($id){
            BankPayment::find($id)->delete();
            return back()->with('success', trans('app.bank_payment_deleted'));
        }
    
    

    Replace the checkoutPost fromCampaignsController with below method

    
      public function checkoutPost(Request $request){
            $title = trans('app.checkout');
    
            if ( ! session('cart')){
                return view('checkout_empty', compact('title'));
            }
    
            $cart = session('cart');
            $input = array_except($request->input(), '_token');
            session(['cart' => array_merge($cart, $input)]);
    
            if(session('cart.cart_type') == 'reward'){
                $reward = Reward::find(session('cart.reward_id'));
                $campaign = Campaign::find($reward->campaign_id);
            }elseif (session('cart.cart_type') == 'donation'){
                $campaign = Campaign::find(session('cart.campaign_id'));
            }
            $bank = false;
            if (Auth::check()){
                $user_id = Auth::user()->id;
                $bank = BankPayment::whereUserId($user_id)->whereCampaignId($campaign->id)->first();
            }
            
            //dd(session('cart'));
            return view('payment', compact('title', 'campaign', 'bank'));
        }
    

    6. Views, Copy two files from existing directory to your directory

    
    /root/resources/views/admin/add_bank.blade.php
    /root/resources/views/admin/edit_campaign.blade.php
    

    Replace the below file

    /root/resources/views/payment.blade.php

    7. Language Strings, Add the below array items to

    /root/resources/lang/en/app.php

    
    /**
         * Customization for Michal
         */
        'min_amount_instruction'            => 'Minimum amount must be at least',
        'add_bank'                          => 'Add Bank',
        'select_campaign'                   => 'Select Campaign',
        'notes'                             => 'Notes',
        'bank_payment_created'              => 'Bank Payment info has been created',
        'bank_payment_updated'              => 'Bank Payment info has been Updated',
        'bank_payment_deleted'              => 'Bank Payment info has been Deleted',
        'bank_payment_exists_info'          => 'A bank payment method already exists with selected campaign and this user',
        'edit_bank'                         => 'Edit Bank',
    

    <h4>Min Amount Restrictions</h4>

    Replace below two files to add min amount field

    
    /root/resources/views/admin/start_campaign.blade.php
    /root/resources/views/admin/edit_campaign.blade.php
    

    Add below code line to /root/resources/views/layouts/footer.blade.php right after @yield('page-js')
    @yield('campaign-sidebar-js')

    Replace the file /root/resources/views/campaign_single_sidebar.blade.php

    This the complete change log, Please let me know if you facing any issue.

    Best Regards

    in reply to: issue that need fix #1640

    Hi

    Could you please let us know when you getting this issue? 1 and 2

    1. is this admin URL or in frontend URL, Please provide a specific URL.

    So I will check and fix this.

    Best Regards

    in reply to: Please Help #1597

    Hi

    This is checking our dev team, we will reply you soon after success.

    Best Regards

    in reply to: Please Help #1594

    Let me see your next issue why it’s not showing your selected city

    in reply to: Please Help #1592

    Hi

    your issue has been fixed, please check https://www.olmshop.com/index.php/ad/74/samsung-j2

    Best Regards

    in reply to: Bank Account Number #1589

    Hi @kezzlock

    We charge only $20/H

    Feel free let us know, So we can go ahead.

    Best Regards

    in reply to: Bank Account Number #1584

    Hi

    Will you show them by login credential? or you show all of the accounts by writing account info like below

    1st investor
    AC:234234234234

    2nd Investor
    A/C: 23434545656756

    and So On

    If you need to show them by login credential, then you need to make a feature to accomplish this.

    You can hire someone to do this or you can hire us to make this feature.

    Or if you like to show all of the accounts, you can just write information to that template blade located.

    Best Regards

    in reply to: Add newsletter to getfund theme #1583

    Hi

    If you wish to make a newslatter module, then you need to write code for this. I’m explaining this below.

    Add HTML form to view newsletter module
    Add Database Table (Migration)
    Add Model of that table
    Add Controller to write the logic

    Set action from HTML form to your route,
    the route should hit to your newsletter controller to save necessary information

    Show your added newsletter information to admin

    Hope it will help you

    Actually, it’s the lot of jobs you need to be done to make this module.

    Or you can add any embedded code from newsletter service like MailChimp

    Best Regards

Viewing 15 replies - 451 through 465 (of 935 total)