Stef
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Video in postThanks for the reply. I’ll check it out
Forum: Plugins
In reply to: HeadSpace 2 not changing the titlesthank you.
Do you need some login information if you’re going to take a look?Forum: Plugins
In reply to: HeadSpace 2 not changing the titleshey Josh,
It looks that I’m not quite there yet.
It only got changed on the front page. But not on the post pages.
Also the Music Video category page is also picking up the changes.. but the rest of the categories not.
http://motiongraphics.nu/category/music-video/Pretty weird huh?
I’m not quite sure what to filter in functions.php.
If possible, would you mind take a look at the code?Forum: Plugins
In reply to: HeadSpace 2 not changing the titlesThis was the code.. but the <title> wasn’t even being called.
I just added the tag. thanks!<?php thematic_create_doctype(); echo " "; language_attributes(); echo ">\n";?> <head profile="http://gmpg.org/xfn/11"> <?php thematic_doctitle(); thematic_create_contenttype(); thematic_show_description(); thematic_show_robots(); thematic_canonical_url(); thematic_create_stylesheet(); thematic_show_rss(); thematic_show_commentsrss(); thematic_show_pingback(); thematic_show_commentreply(); wp_head(); ?> <!--[if IE 6]> <style type="text/css"> .wp-admin-bar { position: absolute; top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop : document.body.scrollTop); } #ie6_wrapper_crap { position: absolute; top: 0px; filter: alpha(opacity=90); } #site-wrapper{ width: 1000px; } div#content { float: left; width: 640px; } #sidebar { width: 300px; overflow: hidden; } #content .padder { width: 640px; overflow-x: hidden; } .item-avatar { width: 25px; } .widget_bp_core_recently_active_widget .item-avatar { display: inline; } </style> <![endif]--> </head> <body class="<?php thematic_body_class() ?>"> <?php thematic_before(); ?> <div id="wrapper" class="hfeed"> <?php thematic_aboveheader(); ?> <div id="header"> <?php thematic_header() ?> </div><!-- #header--> <?php thematic_belowheader(); ?> <div id="main"> <link rel="shortcut icon" href="favicon.ico">Forum: Plugins
In reply to: HeadSpace 2 not changing the titlesJosh, you’re help is much appreciated.
that did work!Thanks a lot!
Forum: Plugins
In reply to: HeadSpace 2 not changing the titlesthanks a lot for your reply.
But it didn’t work.My theme is calling wp_head(); and I’ve added
define('WP_MEMORY_LIMIT', '32M');to wp-config.php.
Was that correct?Is there anything else what could do the trick?
Regards,
StefForum: Fixing WordPress
In reply to: Domain issueanybody?
Forum: Plugins
In reply to: Create a simple joblist {Job Manager}I would gladly give you some ftp access if that would help.
thank you.Forum: Plugins
In reply to: Create a simple joblist {Job Manager}Thank you.
But for some reason it isn’t working.
The page where I’d like to have the jobboard is just displaying the jobs as it was. http://treasury.we2you.com/carriere
And I made a test page, which isn’t working too.
http://treasury.we2you.com/test-5
I guess I’m missing something. But I have no idea what’s wrong here.Do you have any ideas?
thanks.Forum: Fixing WordPress
In reply to: Adding categories to the main menuanybody?
Forum: Fixing WordPress
In reply to: Adding categories to the main menua small bump.
I’m quite stuck with this. Hope somebody can help me.
thanks.Forum: Fixing WordPress
In reply to: Adding categories to the main menu@samboll Do you think the issue can be solved with this? Or do you need anything else?
Thanks!Forum: Fixing WordPress
In reply to: Adding categories to the main menuthanks!
<?php /** * @package VideoFlick */ ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <meta name="description" content="<?php the_excerpt_rss(); ?>" /> <?php endwhile; endif; elseif(is_home()) : ?> <meta name="description" content="<?php bloginfo('description'); ?>" /> <?php endif; ?> <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style<?php echo get_option('videoflick_site_style')=='light' ? '-light' : ''; ?>.css" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <link rel="shortcut icon" href="<?php bloginfo('template_url'); ?>/images/favicon.ico" type="image/x-icon" /> <script src="<?php bloginfo('template_url'); ?>/scripts/jquery.min.js" type="text/javascript"></script> <script src="<?php bloginfo('template_url'); ?>/scripts/jquery.fade.js" type="text/javascript"></script> <script src="<?php bloginfo('template_url'); ?>/scripts/jquery.superfish.js" type="text/javascript"></script> <script src="<?php bloginfo('template_url'); ?>/scripts/jquery.hoverintent.js" type="text/javascript"></script> <script type="text/javascript"> jQuery(function(){ jQuery('ul.sf-menu').superfish(); }); </script> <?php wp_head(); ?> </head> <body> <div id="wrapper"> <div id="headwrap"> <div id="tagline"> <p><?php echo '' . get_bloginfo ('description'); ?></p> </div> <div id="menu"> <ul class="sf-menu"> <!--<li <?php if (is_home()) { echo 'class="current_page_item"'; } ?>><a href="<?php echo get_option('home'); ?>/" title="Home">Home</a></li>--> <li><a href="#" title="Categories">Portfolio</a> <ul> <?php wp_list_categories('title_li='); ?> </ul> </li> <?php wp_list_pages('title_li='); ?> <li><a href="<?php bloginfo('rss2_url'); ?>" title="Subscribe">RSS</a></li> <?php wp_register('<li>','</li>'); ?> </ul> </div> <!-- menu --> <?php if ( !get_option('videoflick_logo_txt') ) : ?> <!-- if standard logo --> <div id="logo"> <a href="<?php echo get_option('home'); ?>/" title="Home" ><img src="<?php echo ($custom_logo = get_option('videoflick_logo_img'))!='' ? $custom_logo : get_bloginfo('template_url') . "/images/logo.png"; ?>" alt="<?php bloginfo('name'); ?>" /></a> </div> <?php else : ?> <!-- if text logo --> <div id="textlogo"> <h1><a href="<?php echo get_option('home'); ?>/" title="Home" ><?php bloginfo('name'); ?></a></h1> </div> <?php endif; ?> <?php if ( ($header_ad = get_option('videoflick_header_ad')) != "" ) : ?> <div id="topad"> <?php echo $header_ad; ?> </div> <?php endif; ?> </div> <!-- headwrap -->Forum: Fixing WordPress
In reply to: Adding categories to the main menuNobody?
If you guys need a better explanation let me know..
thanksForum: Plugins
In reply to: Event pluginI think I found it.
http://wordpress.org/extend/plugins/event-registration/