JaneLitte
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: custom taxonomy permalink 404 problemI reviewed the code in the function.php file and another taxonomy had the same slug. Once I had fixed that, I no longer had a 404 problem.
Forum: Plugins
In reply to: [@ Reply] [Plugin: @ Reply] Plugin Broken in 3.0.5Worked for me too. Thank you so much!
Forum: Plugins
In reply to: [@ Reply] [Plugin: @ Reply] Plugin Broken in 3.0.5Broken for me as well.
Forum: Plugins
In reply to: [Plugin: rotating-posts] questionsI’ve tried `$postKey = get_post_custom_values(“RotatingPostImage”);
$postKey = “<img src='”. $postKey . “‘/>”;`
and the output is<img src=''/>If I do
$postKey = get_post_meta($post->ID, 'RotatingPostImage', $single = true); $postKey = "<img src='". $postKey . "'/>";and the output is
<img src=''/>Any suggestions? Am I doing something wrong in outputting the key?
Forum: Fixing WordPress
In reply to: Custom Field Output – Code Help Needed‘$postKey = get_post_meta(‘RotatingPostCover’, $post->ID, true);’
This should populate $postKey with the value in ‘RotatingPostCover’ key for the current POST ID, correct? because when I outpute $postkey using this:
echo " <div class='rp_post_content'><img src='{$postKey}' /></div>\n";I get nothing.
Forum: Themes and Templates
In reply to: frontpage layout question: rotating posts above static pageUse the plugin Rotating Posts.
Forum: Plugins
In reply to: [Plugin: rotating-posts] questionsI was wondering if I could change the posted content to just show an image. I added a custom field where I would paste the URL of the image. I wasn’t sure what to change in the code. The existing code is:
$postContent = get_the_content(get_option(RP_OPTION_READ_MORE)); $postContent = apply_filters('the_content', $postContent); $postContent = str_replace(']]>', ']]>', $postContent);I was thinking of changing it to
$postContent = get_post_custom_values($RotatingPostImage); $postContent = str_replace(']]>', ']]>', $postContent);Forum: Plugins
In reply to: New plugin – SuperSlider-MooFlowAm getting the following error. Also, can I just insert [gallery] between the mooflow shortcodes or do I need to enter the url for each image?
Warning: Cannot modify header information – headers already sent by
Forum: Fixing WordPress
In reply to: Advanced Post ErrorI have this same problem. I did a complete clean reinstall.
Forum: Plugins
In reply to: manageable edits resets timestamp on post to 00:00Now I see that it is a conflict with restore exact time plugin. Is there any plugin that shows the time of the post (instead of __ hours ahead) that doesn’t conflict with manageable.
Forum: Plugins
In reply to: Add hyperlink to get recent comments widget titleoh good lord, the solution was just to add the hyperlink in the ‘title’ portion of the widget.
Forum: Fixing WordPress
In reply to: Comment boxesYour comment boxes and comments do show up on the post. Do you want them on the front page as well?
Forum: Fixing WordPress
In reply to: Deleted Default and classic templates by accidentredownload the installation of wordpress. the default and classic themes will be in the wp-content/themes folder.
Forum: Fixing WordPress
In reply to: Akismet Blocking More Than SpamThere was an askimet whitelist plugin but the link no longer works. Does anyone have the plugin that could provide the code for us?
Forum: Fixing WordPress
In reply to: Comment box disappears, Allow comments not savingApparently, the “allow comments” checkmark is not saving after unchecking it the first time. Any thoughts?