lizzmo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: List of Posts and Pages disappeared from DashboardI just did an xml export of the content from the dashboard before I started working on the plugin issue.
I should mention that the website’s content is mostly images so I’d like to avoid reinstalling WP if possible since I don’t think the export includes them.
There is some sort of conflict with W3 Total Cache, it works fine when I deactivate W3.
Forum: Hacks
In reply to: Using video shortcode in custom fieldThanks very much, I simplified it a bit, but you definitely put me in the right direction!
Changed to vimeo because the youtube video wouldn’t follow its z-index, even when I added wmode.
Heres what I used in the end:
<?php if (get_post_meta($post->ID, 'VIDEO', true)) { echo "<iframe src=\"http://player.vimeo.com/video/".$video."?byline=0&portrait=0&color=0096db\" width=\"466\" height=\"262\" frameborder=\"0\" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>"; } else { }; ?>So all I have to put in the custom field is the video id number, no need for a shortcode or str_replace.
Thanks again!Forum: Fixing WordPress
In reply to: Missing CategoriesI have the same issue, I’ve looked through cpanel and phpmyadmin, but for the life of me I can’t figure out how to restart mysql.
In the wp_terms table the names are capitalized but the slugs aren’t, I haven’t been able to edit them though.
…..and as I was writing this they magically reappeared. It must just be a glitch because I wasn’t able to change anything, they just came back on their own.
Thanks, resetting worked for me too.
Forum: Fixing WordPress
In reply to: "Cannot modify header information"The install itself isn’t what I meant, re-customizing everything would be.
Anyway, I actually had to fix a line in my functions.php file. No more errors!
Forum: Themes and Templates
In reply to: how to use get_the_dateThanks so much!! I never would have found that!
I had to select “use strftime instead of date” in the advanced settings.
Forum: Themes and Templates
In reply to: query posts by category defined by variable?Forum: Themes and Templates
In reply to: query posts by category defined by variable?I simplified the query to just the tag and its still not working…
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Themes and Templates
In reply to: Page thumbnail size not workingabsolutely right, thanks! just had to delete and upload the image again.
Forum: Themes and Templates
In reply to: Page thumbnail size not workingAlright its resizing the featured image now, but even though I have hard crop set to true its still doing a box resize. Any ideas?
code in functions.php
<?php add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 150, 105, true ); ?>Forum: Themes and Templates
In reply to: Category and Tag specific Link Navigation<?php $artist = get_tags(); query_posts( 'cat=OCCA_artwork&tag=$artist' ); ?>would something like that work at all? and how would I incorporate it in a link properly?