Issue with Oxygen Builder templates toggle system now a days is a tranding issue.
After the wordpress update to 6.7.1 - we are not able to toggle the template anymore to assign them.
On this Blog I am going to show you two alternative ways to get out of this issue. Follow the video for the proper instructions.
In this video I have shown the issue and different ways to solve it for now.
Video on YouTube: https://youtu.be/I_6DtisVd5U
function load_custom_html() {
?>
<script type="text/javascript">
jQuery(document).ready(function($){
$('.accordion-section-title').click(function() {
// Close all other accordion sections
$('.accordion-section-content').not($(this).next()).slideUp("fast");
// Toggle the clicked section
$(this).next().slideToggle("fast");
});
});
</script>
<?php
}
add_action('admin_footer', 'load_custom_html');