southsideslim03
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] WordPress Critical ErrorI’m having this same issue after the update of Event Tickets 5.18.1
I’m running on Bluehost and WordPress version is 6.7.1I’ve downgraded to a previous version 5.18.0 and all is back to normal, but want to understand how this issue keeps occuring. Seems like it happens quite a bit.
- This reply was modified 1 month, 3 weeks ago by southsideslim03.
Forum: Plugins
In reply to: [Advanced Google reCAPTCHA] recaptcha failed in wordpress reset password formThanks, looking forward to it!
Forum: Plugins
In reply to: [Advanced Google reCAPTCHA] recaptcha failed in wordpress reset password formForum: Plugins
In reply to: [Advanced Google reCAPTCHA] recaptcha failed in wordpress reset password form@constracti Any reason this would happen in PHP 8+? It was working fine until I upgraded.
Forum: Plugins
In reply to: [Advanced Google reCAPTCHA] recaptcha failed in wordpress reset password formNo plugin customization here. It’s also interfering with the password reset as well.
Should I delete the plugin and upload/activate again?
Forum: Plugins
In reply to: [Advanced Google reCAPTCHA] recaptcha failed in wordpress reset password formI’m having the same issue.
Forum: Hacks
In reply to: Adding External Variable to An ArrayBig Bagel,
Tried your code above:
<?php if ( get_post_meta($post->ID, 'category', true) ) : ?> <?php $cat_name = get_post_meta( $post_id, 'category', 'true' ); $cat_id = ( ! empty( $cat_name ) ) ? get_cat_ID( $cat_name ) : false; if ( $cat_id ) { $myposts = get_posts( array( 'numberposts' => 5, 'category__in' => $cat_id ) ); echo 'sucks2'; /* Anything else when the category exists */ } else { /* Anything when the category doesn't exist */ echo 'sucks'; } ?> <?php endif;?>
Result is echoing sucks…anything I’m doing wrong? Custom Field category is set to the name of the category and not the slug.
Forum: Hacks
In reply to: Adding External Variable to An ArrayWait…this might work:
$cat_id = get_post_meta($post_id, 'category', 'true'); foreach( $cat_id as $category ) { if $cat_id = $category->slug; $args = array( 'numberposts' => 5,'category' => $category-> slug); else //do something to loop through again } endforeach;
Basically input the category slug in a custom field, grab the value, compare against all of the category slugs, if it matches set the cateogy slug in the $args array, and then run the
$myposts = get_posts($args);
function…I think that would work…just not sure how to get out of the if statement when the category doesn’t match.
Forum: Hacks
In reply to: Adding External Variable to An ArrayI’m trying to show the 5 most recent posts for a category that is related to a certain post. (I’m using WP-Property so if you understand that then: I’m trying to display the 5 most recent posts related to a property type called neighbhorhood)
so $categories = get_the_category( $post_id ); will not work in this case because 1) this is a custom post type that can’t be subjected to categories and 2) trying to make this as user-friendly as possible without adding too much custom code.
What exactly is happening is that all the original content is replaced with the actual post that is the last post in the 5 most recent posts in my sidebar.
Forum: Hacks
In reply to: Adding External Variable to An ArrayI think I could potentially do something like the following:
$args[‘category’] = get_post_meta($post_id, ‘category’, ‘true’);
Just wondering how to get around the last post showing up in the main content area.
Did you ever find out how to fix this?
Forum: Fixing WordPress
In reply to: Cannot Install/Update Plugins Since Upgrade to 3.2PHP Safe Mode was “On” and I turned it off and everything worked fine…
How do I get the app on my business page or fan page? It’s working on the App page, but not on my Fan page…
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Thickbox no longer working (FIX SOLUTION)Chris,
I’m having this same issue. I deactivated every plugin I had except NextGen, but that still didn’t fix my problem. Anything else you can think of that might prevent thickbox from working in IE? Works fine in FF.
Thanks!