Dynamic conditions to hide or display element oxygen builder

Use the conditions is_front_page feature to hide the breadcrumb element on the home page. Open the main template file (header footer) create a new section containing the breadcrumb file, here I use the breadcrumb from the yoast plugin, select the breadcrumb element then click the conditional icon

Get post slug from post wordpress

In this post, I will try create dynamic class css from slug post using easy post oxygen builder. I have layout like in below, so I will add slug from post as class css Resources: https://stackoverflow.com/questions/33842251/how-to-get-post-slug-from-post-in-wordpress

Create simple hello bar on elementor without plugin

first add this code on function.php or snippets plugin and then create new section like image below, or download json file have I made. add_action( ‘wp_head’, function () { ?> <script> jQuery( document ).ready( function( $ ) { $(“#hidehello”).click(function(){ $(“#hellobar”).hide(); }); }); </script> <style> </style> <?php } );