DigitalBirtles
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] Form not found.I suppose I should mention that I am using the latest version of Form Manager, and the WordPress 3.5.2 with the twenty twelve theme. Any one getting around this?
Forum: Plugins
In reply to: [Form Manager] Form not found.I second that request! I have just installed the form manager and this function was the reason I installed it. Sadly, like Tommyboy, I get the (form ‘form-1’ not found) error.
Would be great to have a fix for this, or an explanation.
Forum: Fixing WordPress
In reply to: about the mandatory home tab…This is for the dfblog theme by the way.. here
Forum: Fixing WordPress
In reply to: Adding menu buttons, and re-arranging them.Thanks, im sorry i didn’t honor your reply before now. I really appreciate the help! I figured that i could re-order the pages in the menu-bar by editing the order number from my “edit post.” And i found a plug inn called “page links to” that automatically forwards pages to custom-url..
works fine for me! so now “welcome” is first in line, i set “client based projects” as my posts page, and i have the photoblog linking to digitalbirtles.com/Photoblog, where the exact same installation of wordpress has been installed. only here the photoblog is the welcome page, and all the other tabs on the menu link back to digitalbirtles.com’s pages ?? Sweet! And dont worry, your eyesight is probably ok! There is no title/tagline for this theme! And i love it!Again, thanks for the help!
BirtlesForum: Fixing WordPress
In reply to: Adding menu buttons, and re-arranging them.ok, after a lot of testing i found that removing this removed the button..
bloginfo(‘home’);
$home = ob_get_clean();
echo ‘
# <a’ . (is_page() ? ” : ‘ class=”active”‘) . ‘ href=”‘ . $home . ‘”><span><span>home</span></span>
‘;so it is weird that when i removed it all, the button was still there.
anywho, im still stuck with this question:
I have 1 other wordpress installation on the server called “photoblog”, and i was thinking that by clicking “photoblog” on https://www.digitalbirtles.com it would take me to https://www.digitalbirtles.com/photoblog where the same layout and theme is applied to the wp-installation. There I would set the post-page to “photoblog”
But how can i use the “photoblog” link in digitalbirtles.com to take me to digitalbirtles.com/photoblog? is that a .php hack? or something i can do from wordpress?
Forum: Fixing WordPress
In reply to: Adding menu buttons, and re-arranging them.Uppdate:
only place in any script where i found the word “home” was here ( see beneath.) The weird thing is that when i removed the entire section and saved, the website still had the home button.. and as i said, this is the only place where “home” is found in any of the scripts…
function art_menu_items($hierarchy)
{
ob_start();
bloginfo(‘home’);
$home = ob_get_clean();
echo ‘- <a’ . (is_page() ? ” : ‘ class=”active”‘) . ‘ href=”‘ . $home . ‘”><span><span>home</span></span>
‘;
if (!$hierarchy) add_action(‘get_pages’, ‘art_header_page_list_filter’);
add_action(‘wp_list_pages’, ‘art_list_pages_filter’);
wp_list_pages(‘title_li=’);
remove_action(‘wp_list_pages’, ‘art_list_pages_filter’);
if (!$hierarchy) remove_action(‘get_pages’, ‘art_header_page_list_filter’);
}Forum: Fixing WordPress
In reply to: Adding menu buttons, and re-arranging them.Hi! thanks for the most excellent reply!
I added “Photoblog” and “Client based Projects” to my header,
and changed the front page to the “welcome” page.
I also changed my post-page to “Client based projects.”My issue now is that i dont want a “Home” button, whenever i press that, it takes me back to the welcome page anyway. Is this home-button something i can remove from the header? And i would really like to change the order of the buttons. (But this is just nit-picking)
I have 1 other wordpress installation on the server called “photoblog”, and i was thinking that by clicking “photoblog” on https://www.digitalbirtles.com it would take me to https://www.digitalbirtles.com/photoblog where the same layout and theme is applied to the wp-installation. There I would set the post-page to “photoblog”
But how can i use the “photoblog” link in digitalbirtles.com to take me to digitalbirtles.com/photoblog? is that a .php hack? or something i can do from wordpress?