jeffeggleston
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Yoast SEO First Time Configuration User Dropdown IssueI am having this issue. I have tried in both Firefox and Chrome to address it. I have filled out every single field on the user page, and still, nothing shows up in “Select a User” when doing the first-time setup.
All I got was the email from PayPal. That’s it. I don’t know how they do things in your country, but in my country when someone doesn’t get what they paid for they bitch and complain. You have the pro version tied to a particular URL. How the hell would I use it on something else if I downloaded it and then lied about downloading it? For that matter, why would I lie about not downloading it? That’s just stupid.
Here’s the situation, I never got it and you never helped me with anything. This is the first time I’ve ever heard that you could download it in some “user account”. And unfortunately, I needed it the night I paid for it. I don’t need it now.
This is total bullshit and your system sucks. I am so angry about this it’s ridiculous. This is the first time I’ve ever had someone’s bad setup lead to me being totally irate about something. I’m serious about that. I understand that there are glitches and whatnot but this is ridiculous.
All I got was the email from PayPal. That’s it. I don’t know how they do things in your country, but in my country when someone doesn’t get what they paid for they bitch and complain. You have the pro version tied to a particular URL. How the hell would I use it on something else if I downloaded it and then lied about downloading it? For that matter, why would I lie about not downloading it? That’s just stupid.
Here’s the situation, I never got it and you never helped me with anything. This is the first time I’ve ever heard that you could download it in some “user account”. And unfortunately, I needed it the night I paid for it. I don’t need it now.
This is total bullshit and your system sucks. I am so angry about this it’s ridiculous. This is the first time I’ve ever had someone’s bad setup lead to me being totally irate about something. I’m serious about that. I understand that there are glitches and whatnot but this is ridiculous.
Forum: Hacks
In reply to: A loop based on meta dataThis is the code that is not working on the homepage.https://pastebin.com/eU4Rcwr1
This is the code that works on my “movies” page.
https://pastebin.com/ATwFigigForum: Hacks
In reply to: A loop based on meta dataI should also note that depending on how I edit the code above (the first one) it occasionally erases the meta data in my database on one or many of the posts. That is irritating.
Forum: Hacks
In reply to: A loop based on meta dataThis code is based on the following page on WP Recipes:
https://www.wprecipes.com/how-to-set-post-expiration-datetime-on-your-wordpress-blog
I’ve gotten this code to work on the “Movies” page of the site using the following version of the code:[Code moderated as per the Forum Rules. Please use the pastebin]
Thank you in advance for your help!!!!!
Is there any fix yet to get the “fade” effect working?
Forum: Fixing WordPress
In reply to: Problems displaying custom field dataI apparently needed to type:
global $post;
before the rest of my code. Uugghhh… newbishness….
Forum: Fixing WordPress
In reply to: Problems displaying custom field dataHere’s an example of teh data that would show in this case:
name: featured_event_info
value: Saturday, Aug. 21 – 8:00pmname: featured_event_title
value: Fiddler On The RoofNot sure if that has any bearing on the situation. That is how the data is written in the “value” fields in WordPress.
Forum: Fixing WordPress
In reply to: Problems displaying custom field data$the_query = new WP_Query( 'category_name=featured-event' ); while ( $the_query->have_posts() ) : $the_query->the_post(); $featured_event_info = get_post_meta($post->ID, "featured_event_info", true); $featured_event_title = get_post_meta($post->ID, "featured_event_title", true); ?> <div class="featured-events-post"> <a title='<?php echo $featured_event_title; ?>' href='<?php the_permalink() ?>' rel='bookmark'> <div class="featured-events-title"><?php echo $featured_event_title; ?>This is where the data should be</div> <div class="featured-events-shortdata"><?php echo $featured_event_info; ?>This is where the info should be</div></a> </div> <?php endwhile; ?>
I just fixed that.
Forum: Fixing WordPress
In reply to: Problems displaying custom field dataThis is confusing. I can get all of the title and content data to show but none of the custom field data.
Forum: Fixing WordPress
In reply to: Problems displaying custom field data$the_query = new WP_Query( 'category_name=featured-event' ); while ( $the_query->have_posts() ) : $the_query->the_post(); $featured_event_info = get_post_meta($post->ID, "featured_event_info", true); $featured_event_title = get_post_meta($post->ID, "featured_event_title", true); ?> <div class="featured-events-post"> <a title="<?php echo $featured_event_title; ?>" href="<?php the_permalink() ?>" rel="bookmark"> <div class="featured-events-title"><?php echo $featured_event_title; ?>This is where the data should be</div> <div class="featured-events-shortdata"><?php echo $featured_event_info; ?>This is where the info should be</a> </div> <?php endwhile; ?>
Ok, so i changed it and I’m still not getting any custom field data.