*

reflexus

  • ****
  • 146 posts
Item Post - no Bank Transfer
« on: September 01, 2017, 07:09:10 PM »
Bug: If you post Item, there is no bank transfer on this page. Bank Transfer is activated. Minimum is 1$, promotion options > 1$

see screenshot
« Last Edit: September 05, 2017, 03:02:36 PM by reflexus »

*

MB Themes

Re: Item Post - no Bank Transfer
« Reply #1 on: September 02, 2017, 04:50:09 PM »
@reflexus
Bank transfer require to use cart and is available just in cart.
Primary role of bank transfer is to buy credit packs.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

reflexus

  • ****
  • 146 posts
Re: Item Post - no Bank Transfer
« Reply #2 on: September 03, 2017, 01:00:13 AM »
it's very, very bad! Because many people do not want to pay through different payment systems, but use a bank transfer, as on my website.

I bought this plugin and hoped that it would be done in the same way as in the plugin Osclass Payments Pro, but with more optional functions.

Can you make it too for Post Page?

*

MB Themes

Re: Item Post - no Bank Transfer
« Reply #3 on: September 03, 2017, 09:04:35 AM »
What would be benefit to have 2 identical plugins? I will take a look on it later next week.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

ferry

  • ****
  • 155 posts
Re: Item Post - no Bank Transfer
« Reply #4 on: September 03, 2017, 09:50:30 AM »
I did not use bank payment with the other payment plugin.

But i can very well imagen that people trust more to pay on a bankaccount then with paypal or so.
Also there are a lot of countries where not everybody have 1 or more creditcards.

So, it is a good suggestion of reflexus.


*

Anonymous

  • ****
  • 200 posts
Re: Item Post - no Bank Transfer
« Reply #5 on: September 03, 2017, 10:20:48 AM »
@ferry
i agree with you, lots of people will never go for credit card or online banking, for paying little bucks.
even for bank payment.
instead of these, wallet is a good option.

today mostly people worldwide prefers, wallet and usp payment.
just check the statics, you will  see, 10 out of 2 people prefer bank payment , who doesnt having any medium of payment.
and 10 out of 9 prefer wallet and usp payment, cz its safe and easy, from 0.1 $ to 100000...., & best part is you dont have to visit bank and doesnt need any written clearance.

but developers have to figure out which wallet and usp gateway, is most popular in country wise, and have to implement,
as a example- paytm wallet in india, but they havent implement yet,  suppose people willl not find any online medium to pay, then they will demand for bank payment system,

Innovation is change that unlocks new value  ;)

*

reflexus

  • ****
  • 146 posts
Re: Item Post - no Bank Transfer
« Reply #6 on: September 04, 2017, 04:00:23 PM »
thanks for new update and bank transfer!!!

could you still make that payment also work without logging on to the site? At the moment, if a user add a listing without logging on to the site, and click on the button, redirect it to the login page.

Your plugin is almost perfect!

*

MB Themes

Re: Item Post - no Bank Transfer
« Reply #7 on: September 04, 2017, 04:12:00 PM »
@reflexus
I see.
Go to file:
oc-content/plugins/osclass_pay/index.php

Find line starting with:
Code: [Select]
osc_add_route('osp-transfer',
at the end remove string:
Code: [Select]
, true

(true parameter means login is required)

It will be included in next update.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

reflexus

  • ****
  • 146 posts
Re: Item Post - no Bank Transfer
« Reply #8 on: September 04, 2017, 04:24:51 PM »
Perfect!!! Many thanks for the help !!!

and from me fix: in file /user/item_pay.php

this line 135:
Code: [Select]
if(osp_param('bt_enabled') == 1) {
            osp_transfer_button(round($total, 2), sprintf(__('Pay fee %s for item %s', 'osclass_pay'), osp_format_price($total, 2), $item_id), '901x2x'.$item_id.'x'.round($total, 2), array('user' => @$user['pk_i_id'], 'itemid' => $item_id, 'email' => @$user['s_email'], 'amount' => round($total, 2)));
          }

change to:
Code: [Select]
if(osp_param('bt_enabled') == 1) {
            osp_transfer_button(round($total, 2), sprintf(__('Pay fee %s for item %s', 'osclass_pay'), osp_format_price($total, 2), $item_id), '901x2x'.$item_id.'x'.round($total, 2), array('user' => $item['fk_i_user_id'], 'itemid' => $item_id, 'email' => $item['s_contact_email'], 'amount' => round($total, 2)));
          }

so the user's definition in the admin panel will work correctly :D

*

MB Themes

Re: Item Post - no Bank Transfer
« Reply #9 on: September 04, 2017, 04:32:53 PM »
@reflexus
Not correct, user paying for item might be different to owner of listing.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

reflexus

  • ****
  • 146 posts
Re: Item Post - no Bank Transfer
« Reply #10 on: September 04, 2017, 04:39:48 PM »
without my fix see on my screenshot:

http://joxi.ru/8ZrJju9d9bzrjK

if it is not correct, then it would be nice to fix in admin panel too  :D

*

MB Themes

Re: Item Post - no Bank Transfer
« Reply #11 on: September 04, 2017, 06:42:04 PM »
Admin user id is different to classic user id. Will check what can be done there.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

MB Themes

Re: Item Post - no Bank Transfer
« Reply #12 on: September 04, 2017, 09:36:16 PM »
@reflexus
"-" replaced with "Unknown", as user that made payment is not know there.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots