tomasi514
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Security plugin: need some help please.ok mrmist, thanks, I am going to recheck my user rights.
Can anyone answer to question 1) please?Forum: Fixing WordPress
In reply to: Security plugin: need some help please.Hi mrmist, I already have 2 users and website is local for now, so on my computer..
Forum: Fixing WordPress
In reply to: How can I hide “WordPress 2.7 is available! Please update now”All right alainS, yes I can see this works fine, thank you.
Is there any other update/upgrade/change that wordpress can without my control? Which means that could change anything on my website in the future? Not sure I am clear enough? :-Snobody can help me here?
Forum: Fixing WordPress
In reply to: How can I hide “WordPress 2.7 is available! Please update now”All right Ipstenu, it is already disabled on my website.
alainS, I have tryed the Wp security scan but do not find where I can remove the line…
mrmist, I’m gonna try it.
Thanks to all of you 3.Forum: Fixing WordPress
In reply to: How to use category page names in url?Thank you romper,
I tried to change the “common settings” of my permalynk structure but then every clic I make on the homepage goes to error page, I do not understand why..
With the default urls, all of my page addresses look like this: https://www.webaddress.com/?cat=x
Why isn’t that working?Forum: Fixing WordPress
In reply to: How to get specific category name?muchas gracias tallalex, I close the post.
Forum: Fixing WordPress
In reply to: page awareness with wp_list_categories?I managed to finish this with my css, the main code is up there.
Again, thank you myinstinct, I close the post.Forum: Fixing WordPress
In reply to: How to install a local mail server for wordpress?oups Clayton, looks great, thanks..
Thank you too Shane, I am gonna have a look too.Forum: Fixing WordPress
In reply to: page awareness with wp_list_categories?ul and li…
Forum: Fixing WordPress
In reply to: page awareness with wp_list_categories?Here is my 95% final code:
<div id="navmenu2"> <?php //wp_list_categories('orderby=name&use_desc_for_title=1&depth=1&hierarchical=1&style=0&hide_empty=0&child_of='.$cat4); $categories= get_categories('orderby=name&use_desc_for_title=1&depth=1&hierarchical=1&style=0&hide_empty=0&child_of='.$cat4); echo '<ul>'; foreach ($categories as $catz) { $option = '<li><a href="./?cat=' . $catz->cat_ID . '">' . $catz->cat_name . '</a></li>'; $option2 = '<li id="tralala"><a href="./?cat=' . $catz->cat_ID . '">' . $catz->cat_name . '</a></li>'; $cat_numb= $catz->cat_ID; //echo $cat_numb; if ( $cat_numb==$catid) { echo $option2; } else { echo $option; } } echo '</ul>';?> </div>
My only remaining problem is that separation between each line is now more important than when I did not use
- and
- …
Forum: Fixing WordPress
In reply to: page awareness with wp_list_categories?works fine!
Here we go:$categories= get_categories('orderby=name&use_desc_for_title=1&depth=1&hierarchical=1&style=0&hide_empty=0&child_of='.$cat4); echo '<ul>'; foreach ($categories as $catz) { $option = '<li><a href="./?cat=' . $catz->cat_ID . '">' . $catz->cat_name . '</a></li>'; echo $option; } echo '</ul>';
Forum: Fixing WordPress
In reply to: page awareness with wp_list_categories?cool!
Thanks a lot myinstinct.Forum: Fixing WordPress
In reply to: page awareness with wp_list_categories?Thanks myinstinct, I tried to manipulate a bit the drop-down menu as shown on the page you gave me but I am not sure it will help me. Still, my drop-down box appears, with the right subcategory names for the different options.
I guess at least the start may be:
$categories= get_categories('orderby=name&use_desc_for_title=1&depth=1&hierarchical=1&style=0&hide_empty=0&child_of='.$cat4); foreach ($categories as $cat_z) {...
I now have to create a simple horizontal menu using ul an li, can you help me a bit more?
Forum: Fixing WordPress
In reply to: page awareness with wp_list_categories?All right, seams to be a possible solution, I do not know the function very well, can you give me an example or a link that explains how to rebuild a menu after using this function?