Beaver Themer is an add-on of Beaver Page Builder plugin. This add-on lets you create layouts for archive pages, template an entire post type, 404 and search pages, and create parts like headers and footers. I create lot of themer layouts for my site. I want to restrict the editing access of only certain layouts… Continue Reading
Archives for January 2019
Creating Utility Bar Above The Avada Theme Header
Adding a utility or announcement bar above the Avada theme header. I shall display this bar on entire site pages except sales page. So I added following PHP snippet in the functions.php file of Avada child theme. <?php //* Do not add this line add_action( ‘avada_before_body_content’, ‘cp_utility_bar’ ); function cp_utility_bar() { if( is_page( 123 )… Continue Reading