[XFA] RM Marketplace/Shop - XF2

[XFA] RM Marketplace/Shop - XF2 [Paid] 5.8.5

No permission to buy (€60.00)
You mean for the resource image ?
Yes sir. Instead of uploading a resource image you can use image from URL. So if you have attached images to the resource you could use those or any image provider of choice.
Or maybe even (I’m overthinking now) a setting to use the first attached image as resource image.
It would over time save a lot of space.
 
Yeah I guess getting the first image when none is set would be better.
I have done that in our Forum sales add-on.
 
Yeah I guess getting the first image when none is set would be better.
I have done that in our Forum sales add-on.
I think it would be a very good addition.

Also, (sorry if I'm being a pain). Would it be possible to show "free" if a resource is actually free? Instead of 0.00. I know this have been asked before. "Free" just looks much better and attracts viewers more than 0.00. Or can it be fixed with some template edit?
 
I think it would be a very good addition.

Also, (sorry if I'm being a pain). Would it be possible to show "free" if a resource is actually free? Instead of 0.00. I know this have been asked before. "Free" just looks much better and attracts viewers more than 0.00. Or can it be fixed with some template edit?
Hum where ?
 
XFA updated [XFA] RM Marketplace/Shop - XF2 with a new update entry:

Maintenance release

Corrected bugs
  • Payment providers option description incorrect in admincp (data is encrypted)
  • XF\Db\Exception: MySQL statement prepare error [1054]: Unknown column 'shipping' in 'field list' in src/XF/Db/AbstractStatement.php at line 228
  • For Paypal XF payment profiles only require address if product is of physical type

Coinbase Commerce Integration payment profile is now supported following our Core add-on 1.11.1 release.

Read the rest of this update entry...
 
Hi,
Paypal is still sending the addresses with purchases of digital products

Thanks
Can you please try something ?
Edit the src/addons/RMMarketplace/Purchasable/MarketplacePurchase.php file.

Search for:
PHP:
if (isset($options['require_address']))
{
    if ($resource->xfa_rmmp_type == 'physical')
    {
        $options['require_address'] = 1;
    }
    else
    {
        $options['require_address'] = 0;
    }
}

Replace by:
PHP:
if (isset($options['require_address']))
{
    if ($resource->xfa_rmmp_type == 'physical')
    {
        $options['require_address'] = 1;
    }
    else
    {
        $options['require_address'] = 0;
    }

    $paymentProfile->options = $options;
}
 
Can you please try something ?
Edit the src/addons/RMMarketplace/Purchasable/MarketplacePurchase.php file.

Search for:
PHP:
if (isset($options['require_address']))
{
    if ($resource->xfa_rmmp_type == 'physical')
    {
        $options['require_address'] = 1;
    }
    else
    {
        $options['require_address'] = 0;
    }
}

Replace by:
PHP:
if (isset($options['require_address']))
{
    if ($resource->xfa_rmmp_type == 'physical')
    {
        $options['require_address'] = 1;
    }
    else
    {
        $options['require_address'] = 0;
    }

    $paymentProfile->options = $options;
}
I have integrated this change in upcoming release let me know if it fixes it.
 
XFA updated [XFA] RM Marketplace/Shop - XF2 with a new update entry:

Maintenance release

Corrected bugs
  • ErrorException: Template error: [E_WARNING] Attempt to read property "xfa_rmmp_type" on null src/addons/XFA/RMMarketplace/XF/Entity/Thread.php:79
  • ErrorException: Template error: [E_WARNING] Undefined variable $resource src/addons/XFA/RMMarketplace/XF/Entity/Thread.php:79
  • Shipping amount displayed in sales list even when null
  • User address required in PayPal payment profile for Digital products

Read the rest of this update entry...
 
Does this add-on offer a percentage of sales? If a user sells something in my shop, I want to get a percentage of it.
 
Yes it does ;)

Either it's automatically retrieved upon user payment if using our custom Paypal payment method.
Or it is invoiced every month if using xF payment profiles method.
 
Suppose he gives the user access to the store and sells his products there. Should he then give his PayPal? How will I get the percentage of he on sales?
 
Back
Top Bottom