budlogan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: site is not working properlyI deleted that plugin and all is working again. Thank you.
Forum: Fixing WordPress
In reply to: need a copy of the default php footer code for 2016 themeThanks for sending me this php footer file as it was what was needed to get my mobile menu operating once again, it was a corrupted file on my site( self created) and all is working now.
Forum: Fixing WordPress
In reply to: need a copy of the default php footer code for 2016 themeSorry about that but thank you very much for the files
Forum: Fixing WordPress
In reply to: l have quite a few issues on my siteHow do you mean, what is the call to wp_footer
Forum: Fixing WordPress
In reply to: l have quite a few issues on my sitewhat i was really trying to say was , could it be a problem with my php footer files?
Forum: Fixing WordPress
In reply to: l have quite a few issues on my siteno
Forum: Fixing WordPress
In reply to: l have quite a few issues on my sitecould it be a problem with my child theme? can i re install the 2016 theme?
Forum: Fixing WordPress
In reply to: l have quite a few issues on my sitei already have removed the plugins and re installed them, one by one, this is where my problem began with my editor
Forum: Fixing WordPress
In reply to: l have quite a few issues on my siteGo to any page on a mobile phone and click the menu button. https://www.gohiking.ca
the other issue is on my WP admin and the content on any edit page is missing, its just a blank box with a word count in it.Forum: Fixing WordPress
In reply to: l have quite a few issues on my sitei am running 2016, 4.7.3
Forum: Fixing WordPress
In reply to: My 2016 mobile menu button has stopped workingForum: Fixing WordPress
In reply to: My 2016 mobile menu button has stopped workingit looks right when i use the code but then posts wrong. I will use the paste bin option, give me a moment to get it done
Forum: Fixing WordPress
In reply to: My 2016 mobile menu button has stopped workingit looks right when i use the code but then posts wrong
Forum: Fixing WordPress
In reply to: My 2016 mobile menu button has stopped working`<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after
*
* @package WordPress
* @subpackage Twenty_Sixteen
* @since Twenty Sixteen 1.0
*/
?></div><!– .site-content –>
<footer id=”colophon” class=”site-footer” role=”contentinfo”>
<?php if ( has_nav_menu( ‘primary’ ) ) : ?>
<nav class=”main-navigation” role=”navigation” aria-label=”<?php esc_attr_e( ‘Footer Primary Menu’, ‘twentysixteen’ ); ?>”>
<?php
wp_nav_menu( array(
‘theme_location’ => ‘primary’,
‘menu_class’ => ‘primary-menu’,
) );
?>
</nav><!– .main-navigation –>
<?php endif; ?><?php if ( has_nav_menu( ‘social’ ) ) : ?>
<nav class=”social-navigation” role=”navigation” aria-label=”<?php esc_attr_e( ‘Footer Social Links Menu’, ‘twentysixteen’ ); ?>”>
<?php
wp_nav_menu( array(
‘theme_location’ => ‘social’,
‘menu_class’ => ‘social-links-menu’,
‘depth’ => 1,
‘link_before’ => ‘<span class=”screen-reader-text”>’,
‘link_after’ => ‘</span>’,
) );
?>
</nav><!– .social-navigation –>
<?php endif; ?><div class=”site-info”>
<?php
/**
* Fires before the twentysixteen footer text for footer customization.
*
* @since Twenty Sixteen 1.0
*/
do_action( ‘twentysixteen_credits’ );
?>
Site Created By Bud Logan, All Rights Reserved
</body>
</html>
.Forum: Fixing WordPress
In reply to: My 2016 mobile menu button has stopped workingam i using the code button wrong.
`