Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #548536

    #1: Portfolio photo alignment, images clipped at the top, excess space at the bottom:

    http://cdfone.com/?page_id=4256

    #2: 3.4.5 update, created portfolios lose category setting on edits
    #3: No category selection possible in 3.4.5 portfolios: http://outsourcingideas.com/uploads/Portfolio_category_bug.png

    New ticket request: https://kriesi.at/support/topic/portfolio-categories-dont-appear-in-the-setup-field/#post-548525

    #548543

    Hey freelancemom!

    Thanks a lot for reaching us out.
    I tried it and it is actually happening yes.
    I have reported the issues and an update will com, fixing those.

    Thanks a lot for letting us know, we appreciate your help.
    I will also check your new ticket.

    Cheers!
    Basilis

    #549238

    Do you have a link to 3.4.6?

    I have tried via http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Kriesi but there is no change.

    #549322

    Hi!

    Version 3.4.6 should be now available on ThemeForest. Please check it once again :)

    Best regards,
    Yigit

    #549951

    I have uploaded 3.4.6 again but no change/fix:

    1. Portfolio settings still no category selection possible
    2. Edit to grid layout changes category selection
    3. Portfolio images still clipped in the top, with extra space at the bottom
    4. After uploading new enfold folder (version text confirms I downloaded 3.4.6), theme shows as 3.4.5 in the child theme update screen

    Please help
    login credentials previously provided in this thread

    #549953

    I also logged in from another browser (Chrome) that I NEVER use for WordPress, and have the same problems, so it appears to have nothing to do with caching.

    #549958

    Here is the functions.php file in my child folder:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    
    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    	return "debug";
    }
    
    /** Added for pageslider code changes 
    */
    
    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }
    
    /**
    		 * Popup Elements
    		 *
    		 * If this function is defined in a child class the element automatically gets an edit button, that, when pressed
    		 * opens a modal window that allows to edit the element properties
    		 *
    		 * @return void
    		 */
    		function popup_elements()
    		{
    			$this->elements = array(
    
    				array(
    						"name" 	=> __("Which Entries?", 'avia_framework' ),
    						"desc" 	=> __("Select which entries should be displayed by selecting a taxonomy", 'avia_framework' ),
    						"id" 	=> "link",
    						"fetchTMPL"	=> true,
    						"type" 	=> "linkpicker",
    						"subtype"  => array( __('Display Entries from:',  'avia_framework' )=>'taxonomy'),
    						"multiple"	=> 6,
    						"std" 	=> "category"
    				),
    
    				array(
    						"name" 	=> __("Columns", 'avia_framework' ),
    						"desc" 	=> __("How many columns should be displayed?", 'avia_framework' ),
    						"id" 	=> "columns",
    						"type" 	=> "select",
    						"std" 	=> "3",
    						"subtype" => array(	__('1 Columns', 'avia_framework' )=>'1',
    											__('2 Columns', 'avia_framework' )=>'2',
    											__('3 Columns', 'avia_framework' )=>'3',
    											__('4 Columns', 'avia_framework' )=>'4',
    											__('5 Columns', 'avia_framework' )=>'5',
    											)),
    				array(
    						"name" 	=> __("Entry Number", 'avia_framework' ),
    						"desc" 	=> __("How many items should be displayed?", 'avia_framework' ),
    						"id" 	=> "items",
    						"type" 	=> "select",
    						"std" 	=> "9",
    						"subtype" => AviaHtmlHelper::number_array(1,100,1, array('All'=>'-1'))),
    
                    array(
                        "name" 	=> __("Offset Number", 'avia_framework' ),
                        "desc" 	=> __("The offset determines where the query begins pulling posts. Useful if you want to remove a certain number of posts because you already query them with another post slider element.", 'avia_framework' ),
                        "id" 	=> "offset",
                        "type" 	=> "select",
                        "std" 	=> "0",
                        "subtype" => AviaHtmlHelper::number_array(1,100,1, array(__('Deactivate offset','avia_framework')=>'0', __('Do not allow duplicate posts on the entire page (set offset automatically)', 'avia_framework' ) =>'no_duplicates'))),
    
    				array(
    						"name" 	=> __("Title and Excerpt",'avia_framework' ),
    						"desc" 	=> __("Choose if you want to only display the post title or title and excerpt",'avia_framework' ),
    						"id" 	=> "contents",
    						"type" 	=> "select",
    						"std" 	=> "excerpt",
    						"subtype" => array(
    							__('Title and Excerpt',  'avia_framework' ) =>'excerpt',
    							__('Title and Excerpt + Read More Link',  'avia_framework' ) =>'excerpt_read_more',
    							__('Only Title',  'avia_framework' ) =>'title',
    							__('Only Title + Read More Link',  'avia_framework' ) =>'title_read_more',
    							__('Only excerpt',  'avia_framework' ) =>'only_excerpt',
    							__('Only excerpt + Read More Link',  'avia_framework' ) =>'only_excerpt_read_more',
    							__('No Title and no excerpt',  'avia_framework' ) =>'no')),
    
    				array(
    							"name" 	=> __("Preview Image Size", 'avia_framework' ),
    							"desc" 	=> __("Set the image size of the preview images", 'avia_framework' ),
    							"id" 	=> "preview_mode",
    							"type" 	=> "select",
    							"std" 	=> "auto",
    							"subtype" => array(__('Set the preview image size automatically based on column width','avia_framework' ) =>'auto',__('Choose the preview image size manually (select thumbnail size)','avia_framework' ) =>'custom')),
    
    				array(
    							"name" 	=> __("Select custom preview image size", 'avia_framework' ),
    							"desc" 	=> __("Choose image size for Preview Image", 'avia_framework' ),
    							"id" 	=> "image_size",
    							"type" 	=> "select",
    							"required" 	=> array('preview_mode','equals','custom'),
    							"std" 	=> "portfolio",
    							"subtype" =>  AviaHelper::get_registered_image_sizes(array('logo'))
    							),
    				
    				/*
    array(
    							"name" 	=> __("Post Slider Transition", 'avia_framework' ),
    							"desc" 	=> __("Choose the transition for your Post Slider.", 'avia_framework' ),
    							"id" 	=> "animation",
    							"type" 	=> "select",
    							"std" 	=> "fade",
    							"subtype" => array(__('Slide','avia_framework' ) =>'slide',__('Fade','avia_framework' ) =>'fade'),
    							),
    */
    				
    				
    				array(
    						"name" 	=> __("Autorotation active?",'avia_framework' ),
    						"desc" 	=> __("Check if the slideshow should rotate by default",'avia_framework' ),
    						"id" 	=> "autoplay",
    						"type" 	=> "select",
    						"std" 	=> "no",
    						"subtype" => array(__('Yes','avia_framework' ) =>'yes',__('No','avia_framework' ) =>'no')),
    
    				array(
    					"name" 	=> __("Slideshow autorotation duration",'avia_framework' ),
    					"desc" 	=> __("Slideshow will rotate every X seconds",'avia_framework' ),
    					"id" 	=> "interval",
    					"type" 	=> "select",
    					"std" 	=> "5",
    					"required" 	=> array('autoplay','equals','yes'),
    					"subtype" =>
    					array('3'=>'3','4'=>'4','5'=>'5','6'=>'6','7'=>'7','8'=>'8','9'=>'9','10'=>'10','15'=>'15','20'=>'20','30'=>'30','40'=>'40','60'=>'60','100'=>'100')),
    
    				);
    
    				if(current_theme_supports('add_avia_builder_post_type_option'))
                    {
                        $element = array(
                            "name" 	=> __("Select Post Type", 'avia_framework' ),
                            "desc" 	=> __("Select which post types should be used. Note that your taxonomy will be ignored if you do not select an assign post type.
                                          If yo don't select post type all registered post types will be used", 'avia_framework' ),
                            "id" 	=> "post_type",
                            "type" 	=> "select",
                            "multiple"	=> 6,
                            "std" 	=> "",
                            "subtype" => AviaHtmlHelper::get_registered_post_type_array()
                        );
    
                        array_unshift($this->elements, $element);
                    }
    		}
    #550028

    Update: I found that I had another enfold theme folder nested in the enfold theme, so I deleted both, and then uploaded the 3.4.6

    I can confirm 3.4.6 shows under theme option update, and the missing category selector on the Portfolio settings is visible again. But……

    Now on the public side, every LayerSlider I had is gone. Strange thing is, I can see the slider and avia code in the page edit side of things. How can I get the layer sliders back to show on the page?

    • This reply was modified 8 years, 11 months ago by freelancemom.
    #553007

    Hey!

    can you provide us a precise link where we can see the issue with your layer slider?

    Cheers!
    Andy

    #555646

    Hi I on 3.4.6 and I also don’t have the ability to sort by categories for my portfolio entries….

    is there a fix for this?

    #555686

    I found a solution —- here is the code
    this came from http://thestizmedia.com/custom-post-type-filter-admin-custom-taxonomy/
    I hope this helps someone else..,,,
    just add to functions.php

    /**
    * Display a custom taxonomy dropdown in admin
    * @author Mike Hemberger
    * @link http://thestizmedia.com/custom-post-type-filter-admin-custom-taxonomy/
    */
    add_action(‘restrict_manage_posts’, ‘tsm_filter_post_type_by_taxonomy’);
    function tsm_filter_post_type_by_taxonomy() {
    global $typenow;
    $post_type = ‘portfolio’; // change to your post type
    $taxonomy = ‘portfolio_entries’; // change to your taxonomy
    if ($typenow == $post_type) {
    $selected = isset($_GET[$taxonomy]) ? $_GET[$taxonomy] : ”;
    $info_taxonomy = get_taxonomy($taxonomy);
    wp_dropdown_categories(array(
    ‘show_option_all’ => __(“Show All {$info_taxonomy->label}”),
    ‘taxonomy’ => $taxonomy,
    ‘name’ => $taxonomy,
    ‘orderby’ => ‘name’,
    ‘selected’ => $selected,
    ‘show_count’ => true,
    ‘hide_empty’ => true,
    ));
    };
    }
    /**
    * Filter posts by taxonomy in admin
    * @author Mike Hemberger
    * @link http://thestizmedia.com/custom-post-type-filter-admin-custom-taxonomy/
    */
    add_filter(‘parse_query’, ‘tsm_convert_id_to_term_in_query’);
    function tsm_convert_id_to_term_in_query($query) {
    global $pagenow;
    $post_type = ‘portfolio’; // change to your post type
    $taxonomy = ‘portfilio_entries’; // change to your taxonomy
    $q_vars = &$query->query_vars;
    if ( $pagenow == ‘edit.php’ && isset($q_vars[‘post_type’]) && $q_vars[‘post_type’] == $post_type && isset($q_vars[$taxonomy]) && is_numeric($q_vars[$taxonomy]) && $q_vars[$taxonomy] != 0 ) {
    $term = get_term_by(‘id’, $q_vars[$taxonomy], $taxonomy);
    $q_vars[$taxonomy] = $term->slug;
    }
    }

    #557479

    Hi!

    glad you found a solution and thanks a lot for sharing it with the community! Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Regards,
    Andy

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Enfold 3.4.5 Portfolio bugs’ is closed to new replies.