dommega
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Another Dynamic Page Highlighting ProblemWow talk about dumb mistake. As the current state I was calling an image in the id tag. For some reason, I had to put the absolute url in the background: url() tag.
Forum: Fixing WordPress
In reply to: Another Dynamic Page Highlighting ProblemSo it is not in the style.css. This is in the <style></style> tag in header.php.
current is being assigned in this :
<?php
if ( is_page(‘home’) ) { $current = ‘a’; }
elseif ( is_category(’25’) ) { $current = ‘b’; }
elseif ( is_page(‘5’) ) { $current = ‘c’; }
elseif ( is_page(‘4’) ) { $current = ‘d’; }
elseif ( is_category(‘2’) ) { $current = ‘e’; }
elseif ( is_page(‘8’) ) { $current = ‘f’; }
?> which is above the <style>tag.Forum: Fixing WordPress
In reply to: Plugin: Simple insert of images into custom fields?Why don’t you use an aside then?
Forum: Fixing WordPress
In reply to: Multiple Index instead of is_category()That helps a lot, thank you.
Forum: Installing WordPress
In reply to: Elementary TAR QuestionChange a directory = cd
List files = ll (long list) // ls (short list)
Show hidden files = ls -a
Show files with Ksize = l -h
vi or vim = enter in vi or vim mode
Create a file = touch (touch file.txt)
Make a directory = mkdir directoryname
Root directory = /
Copy a file = cp
Move a file = mv
Remove a file = rm
Remove a directory = rm -r
Clear screen = clear
Tar a file = tar -cvf file.tar directory/
UnTar a file = tar -xvf file.tar
Zip a tar = gunzip
UnZip a tar = gzip
Find = grep -l something somewhere
Open a file = open filename
Auto complete = tab
Easy Read and write = chmod a+w filenameForum: Plugins
In reply to: Best way to copy and paste code?I have never experiences that problem before. Sorry.
Forum: Plugins
In reply to: Best way to copy and paste code?Instead of copying and pasting the code:
1. Right click on the Link of the Plugin
2. Go to Save As…
3. Save the File
4. Put the saved file in your plugins folderForum: Your WordPress
In reply to: Please review : New WordPress related websiteThey are beautiful things which should be expressed at the right time. A lot of sources of info as the problem, means that the Codex, or a Wiki is the solution. Viewpoint? A site is a viewpoint. A Codex is a conglomeration of perspectives.
Forum: Your WordPress
In reply to: Please review : New WordPress related websiteAnother wordpress portal. Why don’t people just add to the codex to create one large and strong repository, rather than invest in a another mini portal. I think someone made a post a week ago about “too many things in too many places.” That person was right.
You wrote in your introduction: “WP-Zone was born out of our frustration to find a single comprehensive site for WordPress…”
how about the wordpress Codex, mentioned once again?
Forum: Plugins
In reply to: Admin Theme for Login/ RegisterYes, I have and it seems that it is not so well supported. Is there an add_action tag I am missing, or is there some other easy way to do it?
Forum: Requests and Feedback
In reply to: Pass protected categories/posts on/off main pageexclude that category from showing up on the main page.
Forum: Fixing WordPress
In reply to: foreach () problemdefine legal? funny question. I am trying to adjust the include_page plugin to show the page titles as well.
Forum: Plugins
In reply to: default category in 1.5.1?Why don’t you just do the default category for the admin panel?
Forum: Fixing WordPress
In reply to: Sub category post – no commentsI tried your problem on both 1.5 and 1.5.1 and had no problem. Did you modify the template at all?
Forum: Fixing WordPress
In reply to: Links display actual host instead of .comThis is your domain problem, not a WP problem. You should be able to set up a re-direct using cpanel domain or such.