Instructions are available under Admin Sidebar > Jevelin > Framework Upgrade
Thought it is recommended only when Unyson can be fully removed – when no pages are built with Unyson Page Builder
This issue was very hard to find, but we can confirm that we see it too.
Would it be possible to access your website dashboard? We could try some CSS changes, because at the moment we don’t have a specific solution for this issue
Hi there,
Maybe you meant something like this?
It seems that it might do just that.
Best regards,
Shufflehound team
Hi there,
Do you have a backup for your website? Settings are saved as one time in the options database table. You can look there, but most likely only backup restore could help you to recover it (now many website hosting providers create automatic backups).
Best regards,
Shufflehound team
We are glad that we could help! 🙂
In some cases some images doesn’t import correctly, but we just saw your imported demo and it seems fine, so you can just ignore this error.
Thank you for understanding and letting us know. 🙂
Hi there,
Are you using the latest theme version and have the theme been modified?
We just checked this file in our latest theme version and the mentioned file looks different for us.
Best regards,
Shufflehound team
We saw some errors related to OCDI plugin as it seemed that the installation was corrupted, so we reinstalled it. Can you please try to install the demo now?
Sure, the child themes are meant to rewrite parts of the main theme in the way that you can afterwards safely update the main theme without overwriting any changes. We added our child theme in the attachment and you can just install/activate it as any other theme.
Then you can add this PHP snippet in the child theme functions.php file:
add_filter( 'register_post_type_args', 'jevelin_rewrite_slug', 100, 2);
function jevelin_rewrite_slug( $args, $post_type ) {
 if( $post_type == 'fw-portfolio' ) {
   $args['rewrite']['slug'] = 'portfolio';
 }
 return $args;
}Then go to Settings > Permalinks and press Save Changes.
Now it should be changed.
Oh, then at the moment it looks like you should keep using Unyson framework. If at one point you migrate Unyson page builder content to WPBakery page builder, then we would recommend you to use our framework upgrade tool.
We can’t tell for sure why suddenly all your settings disappeared. but it seems that top bar didn’t work, because header layout 1 doesn’t support it (you should use layout 2 for it). Sorry for that, we should add notice about it.
Hi there,
Sorry for our late response.
It seems that the login information isn’t working anymore.
About your questions:
Best regards,
Shufflehound team
Hi there,
Sorry for our late response.
Before we can answer to your questions we need to know if you are using Unyson page builder or WPBakery page builder? Because it works differently for both of them.
Best regards,
Shufflehound team
There could be a multiple possible causes for that kind of issue. We can try to go one by one or you can share access to your website and we can debug ourself? In that case we could fix this issue much faster
We tried to install the demo, but when accessing demo installation page we can see only this message – “You do not have permission to access the selected page”.
Can you please make sure that we can access the import demo page?
Hi there,
About your questions:
Best regards,
Shufflehound team
Nice to hear that your website is working again.
About Unyson framework we would strongly suggest to migrate away to Redux. But before that can you please check if you are using Unyson Page Builder inside pages and posts?
We are glad that we could help! 🙂
If you are familiar with PHP language then we can give you a PHP snippet that should change it. You will need to paste it in the child theme functions.php . Would that be ok?