danes75
Forum Replies Created
-
wordpress/automattic people? anyone? is it vacation month for everyone? should we all start looking for blog software that actually does what it says it will?
It seems to only happen if you try to add photos to your blog by clicking on the “Photos” tab.
Why are these posts a month old and there hasn’t been a response yet? I upgraded my system and now the “Press This” browser bookmarklet doesn’t work anymore.
Is there a fix planned (within the next, I dunno, 2 months) for this or should I just delete the link?
Forum: Your WordPress
In reply to: themes are now finishedyeah, i’m not sure about safari. i did noticed that it had problems, but since it works in nutscrape, i.e., and firefox…. apple needs to standardize.
Forum: Your WordPress
In reply to: themes are now finishedi also changed the font color to something easier to read… its still not #000000, but it is a little darker than before. ??
i have a notebook, so the original was a lot more legible on my screen than it was on a typical monitor.Forum: Your WordPress
In reply to: www.homocoit.usthanks ?? i’ll work on making it more reader friendly ??
Forum: Your WordPress
In reply to: www.homocoit.usWell, I think it comes from trying to integrate Coppermine Photo Gallery into the css. When I add some of the css tags used in Coppermine, the big white space appears… but oddly enough, not in the photo galleries themselves.
Forum: Your WordPress
In reply to: www.homocoit.usthanks! ??
Forum: Fixing WordPress
In reply to: Help!!! (please :-) )Calling two funtions from thwell now that doesn’t work either… dammit, grrr…. its still saying the category doesn’t exist… .when I can see for myself in the admin section that it does. and even though i specify
&cat=1
it still shows other categories. i’m about to trash my damn index page and start over.Forum: Fixing WordPress
In reply to: Help!!! (please :-) )Calling two funtions from thhmmm… well thanks! ?? for some strange reason, LL’s fix worked once, but thereafter when i would click on
https://www.homocoit.us/hc/index.php?p=32
in my links menu, it would come up as “Sorry, no posts matched your criteria.”, even though in my admin section there is a post with that id number. I think i’ve just fiddled with my index file too much.Forum: Plugins
In reply to: Show posts under specific category onlyhmm… i’m having a problem implementing the ShowOneCategory. I’ve followed the instructions, and it doesn’t work :-\
Forum: Fixing WordPress
In reply to: HELP! Show-one-category-on-front-page hackhmm…. dammit. while that does prevent any other than the specified category to show on the main page… it also keeps you from EVER getting to them. WTF?????
Forum: Fixing WordPress
In reply to: HELP! Show-one-category-on-front-page hacksweet!!! thanks a TON!!!
Forum: Fixing WordPress
In reply to: HELP! Show-one-category-on-front-page hacknaw… just accidentally left out the – ??
everything else in the my-hacks.php file works.
<?php
if ('/' == $_SERVER['REQUEST_URI'] || '/index.php' == $_SERVER['REQUEST_URI'])
$cat = 1;
// Switcher
require_once('wp-style-switcher.php');
wp_style_cookie();
// Mood
require_once('wp-mood/wp-mood.inc');
// people popup
function peopleDefine($text) {
global $wpdb;
$names = $wpdb->get_results("SELECT people_ID, people_name, people_bio FROM wp_people");
?>
<script language="JavaScript" type="text/javascript">
<!--//
function peoplePop(id){
peopleURL = 'wp-people-popup.php?person=' + id;
window.open (peopleURL, 'peopleWin', 'toolbar=no,location=no,menubar=no,status=no,scrollbars=yes,status=no,width=350,height=350');
}
function myVoid(){
null;
}
//-->
</script>
<?phpforeach ($names as $names) {
$thisID = $names->people_ID;
$searchArray = array('\'','\"');
$replaceArray = array('‘','"');
$real_name = $names->people_name;
$text = preg_replace("#$real_name(?!</(ac|sp))#",
"$real_name", $text, 1);
$text = preg_replace("#$real_name(?!</(ac|sp))#",
"<span class=\"caps\"'>$real_name</span>", $text);
}
return $text;
}
add_filter('the_content', 'peopleDefine');
?>Forum: Fixing WordPress
In reply to: Excluding multiple categoriesI can’t get the script to work at all. Its implemented exactly as stated in both the myhacks.php and the admin section of the site, but when i go to the directory https://www.homocoit.us/hc … nothing. still lists all the categories. There’s not even any error message so I can try and figure out what the problem is.