Hello @jefferisp7
Hope all is well!
To redirect to checkout page after a product is added, please go to Store Settings > Presentation and select “Redirect to cart page for immediate checkout“. Please see this screenshot:
We cannot sell firearms online, so we have items with zero pricing. Other than CSS to hide that field, anyway to replace price field with “Call for Price” ?
Replacing Price fields with a text requires custom coding. You can hide the price with CSS code on a product & Checkout pages:
/*hide procie on a product page*/
.mp_product_price-normal {
display:none !important;
}
/*Hide Price on a checkout page*/
.mp_product_price {
display:none !important;
}
/*Hide "Estimated Total" on a checkout page */
#mp-cart-resume {
display:none !important;
}
And after this, please you can change the Checkout button text from translation files. This can be done either with Loco Translate plugin or manually by changing strings with mp.pot file from wp-content/plugins/marketpress/languages/
. Note, other plugin’s strings can be changed as well this way. Place the mp.po and mp.mo files in the /wp-conetnt/languages/plugins/ folder.
Let us know if you will have any further questions.
Kind regards,
Nastia