Brandon Holcombe
Forum Replies Created
-
I was able to get a 100% workaround by excluding the URL from caching.
Under Caching > Exclude URLs from Caching
Of course, not ideal for cases of multiple protected pages.
Forum: Plugins
In reply to: [Yoast SEO] Error after UpgradeLooks like they have a fix coming.
https://github.com/Yoast/wordpress-seo/pull/12814Forum: Plugins
In reply to: [Yoast SEO] Error after UpgradeFYI.
This helped me hide the error
https://github.com/Yoast/wordpress-seo/issues/12811Forum: Plugins
In reply to: [Yoast SEO] Error after updating to Yoast Version 11.1FYI.
This helped me hide the error
https://github.com/Yoast/wordpress-seo/issues/12811Forum: Plugins
In reply to: [Yoast SEO] Error after 11.1 upgradeThis helped me hide the error.
https://github.com/Yoast/wordpress-seo/issues/12811Forum: Plugins
In reply to: [Yoast SEO] Error after UpgradeJust to follow up regarding this error. For context your 11.1.0 changelog shows an update to the schema output for images.
Quote:
11.1.0
Release Date: April 30th, 2019Enhancements:
Improves how we generate the image parts for the Schema output. Read more about the ImageObject output.
Forum: Plugins
In reply to: [Yoast SEO] Error after UpgradeYep, this is ALL Yoast SEO. Fix your plugin. The error is clear from multiple mentions from several users.
PHP Warning: Illegal string offset ‘width’ in …
PHP Warning: Illegal string offset ‘height’ in …/plugins/wordpress-seo/frontend/schema/class-schema-image.php
Maybe caused by the latest release of the Yoast Plugin AND PHP 7.1?
Forum: Plugins
In reply to: [Custom Content Portfolio] Taxonomy QueriesWonderful, thanks Justin!
Forum: Plugins
In reply to: [WP-PageNavi] Not working on home page with custom post typeThe script below is working for me.
Similar to “janothemes” solution, but only performing a string replace from “page/” to “?paged=”.<script> jQuery('.wp-pagenavi a').each(function() { var url = jQuery( this ).attr('href'); url = url.replace("page/","?paged="); jQuery( this ).attr('href', url); }); </script>
This way the pagination links still work when you reach page 2.
Also, if you’re using wp pagenavi on a homepage template use the following:
<?php if ( is_page() ) :?> <script> jQuery('.wp-pagenavi a').each(function() { var url = jQuery( this ).attr('href'); url = url.replace("page/","?paged="); jQuery( this ).attr('href', url); }); </script> <?php endif; ?>
Forum: Plugins
In reply to: [Yoast SEO] Start Tour bugSame here. VERY annoying bug. Mac OS, Chrome. Every page refresh initiates the Start Tour popup.
Uncaught ReferenceError: wpseoSetIgnore is not defined
document.location="https://www.aurorasentinel.com/wp-admin/admin.php?page=wpseo_dashboard"; }); jQuery('#pointer-close').click(function () { wpseoSetIgnore("tour", "wp-pointer-0", "c1e9ddbb03"); }); };
This line gets flagged as the error.
wpseoSetIgnore("tour", "wp-pointer-0", "c1e9ddbb03");
Forum: Plugins
In reply to: [Custom Content Shortcode] PHP Parse error on ccs-comments.phpWorks, thank you!
Forum: Plugins
In reply to: [Advanced Custom Fields: Nav Menu Field] ACF 5 compatibilityI have ACF 5 loaded and this plugin is not working. Looking forward to seeing an update soon.
Thanks!
Forum: Plugins
In reply to: [Disqus Comment System] PHP Warning: Invalid argument supplied for foreach()Same “missing argument 2” error for me as well.
Disqus needs to update the plugin.
See Nacin’s update way back for WP 3.5Forum: Plugins
In reply to: [Zone Manager (Zoninator)] "Then use the handy API functions…" Such as?Try the following on a page template. You can remove the comments. Just place the code starting with ‘<?php $posts = z_get_posts_in_zone….’
<?php /* Loop Zone Stories - Zone slug is usually prefixed with "zone-" - Ex: Slug of zone name of Home will be: zone-home */ ?> <?php $posts = z_get_posts_in_zone( 'zone-name-slug-here', array( 'numberposts' => 1, 'post_type' => 'any', 'post_status'=>'publish' ), false ); ?> <?php foreach( $posts as $post ) : ?> <div class="features"> <?php the_post_thumbnail(); ?> <h1 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1> <?php the_excerpt() ?> </div> <?php endforeach; wp_reset_postdata();?>
Forum: Plugins
In reply to: [LightPress Lightbox] It doesn't work with Next GalleryGo To “Gallery>Other Options>Lightbox Effects”.
Select “No LIghtbox”
Click “(Show Advanced Settings)”
Type in: rel=”lightbox” in the code field.Works for me.