Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter javildesign

    (@javildesign)

    I did what you told.

    Eventually, I decided to disable the in-over-your-archives plugin.

    But, I really want to have thumnails in my blog!! But how?? I’m searching for this for days now, and I’m getting stucker by the minute!

    I have tried this: [added in my functions.php]

    // Enable Post Thumbnail Images
    
    //* Thumbnails on category, archive and search pages *//
    function my_post_title($title) {
    	if (is_category()) {
    		return get_the_post_thumbnail(NULL, 'thumbnail') . $title;
    	} elseif (is_archive()) {
    		return get_the_post_thumbnail(NULL, 'thumbnail') . $title;
    	} elseif (is_search()) {
    		return get_the_post_thumbnail(NULL, 'thumbnail') . $title;
    	}
    	else {
    		return $title;
    	}
    
    }

    But it does not work for my theme..

    Still want to help me to get me thumbnails in my blog?
    Thanks!

    ps: why is this not already default??

    Thread Starter javildesign

    (@javildesign)

    About the jQuery library, it is in the functions.php:

    if ( !is_admin() ) { // instruction to only load if it is not the admin area
       // enqueue the script
    
    	wp_enqueue_script('p2h_jquey',
    	get_bloginfo('template_directory') . '/includes/js/jquery-1.3.2.min.js' );
    
    	wp_enqueue_script('p2h_cufon',
    	get_bloginfo('template_directory') . '/includes/js/cufon-yui.js', '1.0' );
    
    	wp_enqueue_script('p2h_cufons',
    	get_bloginfo('template_directory') . '/includes/js/cufon-customizations.js', '1.0' );
    
    	wp_enqueue_script('p2h_cycle',
    	get_bloginfo('template_directory') . '/includes/js/jquery.cycle.all.min.js' );
    
    	wp_enqueue_script('p2h_jquery-ui',
    	get_bloginfo('template_directory') . '/includes/js/jquery-ui-1.7.2.custom.min.js' );
    
    	wp_enqueue_script('p2h_superfish',
    	get_bloginfo('template_directory') . '/includes/js/superfish.js', '1.0' );
    
    	wp_enqueue_script('p2h_vegur',
    	get_bloginfo('template_directory') . '/includes/js/Vegur.font.js', '1.0' );
    
    	wp_enqueue_script('p2h_gnuolane',
    	get_bloginfo('template_directory') . '/includes/js/Gnuolane.font.js', '1.0' );
    
    	wp_enqueue_script('p2h_superfishs',
    	get_bloginfo('template_directory') . '/includes/js/superfishs.js', '1.0' );
    }

    About the Uncaught Exception error, how can I check this error? You discovered it, how do you see this error and where do you see it?

    Thread Starter javildesign

    (@javildesign)

    Thank you.

    First I need to update the included version.

    I deactivated the ‘in-over-your-archives’ plugin, so my Fancybox will don’t have issues anymore. But now I don’t have thumbnails anymore, on the archived posts.. I was searching for a plugin or other solution, but I can’t find a proper solution..
    Do I need to search for a solution in the nextgen options?

    Locked out? It happend to me yesterday.. and this helped!

    Thread Starter javildesign

    (@javildesign)

    Thanks for the tip!

    Thread Starter javildesign

    (@javildesign)

    In this theme [jenny] I managed to create a menu and add categories to them. So I create -> Tutorials <- category and then I go to menu and add a new menu item for the category list. That is working great.

    But.. When I press TUTORIALS it goes to all the post that are categorised in TUTORIALS, but I had to delete the message “Archive for…” I dont want that. So I deleted that in the archive.php. But the bigger problem is that the images I used in the teaser don’t show up. There is no image at all..

    Am I doing stuff right or am I doing it all the wrong way?

Viewing 6 replies - 1 through 6 (of 6 total)