Forum Replies Created

Viewing 30 posts - 53,941 through 53,970 (of 67,499 total)
  • Author
    Posts
  • in reply to: Icons not loading in some browsers #351711

    Hi!

    Thank you for the info.

    Please post the login details here and set it as a private reply. We would like to modify the .htaccess file using the Yoast SEO plugin. If possible, please create a backup of the actual .htaccess file located on the root directory, just in case.

    Best regards,
    Ismael

    in reply to: cannot display copyright #351710

    Hi!

    I’m sorry but you’re using an old version of the theme and it looks like the socket is disabled. Please download the latest version 3.0.2 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: Portfolio Items Not Found in New Theme #351709

    Hey Veronica!

    Thank you for using Enfold.

    Edit the portfolio page then add the Portfolio Grid element. If possible, please go to Settings > Permalink panel to flush the permalink settings.

    Best regards,
    Ismael

    in reply to: Child theme changes do not work #351708

    Hi TheElear!

    Thank you for using Enfold.

    I’m sorry but we won’t be able to trace back the modifications that you’ve made. Note that you have to place the loop-index.php file inside the includes folder on the child theme directory.

    Cheers!
    Ismael

    in reply to: Redirects #351706

    Hey!

    Looks like the redirects are working now. We have to add it manually on the .htaccess file using Yoast. We disabled the simple 301 redirect plugin.

    http://la-appraisal.com/wp-content/themes/enfold/framework/php/wordpress-importer/

    http://la-appraisal.com/wp-content/themes/enfold/framework/php/avia_shortcodes/

    http://la-appraisal.com/wp-content/themes/enfold/framework/css/conditional_load/

    Regards,
    Ismael

    in reply to: Enfold tables loose after theme update #351704

    Hey!

    Thank you for using Enfold.

    We are aware of the issue but we’re still trying to figure it out. For now, you can use the hr whitespace separator element / shortcode in place of the br tags.

    Best regards,
    Ismael

    in reply to: Static Layerslider on mobile devices #351702

    Hey!

    Thank you for the update.

    You can hide the default layer slider on mobile then show another slider or a static image using css media queries. Please refer to this link:

    https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
    https://kriesi.at/support/topic/replace-slider-on-mobile/

    Best regards,
    Ismael

    in reply to: Using Lightbox to display single-post.php ? #351700

    Hi!

    Thank you for using Enfold.

    Yes, it is possible with the portfolio items but the page won’t look good on the lightbox container. Edit a portfolio item then look for the Overwrite Portfolio Link setting. Set it to define custom link. Use the url of the single post or portfolio page, add the ?iframe=true attribute in the end. Something like this:

    http://www.mysite.com/portfolio-item/single-portfolio-custom-link?iframe=true
    

    Use the masonry element to display the portfolio entries.

    Cheers!
    Ismael

    in reply to: Help with relocating Page Title? #351699

    Hey!

    Did you replace the code with this?

    add_filter('avf_template_builder_content', 'avf_template_builder_content_title', 10, 1);
    function avf_template_builder_content_title($content = "")
    {
    	$title = get_the_title();
    	return $title . $content;
    }

    This will only render the page title, not the whole title container.

    Regards,
    Ismael

    in reply to: Adding Graphic to Header Area #351698

    Hey!

    1.) Use this to change the style of the “Make an Appointment” menu item:

    li#menu-item-3780 a {
    background: green;
    padding: 10px;
    color: #ffffff;
    }

    This for the social icons:

    #top .social_bookmarks {
    height: 50px;
    }
    
    #header_meta .container {
    min-height: 50px;
    }
    
    #top .social_bookmarks li a {
    width: 50px;
    line-height: 50px;
    min-height: 50px;
    font-size: 20px;
    }
    
    #top .social_bookmarks li {
    width: 50px;
    }

    2.) You can change the phone number color with this:

    .phone-info span {
    color: #719430;
    }

    Cheers!
    Ismael

    in reply to: empty scroll to top box and portfolio issue #351697

    Hi!

    Thank you for the info.

    I’m really not sure why icons are missing. Please get a fresh copy of the Enfold theme from your themeforest account then override the old one via FTP. Refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Maybe, files are missing or corrupted. And add this code on .htaccess file:

    <FilesMatch "\.(ttf|otf|woff)$">
    <IfModule mod_headers.c>
            Header set Access-Control-Allow-Origin "*"
    </IfModule>
    </FilesMatch>

    Please create a backup of .htaccess file just in case.

    Cheers!
    Ismael

    in reply to: The Events Calendar #351696

    Hey!

    This option is also not available for events pages but if you can give us a screenshot on how you want the single events page to look like, maybe we can help. For further modifications, please visit Envato Studio or Werkpress.

    Best regards,
    Ismael

    in reply to: Sidebar problem after update #351695

    Hey!

    Thank you for the update.

    You have to commend out the default avia logo on helper-main-menu.php file:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
    

    Replace it with:

    //echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
    

    Regards,
    Ismael

    Hi!

    Did you remove the modifications on avia.js file? It’s not working even when I’m logged in. I noticed that you placed the helper-main-menu.php file on the child theme folder. What are the modifications that you added there?

    Cheers!
    Ismael

    in reply to: widget removal #351693

    Hey!

    Thank you for the update.

    I’m still not sure what’s causing the issue. Can you please report the issue to your hosting provider? Ask them for any error logs. This might help us debug the issue.

    Regards,
    Ismael

    in reply to: menu column space #351692

    Hi!

    You can use this to change the background color of the menu container making it span the whole width of the container:

    div#header_main_alternate {
    background: #4d4d4d;
    }

    Best regards,
    Ismael

    in reply to: Responsive menu #351689

    Hey!

    You can add this below to hide the secondary menu on 1080px above then show it when screen size is between 800px and 1079px:

    @media only screen and (min-width: 1080px) {
    ul#avia2-menu {
    display: none;
    }
    }
    
    @media only screen and (min-width: 800px) and (max-width: 1079px) {
    ul#avia2-menu {
    display: block;
    }
    
    ul#avia-menu {
    display: none;
    }
    }

    Cheers!
    Ismael

    in reply to: Custom social media icon hover not working #351684

    Hey!

    Yes, you can add it on the child theme’s functions.php file. Forget the line 16.

    Regards,
    Ismael

    in reply to: Licence transfer #351679

    Hi!

    Thank you for the info. We will forward this to Kriesi. Please wait for his response.

    Cheers!
    Ismael

    in reply to: Remove transitions #351140

    Hi Andrea!

    Thank you for using Enfold.

    How did you disable the animation? You can actually use this on Quick CSS to disable it:

    *caption animation*/
    
    @-webkit-keyframes caption-right {
      0%   { -webkit-transform:translate(2000px,0); opacity: 0;  }
      100% { -webkit-transform:translate(0,0); opacity: 1; }
    }
    @-moz-keyframes caption-right {
      0%   { -moz-transform:translate(2000px,0); opacity: 0;  }
      100% { -moz-transform:translate(0,0); opacity: 1; }
    }
    @keyframes caption-right {
      0%   { transform:translate(2000px,0); opacity: 0;  }
      100% { transform:translate(0,0); opacity: 1; }
    }
    
    @-webkit-keyframes caption-left {
      0%   { -webkit-transform:translate(-2000px,0); opacity: 0;  }
      100% { -webkit-transform:translate(0,0); opacity: 1; }
    }
    @-moz-keyframes caption-left {
      0%   { -moz-transform:translate(-2000px,0); opacity: 0;  }
      100% { -moz-transform:translate(0,0); opacity: 1; }
    }
    @keyframes caption-left {
      0%   { transform:translate(-2000px,0); opacity: 0;  }
      100% { transform:translate(0,0); opacity: 1; }
    }
    
    @-webkit-keyframes caption-top {
      0%   { -webkit-transform:translate(0,-20px); opacity: 0;  }
      100% { -webkit-transform:translate(0,0); opacity: 1; }
    }
    @-moz-keyframes caption-top {
      0%   { -moz-transform:translate(0,-20px); opacity: 0;  }
      100% { -moz-transform:translate(0,0); opacity: 1; }
    }
    @keyframes caption-top {
      0%   { transform:translate(0,-20px); opacity: 0;  }
      100% { transform:translate(0,0); opacity: 1; }
    }
    
    @-webkit-keyframes caption-bottom {
      0%   { -webkit-transform:translate(0,20px); opacity: 0;  }
      100% { -webkit-transform:translate(0,0); opacity: 1; }
    }
    @-moz-keyframes caption-bottom {
      0%   { -moz-transform:translate(0,20px); opacity: 0;  }
      100% { -moz-transform:translate(0,0); opacity: 1; }
    }
    @keyframes caption-bottom {
      0%   { transform:translate(0,20px); opacity: 0;  }
      100% { transform:translate(0,0); opacity: 1; }
    }

    Replace the css properties of the beginning of the animation, 0%, with the css properties of the end animation. Example:

    @-webkit-keyframes caption-bottom {
      0%   { -webkit-transform:translate(0,20px); opacity: 0;  }
      100% { -webkit-transform:translate(0,0); opacity: 1; }
    }

    Should be replaced with:

    @-webkit-keyframes caption-bottom {
      0%   {  -webkit-transform:translate(0,0); opacity: 1; }
      100% { -webkit-transform:translate(0,0); opacity: 1; }
    }

    Regards,
    Ismael

    in reply to: Using rel=0 parameter in YouTube url #351135

    Hey!

    You can vote or request for the feature here: https://kriesi.at/support/enfold-feature-requests/

    Best regards,
    Ismael

    in reply to: Link Team Member Image on Mobile #351133

    Hey!

    It works on our installation. Please remove browser cache then test it again. There will be a short delay. Let the load page before testing it.

    Best regards,
    Ismael

    in reply to: Help with relocating Page Title? #351132

    Hey!

    Yes, you’re correct regarding the template files but it is much easier to use this filter. If you’re planning to add it on posts, products, page(Default Editor) etc, you might need to manually add it on the template files. The solution above actually works on our installation. Make sure that the Header Title and Breadcrumbs on Enfold > Header is enabled. You can hide the default title container with this:

    #main > .stretch_full.container_wrap.title_container {
    display: none;
    }

    Or you can replace the code with this:

    add_filter('avf_template_builder_content', 'avf_template_builder_content_title', 10, 1);
    function avf_template_builder_content_title($content = "")
    {
    	$title = get_the_title();
    	return $title . $content;
    }

    Regarding the blog post navigation, you can use the get_previous_post and get_next_post function on loop-index.php file. Refer to these links for more info:

    http://codex.wordpress.org/Function_Reference/get_previous_post
    http://codex.wordpress.org/Function_Reference/get_next_post

    Cheers!
    Ismael

    in reply to: Custom Social Bar Icons (Replace/Add) [Enfold] #351129

    Hey!

    You can use the same filter:

    function avia_add_custom_icon($icons) {
    	$icons['cart']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue859');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    function avia_add_custom_social_icon($icons) {
    	$icons['Cart'] = 'cart';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Place it below this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Best regards,
    Ismael

    Hi!

    The login credentials are not working. Please check.

    Regards,
    Ismael

    in reply to: Styling Mega Menu #351127

    Hi emin!

    Thank you for using Enfold.

    Please refer to these links on how to customize the mega menu, adding images, rows etc:

    http://kriesi.at/documentation/enfold/setting-up-your-mega-menu/
    http://kriesi.at/documentation/enfold/portfolio-item/creating-a-mega-menu/

    Regards,
    Ismael

    in reply to: Background color for text boxes #351126

    Hey!

    It is actually quite simple. Just review the documentation on how to add a custom css class then add your own css modifications. You can set the post here as a private reply if you’re uncomfortable handing out your login credentials. We’ll create an example.

    Cheers!
    Ismael

    in reply to: Redirects #351124

    Hi!

    Please post the login details here and set it as a private reply. We would like to check it. I’ll ask the rest of the support team to take a look.

    Best regards,
    Ismael

    in reply to: widget removal #351123

    Hey!

    What is the current PHP version? Have you tried switching to a default theme? Test the widgets again.

    Best regards,
    Ismael

    in reply to: Divider in menu #351118

    Hey!

    Please remove all the css code then use this:

    .av-main-nav > li, .av-main-nav > li > a {
    height: 20px !important;
    line-height: 20px !important;
    }
    
    .av-main-nav > li {
    border-left: 1px solid;
    }
    
    .av-main-nav > li:first-child {
    border-left: none;
    }
    
    .avia-menu.av-main-nav-wrap {
    top: 30px;
    position: relative;
    }
    

    Cheers!
    Ismael

Viewing 30 posts - 53,941 through 53,970 (of 67,499 total)