jabecker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Webpage link to open inside WordPressAre the links internal to your site or external?
If external, I don’t think so without a frame. You could use an iframe, maybe, around your gallery and load the external link into the iframe. That would save you from having to put WP into a frameset.
If the links are internal to your WP install, you can see that I’ve done something similar here:
https://www.persistentillusion.com/blogblog/index.php?pagename=finished-objects-gallery-2005
If you click on the caption above the larger image, you will be linked to the object’s detail page. All of the detail pages are static pages, and they all use a page template that looks like I want it to look.I hope this helps.
Forum: Fixing WordPress
In reply to: Extra space before first image in IE, not FirefoxHave you tried making the pictures a little bit smaller? It looks to me as though they are just a few pixels too wide for the block they’re contained in. IE will do strange things in that case.
Forum: Fixing WordPress
In reply to: Displaying links – unwanted diamond characterIf you view your page source, you’ll see that the headers for “My Activism” and “My Other Sites” are preceded by an
<li "linkcat-x">
tag. That’s what’s causing the diamond. The “Categories” header does not have this tag before it.Try adding
#sidebar li {
list-style-type: none;
}to your css.
Forum: Fixing WordPress
In reply to: Dreamhost pulled my site and I don’t know why.You might also check out https://www.successfulhosting.com. I’ve hosted several sites with them for about 3 years and always had wonderful support. They have 24/7 on-shore support at no charge and some good hosting plans.
Forum: Themes and Templates
In reply to: Using WP with an existing, hand coded website?You would need to include “the loop” in your front page. Here’s a link to the codes info on the loop:
Forum: Plugins
In reply to: Different sidebars for each page, or asidesI’m assuming that you want to do this on a page where there’s a single post? I was thinking that in the loop you could store the $post_id in a variable, and then use
get_post_meta($post_id, $key, $single);
or the_meta()
in the sidebar to display the custom field.I don’t know if that would work or not, and I don’t have time to try it out. But that’s how I would probably approach it.
Forum: Plugins
In reply to: Different sidebars for each page, or asidesCan you use a custom field:
Forum: Everything else WordPress
In reply to: OMG Help did I just lose my entire blog?!?!ok… This might seem like a stupid question, but did you remember to save your changes?
Also, do you have more than one database (one on paulfromcanada.com and another one on paul.buildtolearn.net)? If so, what’s in your wp-config.php? Does it point to the right database?
Forum: Themes and Templates
In reply to: Dreamweaver and CSSgrinandgumble — I use Dreamweaver. I’ve never really managed to get WP to display correctly in preview. What I’ve done is used xampp to set up a local environment that I can run WP in. I make the changes in Dreamweaver to the locally installed version. When I save the change it’s “live” in the local version instantly and I can preview it complete with a working database. Here’s a tutorial on how to set up xampp:
https://www.tamba2.org.uk/wordpress/xampp
It’s not as complicated as it sounds, if you just take it one step at a time. It’s a great way to set up a test server.
Once the changes are to your liking, you can copy them over to your “real” WP installation and upload them to the web server.
Forum: Fixing WordPress
In reply to: My page looks horrible in IE!kameyers, you might want to take a look at the articles on https://www.positioniseverything.net. There’s a lot of information about why the same page looks different in different browsers, and what you can do to fix it. No PHP required (it’s all done with CSS).
Forum: Fixing WordPress
In reply to: Disturbing Old TrendLaziness?
I think whoami came the closest to what I believe is actually happening. When any software product is first released, it’s users tend to be those who are experienced with that type of software and the environment it runs in, because those are the users who can see its advantages. As it becomes more popular, it pushes further and further into a population that grows less and less experienced. Hey, Johnny down the street uses this stuff, so how hard can it be? right? WordPress advertises itself as easy to use… the famous 5-minute install and whatnot.
I had little experience with blogging or its software when I started with WP, too. But I’ve been around computers and software for 20 years and I know how to find out answers to questions that might pop up. I’m mostly able to solve my own problems with a little research.
But what if my computer experience was limited to a bit of web surfing, a document or two, and printing out a few pictures of the kids? If I’m interested in blogging but don’t want to join Blogger or Livejournal or the like, “easy” software like WP might be attractive. But I might not have a clue how to help myself if I run into trouble.
Where’s the disclaimer on the download page that states that a knowledge of css/html, php, sql and basic web design are assumed? Where’s the suggestion that if you don’t knows these things already, you’d better pay someone to install this “easy” software for you?
Yes there are a lot of people here who ask questions first and do research later. And some of them are rude.
But what really astonishes me is the rudeness of some of the people who answer, especially when the question is being asked by someone who sincerely needs help. All of us at one time were new to this and needed help.
We’re all volunteers here. If you don’t want to help, then why come here?
Forum: Plugins
In reply to: Problem with cg-amazon / blank siteI’m sorry you are also having problems, but glad to know there’s two of us!
Forum: Themes and Templates
In reply to: TTLB Ecosystem, and Javascript Validationchange the “&” to “& a m p ;”. That should do the trick.
Except leave the spaces out. I had to have the space in there so it wouldn’t just show &.
Forum: Themes and Templates
In reply to: Cleaning up a themeAnother thing you can do is to put all of the browser hacks in a separate stylesheet and remove them from your style.css. Then import the hacks stylesheet in your header. That way they are out of the way but still available to the browsers that need them.
Nice theme, by the way.
Forum: Plugins
In reply to: Problem with cg-amazon / blank siteThanks!
I’d be happy to start with an alpha version. My test bed isn’t public, but I guess I could throw a version up on the web if I have to.
P.S. Changes are good I’m going to wait for the next release before upgrading, so there’s not a huge hurry.