modelsblog
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: menu-bar not working anymoreThank you so much for your help and patience.
Forum: Fixing WordPress
In reply to: menu-bar not working anymoreOh, that sounds reasonable.
Is there a Blix-theme for 2.1.x or 2.2?
I found this page https://themes.wordpress.net/columns/2-columns/1565/blixed-10/ but can’t figure out whether it is for 2.1.x or not… ??
Thank you so far!Forum: Fixing WordPress
In reply to: how to make menu-option invisibleOk, I found a solution… for those who have the same problem and don’t get help ??
Blix-theme, file header.php
after
elseif ($page_name == “about_short”) {/*ignore*/}
add a line like this
elseif ($page_name == “nameofpage”)It works for me!
Forum: Fixing WordPress
In reply to: how to make menu-option invisibleI know how to add the links to the single pages but I don’t see then on which page I am.
Forum: Fixing WordPress
In reply to: how to make menu-option invisibleWhen I try to remove this code and add normal HTML I get an error on line 61 ??
Forum: Fixing WordPress
In reply to: how to make menu-option invisibleHi. I can’t find that string in the header.php .
Instead I found this:-
<li<?php if (is_home()) echo ” class=\”selected\””; ?>>“>Home
<?php
$pages = BX_get_pages();
if ($pages) {
foreach ($pages as $page) {
$page_id = $page->ID;
$page_title = $page->post_title;
$page_name = $page->post_name;
if ($page_name == “archives”) {
(is_page($page_id) || is_archive() || is_search() || is_single())?$selected = ‘ class=”selected”‘:$selected=”;
echo “<li”.$selected.”>Archives\n”;
}
elseif($page_name == “about”) {
(is_page($page_id))?$selected = ‘ class=”selected”‘:$selected=”;
echo “<li”.$selected.”>About\n”;
}
elseif ($page_name == “contact”) {
(is_page($page_id))?$selected = ‘ class=”selected”‘:$selected=”;
echo “<li”.$selected.”>Contact\n”;
}
elseif ($page_name == “about_short”) {/*ignore*/}
else {
(is_page($page_id))?$selected = ‘ class=”selected”‘:$selected=”;
echo “<li”.$selected.”>$page_title\n”;
}
}
}
?>Thank you so far
Forum: Fixing WordPress
In reply to: atom-feed as atom.xmlYes I heard about that ?? but unfortunately the whole blog stops when I put those in the .htaccess.
I hope someone comes up with a solution for me . I’m ready to open my editor ??Forum: Fixing WordPress
In reply to: atom-feed as atom.xmlThat means there is no way to output an atom.xml with WP? ??
Forum: Fixing WordPress
In reply to: atom-feed as atom.xmlPlease take a look at my problem ??