Pre-Alpha 1.0
MB Montessori

tenterhooks

suspense seldom kills

Members

"Sir, I look upon every day to be lost, in which I do not make a new acquantaince."- Samuel Johnston

Sheri

Member since:Sat. Jan. 27, 2007


Websitehttp://www.webdezine.ca
EmailSend an email to Sheri
Professions
I am the admin. This is my blog. I started the blog to document my journey as I develop www.mbmontessori.com I have a big interest in the development as my, what once was hobby (web design/development), is taking center stage in my life. It's a Montessori site because my other great passion is Montessori education. I am a trained Casa Montessori teacher, who unfortunately lives in the sticks, where no one has ever heard of Maria Montessori. Oh, well back to coding.

Comments

Comment In: New Wordpress Menu

Eric, the fixes have been put in place. Please

more» let me know how it works out for you.

Comment In: New Wordpress Menu

Thanks for getting back. OK then. I know that

more» the 5 version works...it's right up above :P My line 754 is the first call to the blogroll. Looking at the code I see that I forgot to see if there was anything there before walking through the array. Lets try to fix this before I update the download! Please replace the blogroll function found beginning at line 740 in webdezine_css_menu.php with this function: <code> function webdezine_list_blogroll ($top_name_display = 'Blogroll',$head_name_class = 'blogroll_top', $sub_parent_link_class = 'blogroll_child', $roll_link_class = 'blogroll_link',$display_link_count = '0', $bobrace = '(', $eobrace = ')') { global $wpdb; //INITAL CALLS TO THE DB $blogroll_query = get_blog_roll (); if (isset($blogroll_query)){ //HTML NECESSARY TO MAKE THE CSS WORK $parent_group_start_string = '<!--[if IE 7]><!--></a><!--<![endif]--><table><tr><td><ul>'; $parent_group_end_string = '</ul></td></tr></table><!--[if lte IE 6]></a><![endif]--></li>'; //START THE ENGINE $output = ''; $output .= '<ul><li><a class="'.$head_name_class.'" href="" rel="nofollow">'.$top_name_display.$parent_group_start_string; foreach ($blogroll_query as $cats){ if ($cats->category_parent==0){ //discovering whether the category is a parent by comparing the cat id with the parent id array $output .= '<li><a class="'.$sub_parent_link_class.'" title="'.$cats- rel="nofollow">cat_ID.'-'.$cats->cat_name .'" href="'.$cats->cat_ID.'">'.$cats->cat_name ; if ($display_link_count == 1 ){ $output .= $bobrace .$cats->link_count.$eobrace; } $output .= $parent_group_start_string; $current_parent_id = $cats->cat_ID; foreach ($blogroll_query as $child_cats){ if ($child_cats->cat_ID == $current_parent_id) { $output .= '<li><a class="'.$roll_link_class.'" href="'.$child_cats- rel="nofollow">link_url.'" rel="'.$child_cats->link_rel.' name="'.$child_cats->link_name.'" title="'.$child_cats->link_description . ' rated:'.$child_cats->link_rating .' by '.$child_cats->display_name .'" target="'.$child_cats->link_rel .'" >'.$child_cats->link_name .'</a></li>'; } } $output .= $parent_group_end_string; } } $output .= $parent_group_end_string; $output .= '</ul>'; echo $output; } } </code>

Comment In: New Wordpress Menu

You must have done something because I see the

more» menu on your site! Looks good too!

Comment In: New Wordpress Menu

I get you...i also should have asked which plugin

more» you have---the one for php5 or php4?

Comment In: New Wordpress Menu

Absolutely. sheri [at] webdezine [dot] ca

more»Absolutely. sheri [at] webdezine [dot] ca

Comment In: New Wordpress Menu

Not sure :P Can you provide a link?

more»Not sure :P Can you provide a link?

Comment In: Blog customization

Anytime [Flash] Buddy :P

more»Anytime [Flash] Buddy :P

Comment In: New Wordpress Menu

I never thought about adding that option :( I

more» have emailed you.

Comment In: New Wordpress Menu

Testing Sheri

more»Testing Sheri

Comment In: New Wordpress Menu

absolutely... sheri [at] webdezine [dot] ca .

more» I'll be here most of the day. Best Sheri

Comment In: New Wordpress Menu

Hi Gary, I am working on another project that

more» must be finished asap so the addition of external links will have to wait a bit. Quick and dirty hack: in the main file (the one viewable through the 'plugin editor'): find the 'get_menu' function here I globalized the $wd_blog_url variable and used it as a link to create a 'home' top level. <code> function get_menu($block_class) { global $license,$wd_blog_url; $my_page = get_option('webdezine_pages'); $my_page = (array_values($my_page)); $my_cat = get_option('webdezine_categories'); $my_cat = (array_values($my_cat)); $my_arc = get_option('webdezine_archives'); $my_arc = (array_values($my_arc)); $my_roll = get_option('webdezine_blogroll'); $my_roll = (array_values($my_roll)); $my_meta = get_option('webdezine_meta'); $my_meta = (array_values($my_meta)); echo '<div class="'.$block_class.'">'; echo '<ul><li><a class="topmenu3" href="'.$wd_blog_url.'" rel="nofollow"><span>home</span></a></li></ul>'; if ($license == true || $license == false){ call_user_func_array('wd_menu_pages', $my_page); call_user_func_array('wd_menu_cats', $my_cat); call_user_func_array('wd_menu_arcs', $my_arc); call_user_func_array('wd_menu_blogroll', $my_roll); call_user_func_array('wd_menu_meta', $my_meta); } echo '</div>'; } </code> You can create any sort of additions before the menu generation or after the menu generation (i.e. between the < div >s). If you want to create an additional drop menu copy the source code from your page using a single < ul > as the base, change the href's to static locations and plop in this section of the plugin. Good luck! I like your theme :) Bright and cheery! Sheri

Comment In: New Wordpress Menu

Ummm..not sure. did you assign the font-weight

more» to the a element? everything is styled through the links.

Comment In: New Wordpress Menu

Yes - remove the blogroll "title" in the options

more» - place all your links under one blogroll category and go for it!

Comment In: New Wordpress Menu

yes. you can hard code them within the menu

more» generation page - all_the_menus.php

Comment In: E-Commerce Shop for WordPress

Also for those interested, the shop Rich and I

more» are producing is GPL.

Comment In: New Wordpress Menu

It's still in behind your content container. Try

more» setting the content container z-index lower than the menu.

Comment In: New Wordpress Menu

add "z-index: 1000;" without quotes to your

more» .topmenu class. see if that helps. sheri

Comment In: New Wordpress Menu

It is just a page that has been created. Go to

more» manage pages and delete the page titled "link Sitemap"

Comment In: New Wordpress Menu

I am not sure what you mean...it rolls left. Can

more» I see it in action?

Comment In: New Wordpress Menu

Your welcome :D

more»Your welcome :D

Comment In: New Wordpress Menu

I don't have access to a Mac unfortunately. Does

more» it work in other Mac browsers?

Comment In: New Wordpress Menu

Hi Ryan! K2?? %-) Sheri

more»Hi Ryan! K2?? %-) Sheri

Comment In: New Wordpress Menu

Hi Emi, Is that IE6 or 7? Sheri

more»Hi Emi, Is that IE6 or 7? Sheri

Comment In: New Wordpress Menu

Yes, I sent you an email. Sheri

more»Yes, I sent you an email. Sheri

Comment In: New Wordpress Menu

Click the "options" tab - you will find the menu

more» options there.

Comment In: New Wordpress Menu

Your welcome. I'm here all the time it seems.

more» The computer cannot live without me ;)

Comment In: New Wordpress Menu

hehe I can pull a rabbit out of a hat too! :D

more»hehe I can pull a rabbit out of a hat too! :D

Comment In: New Wordpress Menu

Hi Chris, I responded to your email. Sheri

more»Hi Chris, I responded to your email. Sheri

David

Member since:Fri. Feb. 16, 2007


BigRay

Member since:Thu. Feb. 22, 2007


Websitehttp://www.getsafensecure.com
Comments
lane411

Member since:Sat. May. 12, 2007


unknown19C

Member since:Sun. May. 13, 2007


jochen

Member since:Sun. May. 13, 2007


pulse

Member since:Fri. May. 25, 2007


dwilson

Member since:Sun. May. 27, 2007


Corefino

Member since:Tue. May. 29, 2007


andyebon

Member since:Tue. Jun. 12, 2007


John Dillon

Member since:Fri. Jun. 22, 2007


NWADesignWorks

Member since:Mon. Jul. 16, 2007


unknown50E

Member since:Tue. Jul. 24, 2007


humblejon

Member since:Fri. Jul. 27, 2007


Comments
Christina Lannen

Member since:Mon. Jul. 30, 2007


Comments
mozzer

Member since:Tue. Aug. 21, 2007


Comments
unknown31K

Member since:Thu. Aug. 30, 2007


unknown0SD

Member since:Sat. Sep. 1, 2007


tahirmahmood

Member since:Sat. Sep. 8, 2007


Kemila Velan

Member since:Sun. Sep. 23, 2007


boodollra

Member since:Thu. Jun. 5, 2008


ClumanX

Member since:Fri. Jun. 6, 2008