Hi @slabadie,
Thank you for your question.
Are you talking about shipping form?
Could you please share me page link or the screenshot of it if you can?
You can share me a screenshot of it by uploading the screenshot on any image sharing website like http://imgur.com/ and sharing its unique URL here.
Kind Regards,
Vinod Dalvi
Hi @slabadie,
Thanks for providing that. The easiest way to hide that shipping address is through custom CSS like so:
table.mp_cart_shipping tr:nth-child(5) {
display: none;
}
You can add that to your theme’s style.css file or more easily using a plugin like this:
http://ww.wp.xz.cn/plugins/imporved-simpler-css/
To change the ‘Full Name’ text, you’ll need to use a custom translation file where you can translate just that portion of text, possibly easier using a plugin:
http://ww.wp.xz.cn/plugins/codestyling-localization/
Or you can use a plugin like this:
http://ww.wp.xz.cn/plugins/real-time-find-and-replace/
You could also make changes to the plugin file directly at:
Line 4023 of wordpress-ecommerce\marketpress.php
However, that’s not at all advised since updates would delete such changes. But I just wanted to mention it for reference and as a last possible option.
Hope that helps, please feel free to ask if you have questions! 🙂
Cheers,
David
David, thank you for letting me know about the real-time-find-and-replace/ plugin. This is awesome!
Hi @slabadie,
You’re most welcome! Though I’d like to mention too, that plugin does require some extra resources from your server. The translation method I mentioned is generally considered the optimal approach.
If that plugin works fine for you though, that’s great. Just let us know if you have questions questions. We’re happy to help! 🙂
Cheers,
David