Hi Darren,
not sure if you’re asking how to remove the previous button, or if you are just wondering if there is a setting for it.
There is no setting to enable or disabled the button, but the HD Quiz -> Settings page has a setting to translate the button if that’s what you need.
If you are asking how to disable the button, there are two options for you.
The best/recommended way is to edit the wp-config.php file (located in the root/ installation folder of your site) and add the following definition at the very bottom, but above the require_once ABSPATH . 'wp-settings.php'; line. define('HDQ_DISABLE_PREV_BUTTON', true); This will tell HD Quiz to not print the previous buttons.
If you are not comfortable editing files, then an easier solution is to simply *hide* the button instead using CSS. You can add the following CSS to your site. .hdq_prev_button {display: none !important; opacity: 0} let me know if you need guidance on how to add CSS to your site.