Chris
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Table of Contents] 502 Bad Gateway When Using PluginAfter much troubleshooting, we traced the issue to using the [ez-toc] shortcode inside a WP Bakery “Raw HTML” block. Doing this causes the page to timeout when saving and produces the 502 Bad Gateway error. Using the shortcode in a regular WYSIWYG text box works fine.
This does not appear to be an issue specifically with Easy TOC, but with using it inside this particular element in the WP Bakery page builder. Maybe something to look into? Otherwise, no worries – this is the answer in case anyone else happens to have this same issue. Thanks!
@reedus33 I ran into the same issue, needing to remove rel=”nofollow” from the author links, only to find out this plugin hasn’t been updated in 8 years. While that’s not ideal, it does mean that editing the core plugin files is not likely to be overwritten by a plugin update. So that’s what I did.
Go to Plugins > Plugin File Editor and select Fancier Author Box from the dropdown in the upper right. Click the list of files in the right column and go to Includes > ts-fab-construct-tabs.php.
Or if this link works, should take you right to the file:
https://yoursite.com/wp-admin/plugin-editor.php?file=fancier-author-box%2Fincludes%2Fts-fab-construct-tabs.php&plugin=fancier-author-box%2Fts-fab.phpOn line 143, change:
$ts_fab_follow_author_link = apply_filters( 'ts_fab_follow_author_link', 'rel="nofollow"' );
to$ts_fab_follow_author_link = apply_filters( 'ts_fab_follow_author_link', '' );And on line 316, change:
a href="' . get_author_posts_url( $author->ID ) . '" rel="nofollow">' . __( 'See All', 'ts-fab' ) . '
toa href="' . get_author_posts_url( $author->ID ) . '">' . __( 'See All', 'ts-fab' ) . '@gijo Thank you. Does this also mean I no longer need ShortPixel to optimize the images locally? Is FlyingCDN kind of “double-optimizing” images that have already been optimized by ShortPixel? Thanks!
Thank you Trey. You mentioned that the custom code would be necessary for the free version — does the Pro version have an easier or built-in way to do it? I’m willing to purchase the upgrade if the Pro version meets our needs!
Thank you!
Forum: Plugins
In reply to: [Auto Featured Image (Auto Post Thumbnail)] No Images GeneratedI’m having the exact same issue. No matter how many times I run it, it says that it successfully processed 189 posts, but set zero featured images. The log shows “Done” next to most of them (some say “No images found or generated” and that checks out, but all the posts with images do say “Done”) — but no posts actually had featured images generated from that first image.
Screenshot:
https://ibb.co/S3Fn0m4Thanks for your help!
Forum: Plugins
In reply to: [Contact Form 7] We detected that your site is not verifying reCAPTCHA tokensI’ve whittled it down to the Venues addon causing this, now that W3 Total Cache has been deleted. Any ideas how I can get Venues to work again? Thank you
Hmm, I deleted that plugin, and now the calendar page will not load at all… :/
And any page featuring a calendar widget also produces an error. The home page menus are glitched and the widget won’t load now…
If I disable the calendar plugin then the site works fine again.
I’ve disabled and re-enabled the calendar, I’ve changed the theme and changed back, saved the Theme Options page, etc… no luck. The calendar appears to be completely broken once W3 Total Cache was deleted.
I re-enabled it and emptied all caches, just to try. That didn’t seem to affect anything, whether Total Cache was enabled, disabled, caches cleared or not.
We have W3 Total Cache installed, but disabled. It has not been active in a long time. Would that affect this, even if disabled?
Hi,
Thank you, that did make the month view appear. However, it looks like the issue is still there when jumping from month to month.
i.e. November month view works fine… if I go forward to Dec it also works, but if I go back to Oct I get the same:
Something went wrong while fetching events.
The request status is: 500
The error thrown was: Internal Server Errormessage and October won’t load. Certain other months won’t either, and I can’t find any rhyme or reason to which ones error out…
Forum: Plugins
In reply to: [YOP Poll] "Administrator" permissions required to view polls?Welp, sorry for all the posts, but I did finally work through it. The issue was I had created a custom role (Webmaster), which has permissions & capabilities somewhere between an Editor and an Admin. And it appears permissions in YOP Poll are hard-coded with the actual exact NAME of the roles (i.e. Administrator, Editor, Contributor, etc) and not just permission names, capability names or levels.
That meant even though my user role technically had a “high enough” level of permissions, YOP Poll needed to be hard-coded to reflect my specific new user role NAME. So, in case this helps anyone in the future…
The file you need to edit is plugins/yop-poll/inc/admin.php. Once you open the file, do a search for “function current_user_can” (minus quotes). THEN, do a find/replace in that section. Replace every instance of
‘administrator’ => true,
with
‘administrator’ => true, ‘webmaster’ => true,
(where ‘webmaster’ is the exact name of the role you created).
Anyway, thanks, Me!
You’re welcome! Glad I could help me work it out!
Forum: Plugins
In reply to: [YOP Poll] "Administrator" permissions required to view polls?I should also note that I DID in fact try this step as well:
“The file you need to edit is yop-poll/inc/admin.php. Once you open the file, do a search for function current_user_can. In that function you can find the options you need to edit.”
and in fact changed ALL permissions in that function to “true” — but to no avail.
YOP Poll still invisible in the left menu. And if I go to the URL manually it says, “You do not have sufficient permissions to access this page.” The ONLY user I can access it with on the back end is the Administrator.
Your help is much needed and greatly appreciated. Thanks!
Forum: Plugins
In reply to: [YOP Poll] "Administrator" permissions required to view polls?For reference I am using version 4.9.3.
I have searched and found questions from people saying they ONLY want admin access… which makes me think there’s something going on here since I can only use it with admin access and actually need to loosen my restrictions to allow lower users.
Thanks!