Forum Replies Created

Viewing 12 replies - 16 through 27 (of 27 total)
  • Thread Starter moray

    (@moray)

    okay ill try again….here is the functions file with the code snippet added on…sorry just paranoid as i thought i did it right the first time:

    <?php
    //* Start the engine
    include_once( get_template_directory() . '/lib/init.php' );
    
    //* Setup Theme
    include_once( get_stylesheet_directory() . '/lib/theme-defaults.php' );
    
    //* Set Localization (do not remove)
    load_child_theme_textdomain( 'magazine', apply_filters( 'child_theme_textdomain', get_stylesheet_directory() . '/languages', 'magazine' ) );
    
    //* Child theme (do not remove)
    define( 'CHILD_THEME_NAME', __( 'Magazine Pro Theme', 'magazine' ) );
    define( 'CHILD_THEME_URL', 'http://my.studiopress.com/themes/magazine/' );
    define( 'CHILD_THEME_VERSION', '3.1' );
    
    //* Enqueue Google Fonts and JS script
    add_action( 'wp_enqueue_scripts', 'magazine_enqueue_scripts' );
    function magazine_enqueue_scripts() {
    
    	wp_enqueue_script( 'magazine-entry-date', get_bloginfo( 'stylesheet_directory' ) . '/js/entry-date.js', array( 'jquery' ), '1.0.0' );
    
    	wp_enqueue_script( 'magazine-responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );
    
    	wp_enqueue_style( 'dashicons' );
    
    	wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Roboto:300,400|Raleway:400,500,900', array(), CHILD_THEME_VERSION );
    
    }
    
    //* Add HTML5 markup structure
    add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' ) );
    
    //* Add viewport meta tag for mobile browsers
    add_theme_support( 'genesis-responsive-viewport' );
    
    //* Add new image sizes
    add_image_size( 'home-middle', 360, 200, true );
    add_image_size( 'home-top', 750, 420, true );
    add_image_size( 'sidebar-thumbnail', 100, 100, true );
    
    //* Add support for additional color styles
    add_theme_support( 'genesis-style-selector', array(
    	'magazine-pro-blue'   => __( 'Magazine Pro Blue', 'magazine' ),
    	'magazine-pro-green'  => __( 'Magazine Pro Green', 'magazine' ),
    	'magazine-pro-orange' => __( 'Magazine Pro Orange', 'magazine' ),
    ) );
    
    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    	'default-text-color'     => '000000',
    	'header-selector'        => '.site-title a',
    	'header-text'            => false,
    	'height'                 => 90,
    	'width'                  => 380,
    ) );
    
    //* Reposition the primary navigation menu
    remove_action( 'genesis_after_header', 'genesis_do_nav' );
    add_action( 'genesis_before_header', 'genesis_do_nav' );
    
    //* Add primary-nav class if primary navigation is used
    add_filter( 'body_class', 'backcountry_no_nav_class' );
    function backcountry_no_nav_class( $classes ) {
    
    	$menu_locations = get_theme_mod( 'nav_menu_locations' );
    
    	if ( ! empty( $menu_locations['primary'] ) ) {
    		$classes[] = 'primary-nav';
    	}
    	return $classes;
    }
    
    //* Customize search form input box text
    add_filter( 'genesis_search_text', 'magazine_search_text' );
    function magazine_search_text( $text ) {
    
    	return esc_attr( __( 'Search the site ...', 'magazine' ) );
    
    }
    
    //* Modify the size of the Gravatar in the author box
    add_filter( 'genesis_author_box_gravatar_size', 'magazine_author_box_gravatar' );
    function magazine_author_box_gravatar( $size ) {
    
    	return 140;
    
    }
    
    //* Modify the size of the Gravatar in the entry comments
    add_filter( 'genesis_comment_list_args', 'magazine_comments_gravatar' );
    function magazine_comments_gravatar( $args ) {
    
    	$args['avatar_size'] = 100;
    	return $args;
    
    }
    
    //* Remove entry meta in entry footer
    add_action( 'genesis_before_entry', 'magazine_remove_entry_meta' );
    function magazine_remove_entry_meta() {
    
    	//* Remove if not single post
    	if ( ! is_single() ) {
    		remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 );
    		remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
    		remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 );
    	}
    
    }
    
    //* Remove comment form allowed tags
    add_filter( 'comment_form_defaults', 'magazine_remove_comment_form_allowed_tags' );
    function magazine_remove_comment_form_allowed_tags( $defaults ) {
    
    	$defaults['comment_notes_after'] = '';
    	return $defaults;
    
    }
    
    //* Add support for 3-column footer widgets
    add_theme_support( 'genesis-footer-widgets', 3 );
    
    //* Add support for after entry widget
    add_theme_support( 'genesis-after-entry-widget-area' );
    
    //* Relocate after entry widget
    remove_action( 'genesis_after_entry', 'genesis_after_entry_widget_area' );
    add_action( 'genesis_entry_footer', 'genesis_after_entry_widget_area' );
    
    //* Register widget areas
    genesis_register_sidebar( array(
    	'id'          => 'home-top',
    	'name'        => __( 'Home - Top', 'magazine' ),
    	'description' => __( 'This is the top section of the homepage.', 'magazine' ),
    ) );
    genesis_register_sidebar( array(
    	'id'          => 'home-middle',
    	'name'        => __( 'Home - Middle', 'magazine' ),
    	'description' => __( 'This is the middle section of the homepage.', 'magazine' ),
    ) );
    genesis_register_sidebar( array(
    	'id'          => 'home-bottom',
    	'name'        => __( 'Home - Bottom', 'magazine' ),
    	'description' => __( 'This is the bottom section of the homepage.', 'magazine' ),
    ) );
    
    //* Add JETPACK TOP POSTS change
    function jeherve_custom_thumb_size( $get_image_options ) {
            $get_image_options['avatar_size'] = 600;
    
            return $get_image_options;
    }
    add_filter( 'jetpack_top_posts_widget_image_options', 'jeherve_custom_thumb_size' );

    [PLEASE use the code buttons when posting code – SEE:
    http://codex.wordpress.org/Forum_Welcome#Posting_Code ]

    Thread Starter moray

    (@moray)

    sorry not quite sure what you mean….heres the code:

    function jeherve_custom_thumb_size( $get_image_options ) {
    $get_image_options[‘avatar_size’] = 600;

    return $get_image_options;
    }
    add_filter( ‘jetpack_top_posts_widget_image_options’, ‘jeherve_custom_thumb_size’ );

    does that go in GENESIS function.php or the CHILD Theme function.php. I originally put it into CHILD THEME function.php and it broke site….and is there a particular place i should put it?
    thanks

    Thread Starter moray

    (@moray)

    thanks i saw that – put the code into my child theme and it broke the site…it said there was a syntax error – i use a genesis framework so should it be going into genesis function.php or theme function.php? or is there any other way around it?

    Thread Starter moray

    (@moray)

    it seems to be working now..although seeing as youre here i also have a TOP POSTS widget in the sidebar and was wondering how i might change the size of the associated image its rather small. See at http://www.mutantspace.com

    Thread Starter moray

    (@moray)

    okay done all that checking. No problem with errors. Now related posts dont come up on the website….im totally bewildered…

    Thread Starter moray

    (@moray)

    thanks illl try it and get back to you but i have already checked this. Since i last posted here i have reinstalled plugin – all seems fine except the related module is not appearing even though its ‘configured’ in dashboard. Its not on website.Everything else is fine i.e. stats, sharing, publicize. etc…

    Thread Starter moray

    (@moray)

    well in the meantime ive bought a genesis framework and installed a child theme. There was nothing in error logs but still a few errors as ive left DEBUG on to check…wp-admin still not working as well as it did…it was all strange as posts i did would disappear, everytime i deactivated a plugin id get a white screen and so on…is the best thing just to replace the wp-admin folder? Ive even replaced the .htaccess file. Ive done everything your advised to i.e. deactivated plugins, gchanging themes, renaming plugin folders….could it just be corrupt…

    Thread Starter moray

    (@moray)

    i know my theme is depriated so im wondering if i get a new updated theme will it sort itself out

    Thread Starter moray

    (@moray)

    4.1.1

    Forum: Fixing WordPress
    In reply to: WSOD on my site
    Thread Starter moray

    (@moray)

    thanks Jose. Problem is i got designers to build site years ago and cant go back to them cause itll cost too much money. So is it simply that current theme has depreciated so much i either have to get update or install a new one?

    Thread Starter moray

    (@moray)

    thanks Jeremy – i just couldnt get it working so removed it.

    i was the same so i deleted it from the site – nothing came up…id love to use it but need it to work – id even buy pro if i knew it was going to work properly

Viewing 12 replies - 16 through 27 (of 27 total)