Forum Replies Created

Viewing 30 posts - 49,951 through 49,980 (of 66,237 total)
  • Author
    Posts
  • in reply to: Problem with "meta on grid" changings #404989

    Hey DustinH93!

    Thank you for using Enfold.

    1.) Please look for this code:

    if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}

    Replace it with:

     if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Contribute', 'avia_framework' ) : __('Contribute', 'avia_framework' );
    							$commentCount = $commentCount !== "0" ? $commentCount : '';
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";					
    						} 

    Again, look for this line of code:

    $commentCount = get_comments_number($the_id);
    

    Replace it with:

    $commentCount = $entry->comment_count;
    

    2.) Can you please provide a link to the issue? We would like to check it.

    Best regards,
    Ismael

    in reply to: Overlap image and contact form #404984

    Hi!

    Please try this:

    body #gform_wrapper_2 {
    padding-top: 40px;
    margin-top: -35px;
    }

    The form should look like this after:

    Cheers!
    Ismael

    in reply to: Enfold accordion styles #404981

    Hi!


    @vicrub
    : You can add your css modifications to the Enfold > General Styling > Quick CSS field. You can also modify some elements inside the Advanced Styling panel.


    @cbentley65
    : This is for the tab title and tab content:

    div .main_color .tabcontainer .active_tab_content, div .main_color .tabcontainer .active_tab {
    background-color: red;
    }
    
    #top .main_color .tabcontainer .tab:hover {
    background-color: red;
    }
    
    .main_color .template-archives .tabcontainer a, #top .main_color .tabcontainer .tab:hover, #top .main_color .tabcontainer .tab.active_tab {
    color: yellow;
    }

    Use google inspector or firebug to find the right selectors for the elements that you want to modify via css.

    Cheers!
    Ismael

    in reply to: Breadcrumb Problem #404978

    Hi!

    Did you change the id “459” to the id of the “My Work” page?

    $page = get_post(459, ARRAY_A);
    

    Cheers!
    Ismael

    in reply to: Separator Icons not centered on mobil device #404976

    Hey!

    I think it’s because of the width of the invisible line on both sides of the icon. You set the width of the separator with the issue to 200px and the other to 50px. It doesn’t automatically resize the width of this elements on smaller screens so it pushes the icon out of line. A fix should be included on the next update.

    Best regards,
    Ismael

    in reply to: How to format categories (preferably with ALB) #404973

    Hey!

    Unfortunately, you can’t use the advance layout builder when designing category pages. Yes, it will require custom coding. Please hire a freelance developer. If you want the avia_post_nav (post navigation) to filter the same category, add this to the functions.php file:

    add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod');
    function avia_post_nav_settings_mod($settings)
    {
    	$settings['is_fullwidth']  = false;
    	$settings['same_category'] = true;
    	return $settings;
    }

    Cheers!
    Ismael

    in reply to: Additional transparent header #404971

    Hi!

    Edit the page then look for Layout > Header visibility and transparency. Select “Transparent Header”.

    Cheers!
    Ismael

    in reply to: Sidebar Subscribe Border and Placeholder Text #404967

    Hey!

    Add the !important attribute after the css value.

    input#subscribe-field {
    border-radius: 2px!important;
    width: 250px !important;
    font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-weight: 100!important;
    max-width: 250px !important;
    box-sizing: border-box;
    font-weight: 100!important;
    border: 1px dotted #e1e1e1 !important;
    }

    Adjust the width and max-width if necessary.

    Best regards,
    Ismael

    in reply to: Fix main menu to browser #404966

    Hi!

    Add the menu items of the secondary menu to the menu that you set as Enfold Main Menu. Add this to the Quick CSS field to remove the header_meta container:

    #header_meta { display: none; }
    

    Cheers!
    Ismael

    in reply to: How to use images instead of icons in an icon box? #404965

    Hi!

    You can adjust the background-position property.

    Best regards,
    Ismael

    in reply to: Bug on Media Entries Page #404964

    Hi!

    Try to replace the code with this:

    add_filter('avf_title_args', 'avf_portfolio_title_args', 10, 1);
    function avf_portfolio_title_args($args) { 	
    
    	if(is_single()) $title = get_the_title($id);
    
    	if(is_singular('portfolio') && is_single()) {
    		$terms = get_the_terms( $id, 'portfolio_entries' );
    	}elseif(is_singular('post')){
    		$terms = get_the_terms( $id, 'category' );
    	}
    	
    	if(is_singular(array('portfolio', 'post')) && is_single()) {
    		$portfoliocat = array();
    		foreach ( $terms as $term ) {
    			$portfoliocat[] = $term->name;
    		}	
    		$args['title']    = $portfoliocat[0];	
    	} else {	
    		$args['title']    = $title;
    	}
    
    	return $args;
    }
    

    Regards,
    Ismael

    in reply to: Related products and left sidebar on products page #404637

    Hi!

    Edit config-woocommerce > config.php, replace it with this code: http://pastebin.com/hjiKP5Jx

    Cheers!
    Ismael

    in reply to: Offline demo data import possible? #404600

    Hi!

    Maybe the solution provided by another user will help: https://kriesi.at/support/topic/problem-installing-coming-soon-demo/#post-402978

    Best regards,
    Ismael

    in reply to: Masonry Gallery – Color Captions Revisited #404596

    Hi CharlieTh!

    Thank you for using Enfold.

    You can add this to the Quick CSS field:

    .avia_desktop.avia_transform3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image:hover .av-inner-masonry-content {
    background: yellow;
    }

    Best regards,
    Ismael

    in reply to: Create youtube/uploaded video gallery #404571

    Hey mlk92!

    Thank you for using Enfold.

    1.) Edit the portfolio item then set the Overwrite Portfolio Link setting to custom link. Add the url of the video. Make sure that url structure look something like this:

    http://www.youtube.com/watch?v=G0k3kHtyoqc
    

    2.) Create a page, add the Portfolio Grid element. Make sure that the Link Handling option is set to default, not AJAX.

    Best regards,
    Ismael

    in reply to: Custom widget on top? #404547

    Hey pallisvans!

    Thank you for using Enfold

    Custom sidebars should be placed at the top by default. Can you please explain what you mean? You can also set the page layout to “No Sidebar” then use the Widget Area elements to control the sidebar or widget area position.

    Best regards,
    Ismael

    in reply to: Layout change #404338

    Hey!

    Yes, that is possible but it will require a custom script, jquery or javascript probably, that should calculate the height of the two smaller blocks (a & b) then apply the total height as the height of block c. It is also possible with html codes inside a text or code block but it will require too many css media queries to make it work on smaller or larger screens. So doing it via jquery is easier. You can refer to these links for example:

    http://stackoverflow.com/questions/3275850/set-a-div-height-equal-with-of-another-div
    http://pressupinc.com/blog/2014/02/setting-dynamic-equal-heights-multiple-elements-jquery/

    Regards,
    Ismael

    in reply to: Fullscreen Slider on iPhone #404328

    Hey!

    Yes, the fix should be included on future updates. You’re actually the only user who reported the issue.

    Cheers!
    Ismael

    in reply to: Elemente kopieren #404326

    Hi ThomasWitzany!

    Thank you for using Enfold.

    You can save it as Template, look for the “Template” button at the top right corner of the advance layout builder. Or switch the builder to debug mode to preview the actual shortcode: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Best regards,
    Ismael

    in reply to: Limit ajax search results with Relevanssi #404320

    Hi!

    Go to the Relevanssi panel then increase the Minimum word length to index: value to at least 4 then resave the index. You will get fewer and more relevant results when using the ajax search. Also, the theme’s ajax search returns a maximum of 5 items per post types, you can decrease that by adding this filter to the functions.php file:

    add_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1);
    function avf_modify_ajax_search_query($search_parameters)
    {
    parse_str($search_parameters, $params);
    $params['numberposts'] = 3;
    $search_parameters = http_build_query($params);
    return $search_parameters;
    }

    Adjust the numberposts parameter.

    Cheers!
    Ismael

    in reply to: Youtube embedding without related videos at the end #404314

    Hi!

    Use the iframe code instead of the media element. Video attributes will be removed when using the WP embed code, unfortunately, this is the same script use in the theme.

    Regards,
    Ismael

    in reply to: Google Map i Footer Widget? Fail.. #404312

    Hi!

    I tried the link above, wp-admin and wp-login but they aren’t working. Please check.

    Best regards,
    Ismael

    Hey NaRanJiTo78!

    Thank you for using Enfold.

    The problem, the slider height is too high, 1000px and the Layers Container is not set. Refer to this link: https://kriesi.at/support/topic/responsive-layerslider-wp-in-mobile-phones/#post-404303

    Cheers!
    Ismael

    in reply to: Mute button on Video Background in Layerslider WP #404305

    Hi NaRanJiTo78!

    Thank you for using Enfold.

    This is a possible but it will require a custom modification that is beyond the scope of support. Anyway, users can always click right mouse button then enable “Mute”.

    Regards,
    Ismael

    in reply to: Responsive Layerslider WP in mobile phones #404303

    Hey NaRanJiTo78!

    Thank you for using Enfold.

    Set a value to the Responsive Under and Layers Container field.

    Regards,
    Ismael

    Hey!

    I refreshed the page exactly 5 times but I can’t reproduce the issue. Maybe, it’s an intermittent issue with the server which randomly occur at a random time of the day. Please contact them for more info. Try to install a cache plugin. It should help.

    Cheers!
    Ismael

    in reply to: Multi-Layer Slider Problems #404295

    Hey!

    Thank you for using Enfold.

    I’m sorry but I don’t see any layer slider on the home page. Can you please create a test page? You need to play around with the Duration and Delay options of the layer. Make sure that it doesn’t exceed the general duration settings of the whole slide.

    Best regards,
    Ismael

    in reply to: Shopping cart icon on mobile menu – only show if… #404291

    Hi!

    I checked the site and the cart_dropdown isn’t showing even when you add an item. Please replace the code with this:

    @media only screen and (max-width: 767px) {
    .responsive #top .cart_dropdown { right: -160px; }
    .responsive #top .cart_dropdown.visible_cart { right: 7.5%px; }
    }

    Also, the social icons are visible on mobile. Please remove browser cache then reload the page. Use this to adjust the position:

    @media only screen and (max-width: 767px) {
    .responsive.html_header_top #header_main .social_bookmarks {
    top: 0;
    right: -60%;
    }}

    Best regards,
    Ismael

    in reply to: change "read more" for multilingual website #404287

    Hey!

    Glad you figured it out. If you still want to translate other text or strings, you can use this plugin: https://wordpress.org/plugins/codestyling-localization/

    Best regards,
    Ismael

    in reply to: Enfold Update / Woocommerce #404286

    Hi!

    I’m sorry but I don’t understand what you’re saying. What is “Piebald this but please times.”?

    Like I said, there are only 5 endpoints. I edited the menu for you:

    http://franzelina.com/wp-admin/nav-menus.php?action=edit&menu=3793

    The login and register page is the same as the my account page so when you’re logged in to the site and you click the login or register menu items, you will be redirected to the my account page.

    Best regards,
    Ismael

Viewing 30 posts - 49,951 through 49,980 (of 66,237 total)