Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • Forum: Fixing WordPress
    In reply to: Video in post
    Thread Starter Stef

    (@stef78)

    Thanks for the reply. I’ll check it out

    Thread Starter Stef

    (@stef78)

    thank you.
    Do you need some login information if you’re going to take a look?

    Thread Starter Stef

    (@stef78)

    hey 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?

    Thread Starter Stef

    (@stef78)

    This 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">
    Thread Starter Stef

    (@stef78)

    Josh, you’re help is much appreciated.
    that did work!

    Thanks a lot!

    Thread Starter Stef

    (@stef78)

    @josh

    thanks 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,
    Stef

    Forum: Fixing WordPress
    In reply to: Domain issue
    Thread Starter Stef

    (@stef78)

    anybody?

    Thread Starter Stef

    (@stef78)

    I would gladly give you some ftp access if that would help.
    thank you.

    Thread Starter Stef

    (@stef78)

    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.

    Thread Starter Stef

    (@stef78)

    anybody?

    Thread Starter Stef

    (@stef78)

    a small bump.
    I’m quite stuck with this. Hope somebody can help me.
    thanks.

    Thread Starter Stef

    (@stef78)

    @samboll Do you think the issue can be solved with this? Or do you need anything else?
    Thanks!

    Thread Starter Stef

    (@stef78)

    thanks!

    <?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() ) { ?> &raquo; 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 -->
    Thread Starter Stef

    (@stef78)

    Nobody?
    If you guys need a better explanation let me know..
    thanks

    Forum: Plugins
    In reply to: Event plugin
    Thread Starter Stef

    (@stef78)

Viewing 15 replies - 1 through 15 (of 18 total)