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.You mean for the resource image ?
I think it would be a very good addition.Yeah I guess getting the first image when none is set would be better.
I have done that in our Forum sales add-on.
Hum where ?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?
Pretty sure I've asked the question before and I've seen some comments early on in this thread. Never mind, is it possible?Hum where ?
Like a bossOk I'll note it
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.
Hi,XFA updated [XFA] RM Marketplace/Shop - XF2 with a new update entry:
Maintenance release
Read the rest of this update entry...
Can you please try something ?Hi,
Paypal is still sending the addresses with purchases of digital products
Thanks
if (isset($options['require_address']))
{
if ($resource->xfa_rmmp_type == 'physical')
{
$options['require_address'] = 1;
}
else
{
$options['require_address'] = 0;
}
}
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.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; }
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
Corrected bugs:
- ErrorException: Template error: [E_WARNING] Attempt to read property "group_id" on null src/addons/XFA/RMMarketplace/Listener.php:175
We use essential cookies to make this site work, and optional cookies to enhance your experience.