Cory
Forum Replies Created
-
@2candela2 I’ve been using Pods for a long time, but I’ve never played with Advanced Relationships. I found myself needing a field that pulled from two different post types, and your instructions were exactly what I needed. Thank you!
Hi. We reactivated the plugin and at this time we’re not receiving any further errors.
Active Plugins below:
- Akismet
- Beaver Builder
- Beaver Themer
- Classic Editor
- Cookie Notice & Compliance for GDPR / CCPA
- Display Posts
- Force Strong Passwords
- Members
- Page Links To
- Pods – Custom Content Types and Fields
- Pods Beaver Themer Add-On
- Redirection
- Search & Replace
- The Events Calendar
- The Events Calendar Pro
- User Switching
- WP-FormAssembly
- WP Crontrol
- WPML Multilingual CMS
- WPML String Translation
- WPS Hide Login
I currently have AIOSEO deactivated as we were seeing a lot of errors.
WP 6.4.3
AIOSEO 4.5.9.2
We are not running WooCommerceThe site is https://fuller.edu
Updated, and looks good on my end. Thanks, Shawn.
Forum: Plugins
In reply to: [Comments Extra Fields For Post,Pages and CPT] Accessing comment field dataThanks, that got me what I needed.
To clarify, the return value contains a key
fields
with an array of the meta values.Update: I definitely just had a few code typos, and this works perfectly. I’m going to forgive myself because it was the first day back after the holiday. ??
Thanks again, @caseproof.
Thank you, @caseproof! I’ve actually tried this and it wasn’t working for me, but that just tells me I’ve got some errors somewhere. Thanks for confirming I was on the right track.
Forum: Plugins
In reply to: [WPS Hide Login] WPS Hide Login causing Admin user errorI’ve been dealing with this issue for quite a while, and I’ve seen several other folks bring it up as well. I was experimenting with it this morning, and it seems that the Password Reset process will only work correctly if the Hide Login settings use the default of
/login
. We were not using this URL, and have been having the issue you describe.I tried about 6 or 7 other login URLs, and they all resulted in the error you’re having. But reverting the login URL back to
/login
fixes the password reset issue.Forum: Plugins
In reply to: [WPS Hide Login] Page not foundHaving the same issue, intermittently, on a few sites. Sometimes it works, and sometimes I get a 404. No pattern, as far as I can tell.
Forum: Fixing WordPress
In reply to: Getting started with WordPressThis might help you get started:
https://www.wpbeginner.com/wp-tutorials/how-to-create-an-online-marketplace-using-wordpress/Forum: Fixing WordPress
In reply to: How to hide author name, date, and category name on post?@kyusanglee1 Reduce the padding on the post title with:
.single .post-head { padding-bottom: 0; }
And if you want to get rid of the whole meta section (author, date, etc.), use:
.meta-single { display: none; }
Forum: Fixing WordPress
In reply to: How to hide author name, date, and category name on post?Hi there. Those aren’t the classes being used on the page.
Try adding these to the Customizer:
p.meta.cat {display:none;} .meta-single .author {display:none;} .meta-single p.meta.date { margin-left: 0; }
The last one moves the date back over to the left when the author is gone.
Forum: Fixing WordPress
In reply to: Meta Tag Line is showing in Title (Google SearchYou’re using the Yoast SEO plugin. Check your Yoast settings regarding the main meta tags (Title, Descriptions, etc.) to see if that whole line is listed as the site title.
You can also check your General Settings to make sure your site title is listed as desired.