Forum Replies Created

Viewing 30 posts - 50,071 through 50,100 (of 66,262 total)
  • Author
    Posts
  • in reply to: Getting the Sidebar to show the Parent/Grandparent #402541

    Hi!

    The solution provided on the previous post should work since you’re using the same nested navigation. Edit functions-enfold.php, find this code:

    $default_sidebar = false;
                    $sidebar_menu .= "<nav class='widget widget_nav_menu $display_child_pages'><ul class='nested_nav'>";
                    $sidebar_menu .= $children;
                    $sidebar_menu .= "</ul></nav>";

    Replace it with:

    $default_sidebar = false;
    				$parent = get_the_title($post->post_parent);
    				$parentlink = get_the_permalink($post->post_parent);
                    $sidebar_menu .= "<nav class='widget widget_nav_menu $display_child_pages'><ul class='nested_nav'>";
    				$sidebar_menu .= "<a href='{$parentlink}'>$parent</a>";
                    $sidebar_menu .= $children;
                    $sidebar_menu .= "</ul></nav>";

    Best regards,
    Ismael

    in reply to: Full width template for Enfold on Github #402538

    Hey!

    Thank you for using Enfold.

    Why do you need the full width template? Can’t you just build the site using the default template? The problem with the template is that the color section is being place inside the container div preventing it to behave as a normal color section would.

    <div class='container_wrap container_wrap_first main_color fullsize'>
     <div class='container'>
    POSITION OF THE COLOR SECTION WHEN THE TEMPLATE IS USE 
    </div>
    </div>
    

    Normal position is:

    
    <div id="main">
    COLOR SECTION HERE
    ANOTHER COLOR SECTION HERE
    </div>

    Regards,
    Ismael

    in reply to: featured image stopped showing up in popup #402535

    Hey!

    I’m sorry but you’re using an old version of the theme, 2.7.1. Please download the latest version 3.0.8 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    in reply to: replacing default featured image (pencil) with my own image #402534

    Hey!

    Yes, you need to use an icon. If you want to use an image instead, use this on the Quick CSS field:

    .main_color .fallback-post-type-icon:before {
    display: none;
    }
    
    .main_color .fallback-post-type-icon {
    background: url(IMAGE URL HERE);
    background-position: center center;
    background-repeat: no-repeat;
    }

    Add the image url inside the background property.

    Regards,
    Ismael

    in reply to: Currencies in Events Calendar Element shown incorrect #402531

    Hi!

    Alright. Please edit config-templatebuilder > avia-shortcodes > events_upcoming.php. Find this code on line 132:

    $price  = tribe_get_cost( $entry->ID, true );
    

    Replace it with:

    $cost   = tribe_get_cost( $entry->ID, false);
    					$symbol = tribe_get_event_meta( $entry->ID, '_EventCurrencySymbol', true );
    					$rev 	= tribe_get_event_meta( $entry->ID, '_EventCurrencyPosition', true );
    					if($rev === 'prefix' && $cost !== '') {
    						$price = $symbol . " " . $cost;
    					} elseif($rev = 'suffix' && $cost !== '') {
    						$price = $cost . " " . $symbol;
    					} else {
    						$price = __( "Free", 'tribe-events-calendar' );
    					}

    Best regards,
    Ismael

    Hi royaltask!

    Thank you for using Enfold.

    I’m sorry but this will require a custom script that is beyond the scope of support. Please hire a freelance developer or search for a script that accomplishes the task described above.

    Regards,
    Ismael

    in reply to: comments before social share in ALB #402521

    Hey!

    Thank you for the link.

    Add this to the Quick CSS field:

    span.comment-count {
    background: black;
    }

    Regards,
    Ismael

    in reply to: Menu and Formatting Messed Up After Updating Enfold #402517

    Hi!

    I’m sorry but the restoration already cost us a lot of time. It seems like you’re depending on us to do all the modifications. Unfortunately, we can only do basic aesthetic mods but we can’t rebuild the whole site for you. The problem is, you didn’t update the theme regularly. You waited more than a year to do a single update. 2.1 was released on September 2013 while the latest version’s release is January, this year. A lot has changed since. If you want to the site to look the way it was before the update, please hire a freelance developer. Anyway, you can add this to the functions.php to bring the phone back inside the main header:

    add_action('ava_after_main_menu', 'ava_add_phone');
    function ava_add_phone() {
    echo '<div class="phone-info "><span>908-464-3060</span></div>';
    }

    Regards,
    Ismael

    in reply to: Remove unused custom fields in admin #402505

    Hey nparent!

    Thank you for using Enfold.

    Unfortunately, you can’t remove those because some of the meta fields are needed to run the theme, the header_title_bar for example. There’s a workaround, hide it using css but you will need to get the meta id. Example, add this to the functions.php:

    add_action('admin_head', 'ava_remove_video_element');
    function ava_remove_video_element() {
    echo '#postcustomstuff tr:first-child { display: none !important; }';
    }

    This will hide the first custom field. Use css child selectors to hide the others.

    Regards,
    Ismael

    in reply to: Advanced editor suddenly stop working #402501

    Hi!

    A file fails to load: http://www.fineco.ferozo.com/fnueva/wp-admin/admin-ajax.php

    Failed to load resource: the server responded with a status of 403 (Forbidden)
    

    Make sure that the folders inside the wp root directory have the correct file permission.

    Best regards,
    Ismael

    in reply to: Theme Error on Site – Enfold 3.0.8 #402496

    Hi dclgrp!

    Thank you for using Enfold.

    Try to increase the Max Container Width on Enfold > General Layout > Dimensions panel to 1310px. This will give you enough space to contain the logo and the menu. Regarding the code issue, looks like it is coming from the layer slider plugin. If possible, try to deactivate all plugins then test it again.

    Cheers!
    Ismael

    in reply to: Compatibilty issues in IE8 #402492

    Hi!

    I was not able to reproduce the issue on an emulation as well but please try this on the Quick CSS field to fix the thumbnails:

    .small-preview img {
        max-height: 100% !important;
    }

    Can you see any error the console when you check the site? I don’t have any idea why the scroll position issue occurs though. Is this also happening on the enfold demo?

    Regards,
    Ismael

    in reply to: Advanced Styling funktioniert nicht #402488

    Hi!

    Maybe, you’re not using the correct css selectors. If you want to change the product title font size, you can try this on the Quick CSS field

    div.product .product_title {
    font-size: 20px !important;
    }

    Regards,
    Ismael

    in reply to: Video Fly-throughs of new features #402486

    Hey mediasauce!

    Thank you for choosing Enfold.

    Personally, I think a video or content ad is a good idea. We have notified Kriesi. Please wait for his response.

    Cheers!
    Ismael

    in reply to: Testimonials Large #402480

    Hi Jasmer!

    Thank you for using Enfold.

    We can’t reproduce the issue on our test installations so we have reported the issue to Kriesi. Please wait for his response.

    Regards,
    Ismael

    in reply to: Request: WP Version Compatibility chart and issue list #402474

    Hey!

    We have reported this request to Kriesi. Unfortunately, for now, you have to check the theme change log or if you’re worried about a certain issue, search the forum. The best thing to do is to create two instance of the website, production and development. Update the development side of the website first, you will then know if the update causes any issues to the site. If it does, well then you have to fix it or come to us. We’ll try our best to help. If not, then you can update the production site.

    Cheers!
    Ismael

    Hi!

    Please refer to this link on how to properly integrate Relevanssi with the ajax search: http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    Cheers!
    Ismael

    in reply to: Breadcrumb Problem #402470

    Hi!

    Maybe this will help:

    add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 20, 1);
    function avia_change_breadcrumb($trail) {
    		if(is_singular('portfolio')) {
    			$home = avia_get_option('frontpage');
    			$last = array_pop($trail);
    			$page = get_post(459, ARRAY_A);
    			$page = '<a href="' . $page['guid'] . '">' . $page['post_title'] . '</a>';
    			$trail = array(0 => $home, 1 => $page, 'trail_end' => $last);
    		}
             return $trail;
    }

    Change the id of the get_post function to the id of the “My Work” page.

    Cheers!
    Ismael

    Hey Apollo87!

    Thank you for using Enfold.

    Please provide a screenshot of the modification that you want. If you want a transparent background on top of the masonry featured image, add something like this to the Quick CSS field:

    .av-masonry-entry .av-inner-masonry:before {
    content: '';
    background: rgba(0, 181, 241, 0.7);
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1000;
    position: relative;
    }

    Regards,
    Ismael

    in reply to: Full width easy slider #402464

    Hi!

    This line is for the title:

    .avia-slideshow .avia-caption .avia-caption-title { font-size: 40px !important; } 
    

    This is for the actual caption:

    .caption_framed .slideshow_caption .avia-caption-content p { font-size: 25px !important; }
    

    Best regards,
    Ismael

    in reply to: Background Video on an iPad #402463

    Hi James!

    Thank you for using Enfold.

    I haven’t tested this personally but try to edit js > avia.js, look for this code:

    if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement)
    

    Remove the “iPad”:

    if( /Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement)
    

    Or use the Layer Slider instead of the color section. https://kriesi.at/support/topic/layerslider-zoom-video-to-fill-banner-space/#post-327976

    Best regards,
    Ismael

    in reply to: Enfold Logo trouble #402461

    Hey!

    I checked the site and it is using an image from the current domain as logo: //foxfiredev.net/wp-content/uploads/2014/11/857934_1406426956257265_1242999983_o61.png

    Did you figure out what the problem was?

    Best regards,
    Ismael

    in reply to: Zooming in on an image in the lightbox #401987

    Hey!

    Use this plugin instead: https://wordpress.org/plugins/simple-image-sizes/

    Go to Settings > Media.

    Best regards,
    Ismael

    in reply to: Reduce margins between Layout Elements #401985

    Hi!

    First, edit the color section. Look for the For Developers: Section ID field. That is where you want to put the custom id attribute (custom-section). If you want to tighten up or decrease the margin between rows, use this on Enfold > General Styling > Quick CSS field:

    body #custom-section .column-top-margin {
    margin-top: 10px;
    }

    Cheers!
    Ismael

    in reply to: Magazine issue #401980

    Hi!

    Edit confg-templatebuilder > avia-shortcodes> magazine.php, look for this code on line 583:

    $output .=			"<time class='av-magazine-time updated' {$markupTime}>".$time."</time>";
    			$output .=			$separator.$author_output;
    			$output .=			"<{$titleTag} class='av-magazine-title entry-title' {$markupTitle}>{$title}</{$titleTag}>";

    Replace it with:

    $output .=			"<{$titleTag} class='av-magazine-title entry-title' {$markupTitle}>{$title}</{$titleTag}>";
    $output .=			$separator.$author_output;
    			$output .=			"<time class='av-magazine-time updated' {$markupTime}>".$time."</time>";

    On the same file, look for this code on line 529:

    $title	 		= "<a href='{$link}' {$titleAttr}>".get_the_title($entry->ID)."</a>";
    

    Replace it with this code to remove the link:

    $title	 		= "<a {$titleAttr}>".get_the_title($entry->ID)."</a>";
    

    Regards,
    Ismael

    in reply to: Bug on Media Entries Page #401978

    Hey!

    Please give us an access to the dashboard. We would like to check it.

    Cheers!
    Ismael

    in reply to: Layerslider not displaying videos on mobile #401970

    Hi!

    1.) It’s only a test page. It only proves that the shortcode works. Of course, you need to edit it to match the current slider.

    2.) Try to deactivate all plugins except woocommerce. See if that helps.

    Cheers!
    Ismael

    in reply to: English in backend, danish in frontend #401932

    Hey!

    Set the language back to default then add this to the functions.php to disable theme options translation:

    if(!function_exists('avia_lang_setup'))
    {
    	add_action('after_setup_theme', 'avia_lang_setup');
    	function avia_lang_setup()
    	{
    		if(!is_admin())
    		{
    			$lang = apply_filters('ava_theme_textdomain_path', get_template_directory()  . '/lang');
    			load_theme_textdomain('avia_framework', $lang);
    		}
    	}
    }

    Best regards,
    Ismael

    in reply to: IMAGES WITH HOTSPOTS #401930

    Hey dwebprojects!

    Thank you for using Enfold.

    No, unfortunately, it’s not possible to add links to the image hotspots. You can request it on our Feature Requests page.

    Regards,
    Ismael

    Hey Kevin!

    Thank you for using Enfold.

    Can you please provide a screenshot of what you’re trying to do with the title? If you build the page using the advance layout editor, edit template-builder.php. Look for the avia_title function.

    Cheers!
    Ismael

Viewing 30 posts - 50,071 through 50,100 (of 66,262 total)