26

Re: Classical Gamer 1.0.3-RC2 Update

Ensure that the folder permissions for Classical Gamer is set to 755 or it will not display in the themes selection page.

Re: Classical Gamer 1.0.3-RC2 Update

zy wrote:

Ensure that the folder permissions for Classical Gamer is set to 755 or it will not display in the themes selection page.

I still can't get the background to display.  I have changed permissions from 705 to 755 on both the arras folder and arras-classical-gamer folder along with all files and folders within.

Check out my movie website built using Arras: http://AfterCredits.com

28

Re: Classical Gamer 1.0.3-RC2 Update

I'm having issues with Classical Gamer not showing a custom background either since the update. Permissions in the folder are set correctly.

Thumbs up

Re: Classical Gamer 1.0.3-RC2 Update

Hi ,

Still can't change the Background to a custom image.
It's very important for my website. because i've communicated our give-away competitions through them.

I've changed the code and the permissions where correct, and it still doesn't work.
sad

Thumbs up

Re: Classical Gamer 1.0.3-RC2 Update

Malkavian wrote:

Hi ,

Still can't change the Background to a custom image.
It's very important for my website. because i've communicated our give-away competitions through them.

I've changed the code and the permissions where correct, and it still doesn't work.
sad

I'm starting to think those of us who actually PAID for this theme are being left high and dry here.  You would think that we would have higher priority to get our issues resolved, but it's clear that this is NOT the case.

Check out my movie website built using Arras: http://AfterCredits.com

31

Re: Classical Gamer 1.0.3-RC2 Update

Fix for custom background image not working:

Go to arras-classical-gamer/functions.php, comment the following lines (add // before the start of the line) so it will look like this:

//remove_action('arras_custom_styles', 'arras_add_custom_background');
//add_action('arras_custom_styles', 'cg_add_custom_background');

Re: Classical Gamer 1.0.3-RC2 Update

zy wrote:

Fix for custom background image not working:

Go to arras-classical-gamer/functions.php, comment the following lines (add // before the start of the line) so it will look like this:

//remove_action('arras_custom_styles', 'arras_add_custom_background');
//add_action('arras_custom_styles', 'cg_add_custom_background');

It works, Thanks

Last edited by Malkavian (2012-01-04 14:05:36)

Thumbs up

Re: Classical Gamer 1.0.3-RC2 Update

zy wrote:

Fix for custom background image not working:

Go to arras-classical-gamer/functions.php, comment the following lines (add // before the start of the line) so it will look like this:

//remove_action('arras_custom_styles', 'arras_add_custom_background');
//add_action('arras_custom_styles', 'cg_add_custom_background');

Yep, that fixed it for me too.  Thanks!

Check out my movie website built using Arras: http://AfterCredits.com

Re: Classical Gamer 1.0.3-RC2 Update

Hello,

I bought classical Gamer yesterday but I can't switch to white style. Is there a fix ?

Thumbs up

35

Re: Classical Gamer 1.0.3-RC2 Update

Vinalys wrote:

Hello,

I bought classical Gamer yesterday but I can't switch to white style. Is there a fix ?

http://www.arrastheme.com/forums/post31881.html#p31881

Re: Classical Gamer 1.0.3-RC2 Update

Malkavian wrote:
zy wrote:

Fix for custom background image not working:

Go to arras-classical-gamer/functions.php, comment the following lines (add // before the start of the line) so it will look like this:

//remove_action('arras_custom_styles', 'arras_add_custom_background');
//add_action('arras_custom_styles', 'cg_add_custom_background');

It works, Thanks

Hello friends I'm new and I have much enthusiasm for improving my web www.panamio.com but I have a problem, the background does not work, I have read these instructions do not understand, forgive my ignorance not know about much, I'm a graphic designer from the old school, and I'm moving into these new things, appreciate your help. You can see how little I Avanse looking for google, forum and youtube xD

I liked these pages and see that they have worked hard, they are my inspiration and more.
http://greyfox.me/ http://www.brainfreeze.be/

I am using WordPress 3.3.1. / Arras 1.5.2-RC2
Here is my functions.php

<?php

define ( 'ARRAS_CHILD', is_child_theme() );
define ( 'ARRAS_VERSION' , '1.5.2' );
define ( 'ARRAS_LIB', TEMPLATEPATH . '/library' );

do_action('arras_init');

/**
* Theme setup function - to be run during 'after_setup_theme' action hook.
* @since 1.6
*/
add_action( 'after_setup_theme', 'arras_setup' );

if ( !function_exists('arras_setup') ) :

function arras_setup() {
    /* Load theme options (to be revamped) */
    require_once ARRAS_LIB . '/admin/options.php';
    require_once ARRAS_LIB . '/admin/templates/functions.php';
    arras_flush_options();
   
    /* Load theme library files */
    require_once ARRAS_LIB . '/actions.php';
    require_once ARRAS_LIB . '/deprecated.php';
    require_once ARRAS_LIB . '/filters.php';
    require_once ARRAS_LIB . '/tapestries.php';
    require_once ARRAS_LIB . '/template.php';
    require_once ARRAS_LIB . '/thumbnails.php';
    require_once ARRAS_LIB . '/styles.php';
    require_once ARRAS_LIB . '/slideshow.php';
    require_once ARRAS_LIB . '/widgets.php';
   
    if ( is_admin() ) {
        require_once ARRAS_LIB . '/admin/admin.php';
    }
   
    require_once ARRAS_LIB . '/admin/background.php';
   
    /* Post meta fields */
    define( 'ARRAS_REVIEW_SCORE', 'score' );
    define( 'ARRAS_REVIEW_PROS', 'pros' );
    define( 'ARRAS_REVIEW_CONS', 'cons' );
   
    define( 'ARRAS_CUSTOM_FIELDS', false );
   
    /* Langauge support */
    load_theme_textdomain( 'arras', TEMPLATEPATH . '/language' );
   
    $locale = get_locale();
    $locale_file = TEMPLATEPATH . "/languages/$locale.php";
    if ( is_readable( $locale_file ) )
        require_once( $locale_file );
   
    /* Theme support */
    add_theme_support('post-thumbnails');
    add_theme_support('nav-menus');
    add_theme_support('automatic-feed-links');
   
    /* Menus locations */
    register_nav_menus(array(
        'main-menu'    => __('Main Menu', 'arras'),
        'top-menu'    => __('Top Menu', 'arras')
    ));
   
    /* Thumbnail sizes */
    arras_add_default_thumbnails();
   
    /* Register sidebars */
    arras_add_sidebars();
   
    /* Custom layouts & styles */
    if ( !defined('ARRAS_INHERIT_STYLES') || ARRAS_INHERIT_STYLES == true ) {
        add_action( 'arras_custom_styles', 'arras_layout_styles' );
    }
   
    if ( !defined('ARRAS_INHERIT_LAYOUT') || ARRAS_INHERIT_LAYOUT == true ) {
        // Alternate Styles & Layouts
        register_alternate_layout( '1c-fixed', __('1 Column Layout (No Sidebars)', 'arras') );
        register_alternate_layout( '2c-r-fixed', __('2 Column Layout (Right Sidebar)', 'arras') );
        register_alternate_layout( '2c-l-fixed', __('2 Column Layout (Left Sidebar)', 'arras') );
        register_alternate_layout( '3c-fixed', __('3 Column Layout (Left & Right Sidebars)', 'arras') );
        register_alternate_layout( '3c-r-fixed', __('3 Column Layout (Right Sidebars)', 'arras') );
       
        register_style_dir( TEMPLATEPATH . '/css/styles/' );
    }
   
    /* Header actions */
    remove_action( 'wp_head', 'pagenavi_css' );
   
    add_action( 'arras_head', 'arras_override_styles' );
    add_action( 'arras_custom_styles', 'arras_add_custom_logo' );
    add_action( 'arras_custom_styles', 'arras_constrain_footer_sidebars' );
   
    add_action( 'arras_beside_nav', 'arras_social_nav' );
   
    add_action( 'wp_head', 'arras_load_styles', 1 );
    add_action( 'wp_head', 'arras_head' );
   
    add_action( 'wp_head', 'arras_add_facebook_share_meta' );
   
    add_action( 'wp_head', 'arras_add_header_js' );
    add_action( 'wp_footer', 'arras_add_footer_js' );
   
    /* Filters */
    add_filter( 'arras_postheader', 'arras_post_taxonomies' );
    add_filter( 'gallery_style', 'remove_gallery_css' );
   
    if ( defined('ARRAS_CUSTOM_FIELDS') && ARRAS_CUSTOM_FIELDS == true ) {
        add_filter( 'arras_postheader', 'arras_postmeta' );
    }
   
    /* Admin actions */
    if (is_admin()) {
        add_action( 'admin_menu', 'arras_addmenu' );
    }
   
    /* Max image size */
    $max_image_size = arras_get_single_thumbs_size();
    $content_width = $max_image_size[0];
   
    /* For child themes overrides */
    do_action( 'arras_setup' );
   
    // print_r($arras_options);
}

endif;

/**
* Sidebar setup function.
* @since 1.6
*/
function arras_add_sidebars() {
   
    /* Default sidebars */
    register_sidebar( array(
        'name' => 'Primary Sidebar',
        'before_widget' => '<li id="%1$s" class="widgetcontainer clearfix">',
        'after_widget' => '</li>',
        'before_title' => '<h5 class="widgettitle">',
        'after_title' => '</h5>'
    ) );
    register_sidebar( array(
        'name' => 'Secondary Sidebar #1',
        'before_widget' => '<li id="%1$s" class="widgetcontainer clearfix">',
        'after_widget' => '</li>',
        'before_title' => '<h5 class="widgettitle">',
        'after_title' => '</h5>'
    ) );
    register_sidebar( array(
        'name' => 'Bottom Content #1',
        'before_widget' => '<li id="%1$s" class="widgetcontainer clearfix">',
        'after_widget' => '</li>',
        'before_title' => '<h5 class="widgettitle">',
        'after_title' => '</h5>'
    ) );
    register_sidebar( array(
        'name' => 'Bottom Content #2',
        'before_widget' => '<li id="%1$s" class="widgetcontainer clearfix">',
        'after_widget' => '</li>',
        'before_title' => '<h5 class="widgettitle">',
        'after_title' => '</h5>'
    ) );
   
    /* Footer sidebars (Up to 4 sidebars based on user preference) */
    $footer_sidebars = arras_get_option('footer_sidebars');
    if ($footer_sidebars == '') $footer_sidebars = 1;
   
    for( $i = 1; $i < $footer_sidebars + 1; $i++ ) {
        register_sidebar( array(
            'name' => 'Footer Sidebar #' . $i,
            'before_widget' => '<li id="%1$s" class="widgetcontainer clearfix">',
            'after_widget' => '</li>',
            'before_title' => '<h5 class="widgettitle">',
            'after_title' => '</h5>'
        ) );
    }
           
}

/* End of file functions.php */
/* Location: ./functions.php */

Thumbs up

37

Re: Classical Gamer 1.0.3-RC2 Update

@TITANFIRE: Drop me an email and I will send you a patched file for it.

Re: Classical Gamer 1.0.3-RC2 Update

ho please roll , excuse me, I checked my wp from head to toe and have noticed that the version of my theme is Arras 1.5.2-RC1   sad . I already do my backups "especially the styles" to upgrade, then tell them how I was. Thanks and sorry.

I hope to fix that fund, but would be as great, if it were in 3 parts, head, left and right, it would be cool, xD. So new and asking both lol.

Thumbs up

Re: Classical Gamer 1.0.3-RC2 Update

Hello,

I have one question. I am using two different version of classical gamer on two different website. I'am using 0.9.3 with arras 1.5.0.1 on my first website and 1.0.3-RC2 with arras 1.5.2-RC2 on my second website.

On the second website I have a space between entry-info and quick-read-post. I don't have this space on my first website and want to remove it on my second one. How can I do that ?

I've uploaded an image to see more clearly the problem. First image and text is my first website and second image and text is my second one.

http://data.imagup.com/10/1141590722.jpg

Thumbs up

Re: Classical Gamer 1.0.3-RC2 Update

Hi,
I am having some problems with the customs colour / image background,I have edited the funtions.php file but it still doesn't work.
Any help would be great.
Cheers
http://freshpaint.org

Last edited by 漆 FRESH PAINT (2012-04-06 02:28:12)

Re: Classical Gamer 1.0.3-RC2 Update

zy wrote:

@TITANFIRE: Drop me an email and I will send you a patched file for it.

Would it be possible to make that patched file available for everyone who bought the theme?

Re: Classical Gamer 1.0.3-RC2 Update

漆 FRESH PAINT wrote:
zy wrote:

@TITANFIRE: Drop me an email and I will send you a patched file for it.

Would it be possible to make that patched file available for everyone who bought the theme?

Thanks for sending the files, theme works great smile)

Re: Classical Gamer 1.0.3-RC2 Update

zy wrote:

@Wall, you should have an email with the download link. If you have not received it, drop me an email smile

I did not receive up-date how do I get one?

-De

Thumbs up

Re: Classical Gamer 1.0.3-RC2 Update

I put it up recently newest Classical Gamer, but even it did not solve that problem, that if I link it the facebook my web page does not display the small pictures then. The entries these small pictures appear rarely. Please let somebody help because in the live demo this worked well.

Thumbs up