Fernando
Forum Replies Created
-
Forum: Your WordPress
In reply to: artitumis.comLike those 3d header images.
Forum: Themes and Templates
In reply to: <p><p> problem when validatingNo problem. I’m glad my own headaches could save people from their own.
??Forum: Fixing WordPress
In reply to: Sidebar menue on all pagesAre you sure that you removed lines 258, 259, and 342? I just uploaded Kubrick 1.2.5 and it worked perfectly when I did exactly what I told you to do.
The reason the sidebar doesn’t show up on the permalink pages is because line 259 basically says “if the page is NOT displaying a single post, show this code for the sidebar.” If you ARE on a single (permalinked) page, it will NOT show the sidebar if you DO NOT remove that code.
After you remove those PHP lines, you should have no problem at all.Forum: Themes and Templates
In reply to: How do I display the links from a category?Use
<?php get_links(category, '', '', '', FALSE, '',FALSE,FALSE,-1,FALSE); ?>
.
You can change the options for it as found in the WordPress Wiki – get_links.Forum: Fixing WordPress
In reply to: Sidebar menue on all pagesartitumis: I have never used the Kubrick code, but I downloaded it to find a solution for you. Try the following in Kubrick’s default
index.php
file:- On line 117, change
class="widecolumn"
toclass="narrowcolumn"
- Remove line 258:
<? // Begin Sidebar Menu ?>
- Remove line 259:
<?php /* If this is not a permalink page, show the menu */ if (!($withcomments) && (!$single)) { ?>
- Then hop down to line 342 and delete:
<? } // End Sidebar Menu ?>
Be sure to backup your index file in case I am wrong.
Forum: Themes and Templates
In reply to: <p><p> problem when validatingedge2edge: I had the same problem and had to disable Markdown and Textile plugins. I think it had something to do with me manually entering the paragraphs so that I can apply classes to them in my posts. I recon that those two plugins also automatically put paragraph tags in the start of the post.
Forum: Requests and Feedback
In reply to: Display 3 Posts. List 3 Posts.Nevermind. Found it at https://wiki.www.ads-software.com/get_posts
Forum: Your WordPress
In reply to: looking for feedback on site design, image browsergloddy: I wasn’t interested in the story introduction aspect of OrderedList.com though. What I wanted to do, I found yesterday in the wiki at https://wiki.www.ads-software.com/get_posts .
I know what you mean though. I took my current route because I tried to balance between a table of contents and the actual permalinked posts without having a boringly long home page.Forum: Your WordPress
In reply to: fdiidesignOh, that was me…
Forum: Your WordPress
In reply to: looking for feedback on site design, image browsergloddy: I dig it. I’d like to publish mine as well. I’m working on something for my main page like OrderedList.com does… show 2-3 posts then spits the remaining ones using an unordered list.
I basically did the same for my archives as you except I didn’t check from $_GET, I used something like these to show each template:
Show Initial Page. Makes sure NO archive options have been selected.
<?php if ( (empty($monthnum)) && (empty($year)) && (empty($s)) && (empty($m)) && (empty($day)) && (empty($cat)) ) { ; ?>
Show Results. Checks to see if ANY archive options have been selected. Then starts the loop.
<?php if ((!$p && !$name && (empty($single)) && (($monthnum) || ($year) || ($s) || ($m) || ($day) || ($cat)))) { ; ?>
Show Permalinked Entry. Makes sure it is only a SINGLE (permalinked) post. Then starts the loop.
<?php if ($single) { ; ?>
Sorry to bloat up your post with this.Forum: Your WordPress
In reply to: looking for feedback on site design, image browsergloddy: I think it’s nice. The sidebar color variations are cool. The header feature is cool, although I think it’d look nice to take “Obvious Diversion” out of the border.
Also for the archives I’m wondering if you did something similar to me: I basically have 3 if statements that spit out content for the archives list, archive results, and the permalinked post.Forum: Your WordPress
In reply to: fdiidesignThanks for the comments.
willneea: Thanks for pointing that out. I updated the template and forgot to change those tags.Forum: Your WordPress
In reply to: fdiidesignOh yeah… the address is https://www.fdiidesign.com/ to go to fdiidesign.
Forum: Your WordPress
In reply to: jamblo.org {jamblorocksmyworld}Nice color scheme. Nice layout. Keep up the good work.
Forum: Plugins
In reply to: Dunstan’s time_of_day anyone?@wairoanz
Sorry. Call it with<?php dumb_comments_link() ?>
. I accidently published it with “comment” instead of the plural “comments.”
And sorry to post this in this topic. - On line 117, change