Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter akagitano

    (@akagitano)

    Thanks to junior466 the problem is resolved!

    I don’t understand how to show the three columns footer widget on the frontpage template.

    It’s possible to change the widget order in widget area, rewriting all the widget area code in the child theme functions.php in the order that you want to show.

    function child_widgets_init() {
     	register_sidebar( array(
     		'name' => __( 'Main Sidebar', 'twentytwelve' ),
     		'id' => 'sidebar-1',
     		'description' => __( 'Appears on posts and pages except the optional Front Page template, which has its own widgets', 'twentytwelve' ),
     		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
     		'after_widget' => '</aside>',
     		'before_title' => '<h3 class="widget-title">',
     		'after_title' => '</h3>',
     	) );
    
     	register_sidebar( array(
     		'name' => __( 'First Front Page Widget Area', 'twentytwelve' ),
     		'id' => 'sidebar-2',
     		'description' => __( 'Appears when using the optional Front Page template with a page set as Static Front Page', 'twentytwelve' ),
     		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
     		'after_widget' => '</aside>',
     		'before_title' => '<h3 class="widget-title">',
     		'after_title' => '</h3>',
     	) );
    
     	register_sidebar( array(
     		'name' => __( 'Second Front Page Widget Area', 'twentytwelve' ),
     		'id' => 'sidebar-3',
     		'description' => __( 'Appears when using the optional Front Page template with a page set as Static Front Page', 'twentytwelve' ),
     		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
     		'after_widget' => '</aside>',
     		'before_title' => '<h3 class="widget-title">',
     		'after_title' => '</h3>',
     	) );
    
     // Register footer widgets
    
     register_sidebar( array(
     	'name' => __( 'Footer Widget One', 'tto' ),
     	'id' => 'sidebar-4',
     	'description' => __( 'Found at the bottom of every page (except 404s, optional homepage and full width) as the footer. Left Side.', 'tto' ),
     	'before_widget' => '<aside id="%1$s" class="widget %2$s">',
     	'after_widget' => '</aside>',
     	'before_title' => '<h3 class="widget-title">',
     	'after_title' => '</h3>',
     ) );
    
     register_sidebar( array(
     	'name' => __( 'Footer Widget Two', 'tto' ),
     	'id' => 'sidebar-5',
     	'description' => __( 'Found at the bottom of every page (except 404s, optional homepage and full width) as the footer. Center.', 'tto' ),
     	'before_widget' => '<aside id="%1$s" class="widget %2$s">',
     	'after_widget' => "</aside>",
     	'before_title' => '<h3 class="widget-title">',
     	'after_title' => '</h3>',
     ) );
    
     register_sidebar( array(
     	'name' => __( 'Footer Widget Three', 'tto' ),
     	'id' => 'sidebar-6',
     	'description' => __( 'Found at the bottom of every page (except 404s, optional homepage and full width) as the footer. Right Side.', 'tto' ),
     	'before_widget' => '<aside id="%1$s" class="widget %2$s">',
     	'after_widget' => "</aside>",
     	'before_title' => '<h3 class="widget-title">',
     	'after_title' => '</h3>',
     ) );
    
    	}
    	add_action( 'widgets_init', 'child_widgets_init' );

    fabihun hava you find a solution i need to pass some cf7 field values to the redirect page.

    After modify wp-contactform.php the images upload restart working.
    Thanks
    SergeyBiryukov

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