-
AuthorPosts
-
March 27, 2015 at 2:24 am #236288
I’ve purchased a custom header and want to turn off the theme header. Currently, both are displaying stacked on top of each other. How do I disable the theme header?
March 27, 2015 at 6:05 am #236375Hi,
Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
Then copy wp-content/themes/x/framework/views/{STACK}/wp-header.php into your child theme directory
wp-content/themes/x-child/framework/views/{STACK}/Open the file you have copied in your child theme and delete the code
<?php x_get_view( ‘global’, ‘_navbar’ ); ?>
and save.Hope that helps.
March 28, 2015 at 2:00 am #236984Thanks. I have set up a child theme according to the video and made a template change to the child theme based on customization best practices.
However, when the child theme is active, elements on all pages appear to display incorrectly, as if the shortcodes plugin has been disabled for example. Is there something I am missing here?
March 28, 2015 at 2:05 am #236988Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
March 28, 2015 at 3:17 am #237011March 28, 2015 at 3:22 am #237014Hi there,
You need to use compatible version of X and x shortcode, Currently you are using old versions, Please update both and this should solve your issue.
Thanks.
March 28, 2015 at 4:26 am #237030Thank you, I’ve updated it and the layout now appears correctly, but certain elements on the page are not visible (see the white spaces where there should be content within the container).
So I have a couple of questions,
1. There is still elements not being displayed despite all plugins and the theme being up to date.
2. Where would I paste the code from the custom header (<?php echo do_shortcode( “[hmenu id=1]” ); ?>) to modify the header? I am able to make it appear but it is appearing stacked top of the main hero image and not over-laying it (despite configuring the menu settings to display overlayed).March 28, 2015 at 5:21 am #237033Hi there,
#1 Please disable all 3rd party plugins except those come with X, Also remove any custom JS and test if it helps or not.
#2 Please add the following CSS under Customize -> Custom -> CSS :
.home div#x-content-band-1 { margin-top: -80px !important; }
Hope it helps.
-
AuthorPosts