Forum Replies Created
-
AuthorPosts
-
August 10, 2015 at 2:17 pm in reply to: Widget Containing Footer (upper part) not showing in Events Pages #994876
Daniel
ParticipantThank you for your guidance. It does appear the7.2 theme is configured to not display the widgetized footer in archive pages. I have opened a ticket over there to get a fix. I found a fix on line for 7.1 but it does not apply to 7.2. I guess we can close this one up for now. Appreciate your help!
Daniel
August 10, 2015 at 9:24 am in reply to: Widget Containing Footer (upper part) not showing in Events Pages #994784Daniel
ParticipantHi Brian, thank you for the prompt response, it is greatly appreciated. Reviewing the footer.php file the function to display the widget area may be (not sure):
$config = Presscore_Config::get_instance();
Below I copy the contents of the entire footer.php file. I hope that helps! Thank you!!!! Let me know if you need more info.
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the <div class=”wf-container wf-clearfix”> and all content after
*
* @package vogue
* @since 1.0.0
*/// File Security Check
if ( ! defined( ‘ABSPATH’ ) ) { exit; }$config = Presscore_Config::get_instance();
if ( presscore_is_content_visible() ): ?>
</div><!– .wf-container –>
</div><!– .wf-wrap –>
</div><!– #main –><?php
if ( $config->get( ‘template.footer.background.slideout_mode’ ) ) {
echo ‘</div>’;
}do_action( ‘presscore_after_main_container’ );
?><?php endif; // presscore_is_content_visible ?>
</div><!– #page –>
<?php wp_footer(); ?>
</body>
</html>August 9, 2015 at 11:28 pm in reply to: Widget Containing Footer (upper part) not showing in Events Pages #994656Daniel
ParticipantTo make sure I am clear, the widgetized upper footer does not appear in the ‘archives:’ page but it DOES appear in the single event pages. Something about the archives page is truncating my footer…
The complete footer appears in every page of my site (~11) with the exception of Events ‘archives:’
Thanks,
DanielAugust 9, 2015 at 10:39 pm in reply to: Widget Containing Footer (upper part) not showing in Events Pages #994651Daniel
ParticipantMore info. When on page class= “single single-tribe_events” the full Footer with widgetized area shows. Using the same default.template.php file. The page with class = “archive post-type-archive” does not show the upper widgetized part of the footer. (also using ‘default.template.php’)
August 9, 2015 at 10:26 pm in reply to: Widget Containing Footer (upper part) not showing in Events Pages #994647Daniel
ParticipantSome additional info. I have rewritten the entire ‘default-template.php’ file with content that resembles the standard page.php file.
Content is very basic:
<?php get_header(); ?>
<p>HELP!</p>
<?php get_footer(); ?>The footer displayed is still incomplete. There is no widgetized footer part (upper part) while the bottom bar is present. All other plugins where disabled.
Thanks,
Daniel -
AuthorPosts
