mediadecay
Forum Replies Created
-
Well nothing showed up in the console, but I double checked and whatever the issues is it worked in Chrome but nothing in Firefox. Anyway it’s working now.
Forum: Plugins
In reply to: [Yoast SEO] Cannot Export – Error Line 93Same issue here. I get this:
Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /*/*/*/*/wp-content/plugins/wordpress-seo/inc/wpseo-non-ajax-functions.php on line 93
Having the same problem. Newer uploaded files fail to be served from Cloudfront.
Forum: Themes and Templates
In reply to: Displaying custom post titles?I used this for both my single-movies template as well as my index.
I’m having this same problem. I’m putting the “Access Key ID” in the second box and the “Secret Access Key” (the one next to the “Access Key ID” that you have to click to view) in the first box and it tells me my credentials are incorrect. I’ve even tried reversing them and no luck.
Forum: Fixing WordPress
In reply to: Archive pages displaying are displaying all my postsAnyone?
Forum: Fixing WordPress
In reply to: Showing a different name for same taxonomy possible?Yeah I figured it out on my own. I’m using that exact method. Just forgot to post the follow up. Thanks.
Forum: Themes and Templates
In reply to: Sidebar pushed down in firefoxAnyone?
Forum: Themes and Templates
In reply to: Sidebar pushed down in firefoxSorry I didn’t realize I wasn’t allowed to post the code on the board. Here’s a link to it:
https://www.jasonfoulke.com/md2/wp-content/themes/MediaDecay2Theme/style.css
Forum: Themes and Templates
In reply to: Styling content types differently on main page?Thanks.
Forum: Themes and Templates
In reply to: Styling content types differently on main page?That doesn’t seem like it’d do what I’m talking about. I want all this to show on my main index.php, I’m not looking to style individual pages, I’m looking to show different post types differently on one page using the loop output.
Forum: Themes and Templates
In reply to: Displaying custom post titles?Well I solved this problem thanks to Mr. Tadlock himself. gave me the code he used so it would be something like this if anyone else is trying to accomplish the same task:
<?php $type = get_post_type(); if ( 'movie' == $type ) echo 'Movie: '; elseif ( 'book' == $type ) echo 'Book: '; ?>
Forum: Themes and Templates
In reply to: Displaying custom post titles?I’ve discovered partially how to do this. I can now display everything using this:
<?php $post_type = get_post_type_object( get_post_type($post) ); echo $post_type->label ; ?>
but it displays all post type names including the standard “post” so a custom post type of “Movie” and title of “Scott Pilgrim” will display as
Movie Scott Pilgrim but a regular post with the default post type “post” with a title of “Hello World!” will also display as Post Hello World!, how do I exclude posts from displaying “Post” before their title?Forum: Fixing WordPress
In reply to: Using Custom Taxonomies with Custom Post TypesI want to do the code myself and not rely on a plugin.
Forum: Fixing WordPress
In reply to: 2.9 Schedule Posts “missed”I’m having the same problem. Disabling plugins doesn’t help. I depend on the scheduling of posts. This only happened after updating to 2.9.