Hello data not showing in frontend please check this link hidden link
and check this listing page also hidden link showing only names other elements are missing not showing any other field data and search all things are missing.
Can you please check as soon as possible.
Hello. Thank you for contacting the Toolset support.
Can you please tell me what exactly is missing and send me admin access details.
*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.
I have set the next reply to private which means only you and I have access to it.
I can see the issue but we do not recommend debugging the issue on live/production site.
It seems to me a theme issue but to ensure, can you please setup a staging site and share staging site access details.
*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.
I have set the next reply to private which means only you and I have access to it.
Content Templates modify the content when called from the WordPress’ built-in the_content function. Some themes do not use the_content function, but define their own function. In this case, Content Templates are not applied to selected posts on the front-end.
In order to fix the issue, I've added the following Bunyad_Posts::the_content that calls the the_content function at: Toolset => Settings => Theme support for Content Templates section.
I can see now the content on frontend.
- hidden link
Can you please update your theme to latest version and check if that helps:
- hidden link
If that does not help, as I shared before:
Content Templates modify the content when called from the WordPress’ built-in the_content function. Some themes do not use the_content function, but define their own function. In this case, Content Templates are not applied to selected posts on the front-end.
When I checked your theme's archive page:
- hidden link
I do not see its using the_content function that is why its not working.
In that case - you will have to To do this, you need to create a PHP file in your theme’s folder. File needs to be called archive-post_type_name.php where post_type_name is the slug of your custom post type.
As I shared before:
Content Templates modify the content when called from the WordPress’ built-in the_content function. Some themes do not use the_content function, but define their own function. In this case, Content Templates are not applied to selected posts on the front-end.
AS you may notice - your theme's archive.php template is not using the the_content() function:
=> hidden link
In that case - you will have to To do this, you need to create a PHP file in your theme’s folder. File needs to be called archive-post_type_name.php where post_type_name is the slug of your custom post type.
If you do not know how it do it, pleae get in touch with your theme's support and check with them how you can customize the post type archive for your post type and use the the_content() function.