MaddTechWF
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Showing sub categoriesIs this going to display the Child’s name or ID?
Forum: Fixing WordPress
In reply to: Display Subcategories in SidebarI noticed that this post is similar to what I was looking for. I’m hoping that there is a way that I can use the above code but have it the subcategories of the current page selected. I have the code placed in the sidebar via a PHP Text Widget.
Forum: Fixing WordPress
In reply to: Help Adding Picturesyes but like 3 updates ago.
Forum: Fixing WordPress
In reply to: Help Adding PicturesThey are both JPG’s. I tried a different image and it too could not be displayed.
Forum: Themes and Templates
In reply to: Help with popupalting a page based on a secondary menuOkay. I have a page called Services.php. That page calls the get_header() and get_footer() commands like normal. I have a page called Services that has a template associated to it called Services.
I need to setup the services template to show all the services post using the above template.
Forum: Themes and Templates
In reply to: Help with popupalting a page based on a secondary menuI do… I want to load them this way. That was just an example.
Forum: Themes and Templates
In reply to: Help with popupalting a page based on a secondary menu<div class="service"> <img class="services_icon" SRC="images/internet_marketing_icon.jpg" alt="Internet Marketing" /> <div class="service_text"> <h5>Internet Marketing</h5> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy and scrambled it to make a type specimen book. It has survived not only five centuries.</p> <p>But also the leap into electronic typesetting, remaining essentially unchanged orem Ipsum has been the industry's standard dummy text ever since the beggining. </p> <a class="related_projects" HREF="work.html">View related projects</a> </div> </div> <!-- .service --> <div class="service services_no_margin"> <img class="services_icon" SRC="images/website_design_icon.jpg" alt="Internet Marketing" /> <div class="service_text"> <h5>Website design & Development</h5> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy and scrambled it to make a type specimen book. It has survived not only five centuries.</p> <p>But also the leap into electronic typesetting, remaining essentially unchanged orem Ipsum has been the industry's standard dummy text ever since the beggining. </p> <a class="related_projects" HREF="work.html">View related projects</a> </div> </div> <!-- .service --> <div class="clear_container"></div>
I need to be able to take the above code and run a loop on it to show my services. How?
Forum: Themes and Templates
In reply to: Help with popupalting a page based on a secondary menuThat doesn’t really help on how to tell it to print two posts across and as many rows down as needed to display all posts of that category type.
Forum: Themes and Templates
In reply to: Help with popupalting a page based on a secondary menuWell I have a parent category called Test with children called ctest1, ctest2, and ctest3.
When I click on TEST I want it to load my page and load my Menu2 with its children. I then want to be able to click on one of the children and have it load the posts related to it.
I know how to do it with CSS but I’m confused on how I would code it with WP.
Forum: Themes and Templates
In reply to: Applyin style to Category listI just found my answer here…
li.categories { ... } /* outermost list item */ li.cat-item { ... } li.cat-item-7 { ... } /* category ID #7, etc */ li.current-cat { ... } li.current-cat-parent { ... } ul.children { ... }
Forum: Themes and Templates
In reply to: Applyin style to Category listI don’t have the theme up. I’m currently working on it. I’m using the
<?php wp_list_categories('arguments'); ?>
and want to apply a selected theme to the current item selected. I just wasn’t sure what code snippet to put in my CSS that would tell it to change the font color of the selected item.Forum: Themes and Templates
In reply to: Porting a ThemeI was doing some searching and came across this little bit of code to list all of the children of a category.
<?php if (is_category()) { $this_category = get_category($cat); if (get_category_children($this_category->cat_ID) != "") { echo "<h1>Subcategories</h1>"; echo "<ul>"; wp_list_categories('orderby=id&show_count=0&title_li= &use_desc_for_title=1&child_of='.$this_category->cat_ID); echo "</ul>"; } } ?>
I want to use it with the code you provided me before to create a second menu that has all of my subcategories for that page.
Forum: Themes and Templates
In reply to: Porting a ThemeWhat would I need to change if I wanted to apply this to a secondary menu also.
Forum: Themes and Templates
In reply to: Porting a ThemeIn the Function.php page do I need to put
<a HREF="about-2520us.html">About us</a>
or something else?
Forum: Fixing WordPress
In reply to: Custom PageI added the 4 lines but it messed up my entire theme to my site. I’m hoping someone at the plogger forums can help me with this part now. Thanks for the help everyone.