Hi @tkhatun123,
Thanks for reaching out to us.
Sorry! Currently, there is no setting to change these texts. We will consider this as a feature request.
But, you can do this by using the below code in your theme’s functions.php file (wp-content/themes/astra-child/functions.php OR wp-content/themes/astra/functions.php). You can add this code at the end of the functions.php file (after all other code).
We recommend child theme for doing this (https://wpastra.com/child-theme-generator/), because if you update your theme, then these changes will be gone! You have to add this again in functions.php file.
function awsm_jobs_listing_details_link( $link ) {
$link = str_replace( 'More Details', 'Apply Now', $link );
return $link;
}
add_filter( 'awsm_jobs_listing_details_link', 'awsm_jobs_listing_details_link' );
Regards,
Vidya K V