There is no option in the plugin for installments for Mexico (MSI). It seems it can be activated by using code described at https://stripe.com/docs/payments/installments , however, I see no way on making this work as the plugin already does a part of the code.
I’m in no way a programmer, sure can edit code a bit, so here is my question: Will there be an option for installments for Mexico (MSI)? This would greatly improve use of Stripe in Mexico.
Thank you,
-Ron
También me ha gustado el admin de conekta para organizar los movimientos.
Recomiendo el plugin.
How can I tell WordPress to allow me to upload *.MSI files to be uploaded to media?
MSI files are standard Windows software installation files.
Thanks!
Jesse
]]>How can I do this?
]]>This site, ultraxinc.com has .msi files available to download for registered users. However, after updating to 3.8, the links to these .msi files open in a new tab and display thousands of lines of garbage code. Before the update, clicking the link prompted the download of the .msi file.
This only happens with Internet Explorer, however using a different browser is not an option for the user.
In functions.php I found the following which allows .exe and .msi files to be added in media upload:
// Added to extend allowed files types in Media upload
add_filter('upload_mimes', 'custom_upload_mimes');
function custom_upload_mimes ( $existing_mimes=array() ) {
// Add *.EXE files to Media upload
$existing_mimes['exe'] = 'application/octet-stream';
// Add *.MSI files to Media upload
$existing_mimes['msi'] = 'application/octet-stream';
return $existing_mimes;
}
What is confusing to me is that the links to the .exe files still function normally. I’m only having issues with the .msi files. I’ve spent a few hours scouring the internet, but have not come across a solution for this issue. If anyone can shed some light on this, I would greatly appreciate it.
]]>