agileArt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: custom menu are not displayingnever mind. fixed it used
<?php include (TEMPLATEPATH . ‘/engineering.php’); ?>
instead.Forum: Themes and Templates
In reply to: problem adding images to custom page.thank you WPyogi.
Anychance of a link or just google “WordPress generally uses absolute file paths”?
is there a tag?Forum: Themes and Templates
In reply to: add a custom home page to wp nav menuThink i may have resolved it.
create a home.php, set it as a sub template e.g.<?php /* Template Name: home Template */ ?>go do the admin panel and add the home page by adding a new page and then chose the new template.
Is there a better solution?
Forum: Themes and Templates
In reply to: subtemplate not recongnized’ho! you are so right esmi! was so focused on the css I forgot about the .php!
ouch.
Thank you!Forum: Fixing WordPress
In reply to: does wp have a feature to notify admin if it goes down?is this something that may be available through whoever does the hosting?
DForum: Fixing WordPress
In reply to: created theme not working once uploaded.d’ho…got it thank you. was looking at the code but it was the extra space outside of the end ?>
Thank you much!
now to fix the rest of that thing.Forum: Fixing WordPress
In reply to: created theme not working once uploaded.thought i had but let me go check again.
Forum: Fixing WordPress
In reply to: created theme not working once uploaded.nope I like warnings…
this the code in my functions. quite short// Add RSS links to <head> section automatic_feed_links(); // Load jQuery if ( !is_admin() ) { wp_deregister_script('jquery'); wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"), false); wp_enqueue_script('jquery'); } // Clean up the <head> function removeHeadLinks() { remove_action('wp_head', 'rsd_link'); remove_action('wp_head', 'wlwmanifest_link'); } add_action('init', 'removeHeadLinks'); remove_action('wp_head', 'wp_generator'); // Declare sidebar widget zone if ( function_exists('register_sidebars') ) register_sidebars(2); if ( function_exists('register_nav_menus') ){ register_nav_menus( array( 'mainNav' => 'MainNavMenu', 'secNav' => 'SecNavMenu', ) );}[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
just checked for spaces. don’t see any glaring issues w/it.
Forum: Fixing WordPress
In reply to: created theme not working once uploaded.Thank you esmi, will do.
why is it that it worked fine on my laptop but not live?
dForum: Everything else WordPress
In reply to: Can the admin restrict other contributors to a site?Thank you for the advice Esmi,will pass it along.
dForum: Everything else WordPress
In reply to: Can the admin restrict other contributors to a site?my impression is that plugins were not felt to be secure. Or at least not all and were concerned about picking a bad one.
Forum: Everything else WordPress
In reply to: Can the admin restrict other contributors to a site?Thank you Esmi was actaully told to avoid plugin as a solution.
Forum: Fixing WordPress
In reply to: drop down menu on custom page displays all links. Doesn't dropK kept tinkering and managed to fix it.
.menu li li{
float:none;
display: none;
}.menu li:hover ul li{
display: block;
}I just ignore the sub menu by it’s class name and just addressed the ul/li as sub components. So far so good!.
thank you for your advice!
Next I need to link the menu links to categories! please drop me a line if you have a link or advice for that!Forum: Fixing WordPress
In reply to: drop down menu on custom page displays all links. Doesn't dropI’ll go take a look never used/heard of paste bin before.
Forum: Fixing WordPress
In reply to: drop down menu on custom page displays all links. Doesn't dropno sorry. actually using a sandbox. Is there some other info I could provide?