brian90069
Forum Replies Created
-
That did help. I had caching turned off while making the changes and will keep the refresh time under 24 hours. Thank you!
Still waiting on response.
Yes, that solved the issue. Thank you!
Forum: Plugins
In reply to: [Zero Spam for WordPress] Option to whitelist IP’sAgree, there needs to be an option to whitelist IP addresses. I was locked out of my site and had to use a VPN to determine this plugin was causing the issue.
I’ll give that a shot, though when you activate Wordfence it is done from the network settings dashboard, which doesn’t have an active theme, and plugins are either activated on a network or individual subdomain basis.
Hi Gerroald,
I am not currently using a Central Template. Is it required or recommended for multisite?
I cleared all caching including at the server, no difference.
On the console, I am getting several “Access to font blocked by CORS policy” Wordfence errors, see screenshot: https://prntscr.com/p5dajd
I’ll check out the Central Template and the above errors, any feedback is appreciated. I have WF installed on many sites, this is the first issue I’ve encountered with installation.
Many thanks.
Forum: Themes and Templates
In reply to: Twenty Thirteen Move Post Tags to End of PostBrilliant, thanks!
Forum: Themes and Templates
In reply to: Twenty Thirteen Move Post Tags to End of PostThanks Evan, that’s how I handled it last time but the .entry-meta div isn’t included in the single.php file. It looks like it’s pulling the post format from somewhere else, I just haven’t tracked it down yet.
<?php /** * The Template for displaying all single posts. * * @package WordPress * @subpackage Twenty_Thirteen * @since Twenty Thirteen 1.0 */ get_header(); ?> <div id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <?php /* The loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php twentythirteen_post_nav(); ?> <?php comments_template(); ?> <?php endwhile; ?> </div><!-- #content --> </div><!-- #primary --> <?php get_sidebar(); ?> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: Menu changes to vertical format on child theme activationThanks, brilliant. It’s always the obvious that gets overlooked.