portlandridge
Forum Replies Created
-
I just found out you can’t it only does it on the home and search and other templates, You just cant put it on any page.
I tried to join the forum for his plugin but I couldn’t get past his captcha.
Not sure about the double captcha thing they have turned on, doesn’t seem to make since where they ask for the code and then again without dots, but dots were never there to begin with, very confusing.https://forums.avirtualhome.com/register2/
Does anyone know of a plugin that will allow for the categories to be listed within a page and not just in the wiget sidebar?
Forum: Fixing WordPress
In reply to: Media Uploader missing options WP 3.0me too. the whole section on the admin page wp-admin/options-media.php
called “Uploading Files” is missing.I am using wordpress 3.1.1. and have turned off all plugins.
I am running multiple sites, and I don’t see it on any of the other ones as well.I know the setting used to be under “settings > miscellaneous” but in wp3.1.1 it should be under settings> media.
Any ideas on how to get this section back in?
Forum: Fixing WordPress
In reply to: cant upload images to wordpress 3.1.1does wordpress version 3.1.1 even have the settings> media> path?
I see the media section under settings but no path info.
/wp-admin/options-media.phpWhere can I find the path info. I see my images were getting saved on the server under “files” but when I ftp I don’t see the files dir.
HELP!
Forum: Plugins
In reply to: [Pages Posts] [Plugin: Pages Posts] The original page text and formattingOk I see that by changing my setting from Excerpt to “full post” brought back in the formatting code. It looks great now thanks.
Forum: Plugins
In reply to: [Pages Posts] [Plugin: Pages Posts] The original page text and formattingI love this plugin, it does just what I want. But the text in the post doesn’t keep it’s formatting, any idea why?
See the text below each image, https://samroloff.com/available-paintings/
and then see it hen you go to the actual post.Thanks
This is the line of code that is causing the issue, but I am not sure what this does, any ideas?
if(!ereg( get_option($welcome_http_host), $_SERVER[‘HTTP_REFERER’])){
Did you find another plugin that works? If so, please share the name.
Forum: Plugins
In reply to: [Email Users] [Plugin: Email Users] Using user name in emailsi would like to know as well.
Forum: Themes and Templates
In reply to: Display different header per category that post is in.bencharity,
I like what you did here but I can’t seem to get it to work for me. I have the header files created. Can you see if this code looks right?<?php
$post = $wp_query->post;
if ( in_category(‘4’) ) {
include(TEMPLATEPATH . ‘/header-seattle.php’);
if ( in_category(‘5’) ) {
include(TEMPLATEPATH . ‘/header-portland.php’);
if ( in_category(‘6’) ) {
include(TEMPLATEPATH . ‘/header-sf.php’);
if ( in_category(‘7’) ) {
include(TEMPLATEPATH . ‘/header-la.php’);
if ( in_category(‘8’) ) {
include(TEMPLATEPATH . ‘/header-sd.php’);
}
else {
include(TEMPLATEPATH . ‘/header.php’);
}
?>It works fine if I only have the first one like this
<?php
$post = $wp_query->post;
if ( in_category(‘4’) ) {
include(TEMPLATEPATH . ‘/header-seattle.php’);
}
else {
include(TEMPLATEPATH . ‘/header.php’);
}
?>As soon as I repeat the code and add in all the other headers it only shows a white screen.
Please help!