Forum Replies Created
-
AuthorPosts
-
November 4, 2022 at 2:05 am in reply to: create template page with ACF header and ACF Footer but with Avia editor content #1371293
Hi Nikko
I have tried what you said, but I have an issue where all full-width sections don’t work and want to stay within a container.
This screen shows how using template-blank.php allows for full-width AVIA SECTIONS and SLIDERS.
https://www.dropbox.com/s/udtcqdmqds2qwu5/using-blank.png?dl=0This screen shows how using page.php DOES NOT allow for the full-width SECTIONS and SLIDERS but forces them to stay within a CONTAINER.
https://www.dropbox.com/s/90d1xxuqly9zpmx/using-page.png?dl=0Is there a way to use template-blank.php but load in my header-new.php and footer-new.php ??
Thanks again
James-
This reply was modified 2 years, 8 months ago by
zoik.
November 3, 2022 at 2:16 pm in reply to: create template page with ACF header and ACF Footer but with Avia editor content #1371232thanks, Nikko
can I get away with a simple header and footer like the one below, or will I have issues because it’s not calling any of the requirements for AVIA Editor?
header-new.php:
<!DOCTYPE html>
<html <?php language_attributes(); ?> class=”<?php echo $html_classes; ?>”>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
<!– Scripts/CSS and wp_head hook –>
<?php
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head>
<body id=”top” <?php body_class( $body_classes ); avia_markup_helper( array( ‘context’ => ‘body’ ) ); ?>>footer-new.php
<div id=”fb-root”></div>
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
</body>
</html>Thanks again
James-
This reply was modified 2 years, 8 months ago by
zoik.
-
This reply was modified 2 years, 8 months ago by
-
AuthorPosts