Forum Replies Created

Viewing 30 posts - 58,201 through 58,230 (of 67,597 total)
  • Author
    Posts
  • Hi!

    Thank you for the update.

    The icons are not showing the chinese characters anymore when I checked it on IE9. Please remove browser cache then reload the page a few times. What I noticed is that the icon list on the page (http://www.traxiongroup.com/about/) is not loading properly. Please try deactivate all plugins then test it again. If possible test it on another computer or browser.

    Best regards,
    Ismael

    Hi jnhaswell!

    Thank you for using the theme!

    You can add this on functions.php to remove the search icon and add the actual search form right after the main menu:

    add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    
    function avia_append_search_nav ( $items, $args )
    	{	
    		if(avia_get_option('header_searchicon','header_searchicon') != "header_searchicon") return $items;
    	
    	    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
    	    {
    	        global $avia_config;
    	        ob_start();
    			$getform = get_search_form(false);
    
    	        $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">'.$getform.'</li>';
    	    }
    	    return $items;
    	}

    Add this on Quick CSS or custom.css:

    #top #searchform > * {
    opacity: 1 !important;
    display: block !important;
    }

    Best regards,
    Ismael

    in reply to: Enfold Portfolio Grid – two problems #278482

    Hi!

    Thank you for the update.

    If I understand you clearly, I don’t think there are any css modifications that you can add that are related on this issue. If you have a child theme, you should add the css modifications on the style.css file and additional functions that you may want to add on the theme inside the functions.php file.

    Cheers!
    Ismael

    in reply to: image overlay resize #278481

    Hey!

    Thank you for the update.

    1.) Please add this on Quick CSS or fix the image overlay:

    .avia_transform a .image-overlay,  .avia_transform a:hover .image-overlay {
    width: 100% !important;
    left: 0 !important;
    }

    2.) That’s not possible unless you enclose the image and text block on a container. You should probably add the image on the text block and create a unique div container around it.

    3.) No, that’s not normal. The Add Media button should be working. Please download the latest version 2.8.1 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/

    Cheers!
    Ismael

    in reply to: Galleries showing other than selected images #278477

    Hey!

    Thank you for the access.

    I created a test page but the advance layout builder is not working. Is it alright if we deactivate all plugins while working on the site? One of them might be causing the issue.

    Cheers!
    Ismael

    in reply to: [SOLVED] Breadcrumbs problem #278476

    Hey!

    Thank you for the info.

    I can see the issue but I’m not sure why the header settings are not working. Do these pages existed right before you installed Enfold?

    Regards,
    Ismael

    in reply to: Header-Images for every Page #278474

    Hi!


    @athlonius
    : Please enable the right mouse click function so that we can inspect your website. You can adjust the position of the avia-menu-fx with this on Quick CSS:

    .avia-menu-fx {
    position: absolute;
    top: 0;
    }

    Best regards,
    Ismael

    in reply to: Main menu op top of page #278473

    Hey!

    Thank you for the update.

    Please add this on Quick CSS or custom.css:

    .sub_menu>ul>li:hover>a {
    text-decoration: none !important;
    }

    And this to fix the advance menu toggle:

    #advanced_menu_toggle, #advanced_menu_hide {
    color: #333333;
    }

    Regards,
    Ismael

    in reply to: menu images #278471

    Hey!

    Thank you for the update.

    Please add this on Quick CSS or custom.css:

    #footer .widget ul {
    width: 90px;
    }
    
    #footer .social_bookmarks li {
    clear: none;
    }
    

    Regards,
    Ismael

    in reply to: Product page video clips #278465

    Hi envapk2!

    Thank you for using the theme.

    Regretfully, that is not possible with the theme without modifications. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #278456

    Hi!


    @docperi
    : Thank you! We’ll be waiting for it. :)

    Cheers!
    Ismael

    in reply to: Text Flashing using Animated text #278455

    Hi!

    Thank you for the info.

    Please edit the slide then select a layer to edit. Go to the Transition panel. Look for the Easing option, the default setting is EasInOutQuint. Change it to EasInOutCubic. Do this for the Transition In and Transition out section.

    Best regards,
    Ismael

    in reply to: Mobile – Space below Logo #278453

    Hey Marcelo!

    Thank you for using the theme.

    You have a customized header. Please try to add this on Quick CSS or custom.css:

    @media only screen and (max-width: 480px)
    #header_main {
    border-bottom-style: solid;
    border-bottom-width: 30px;
    z-index: 1;
    }
    
    div.header_bottom {
    margin-top: 0;
    }
    }

    Best regards,
    Ismael

    Hey!

    Thank you for the update.

    As of now, there are no plans of adding custom links on the gallery. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page. If there are enough votes for this particular feature, we might add it on the future updates of the theme.

    Cheers!
    Ismael

    Hey!

    Thank you for using the theme.

    In order to migrate the theme successfully and leave the database and theme options intact, please use this plugin: WP MigrateDB or WP MigrateDB PRO

    Refer to this link for more info on how to properly migrate your enfol website from production to development vice versa:
    http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
    https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Cheers!
    Ismael

    Hey Kayzel!

    Thank you for using the theme!

    You can add this on functions.php:

    add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    
    function avia_append_search_nav ( $items, $args )
    	{	
    		if(avia_get_option('header_searchicon','header_searchicon') != "header_searchicon") return $items;
    	
    	    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
    	    {
    	        global $avia_config;
    	        ob_start();
    			$getform = get_search_form(false);
    
    	        $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">'.$getform.'</li>';
    	    }
    	    return $items;
    	}

    Add this on Quick CSS or custom.css:

    #top #searchform > * {
    opacity: 1 !important;
    display: block !important;
    }

    Cheers!
    Ismael

    in reply to: Ubermenu Overflow:hidden problem.. #278442

    Hi!

    Thank you for using the theme.

    It is possible to set the sidebar overflow to visible but it will break the layout of the theme. You can add something like this on Quick CSS or custom.css:

    #top #main .sidebar {
    overflow: visible;
    }

    If you can provide us with a screenshot of what you’re trying to do with the enfold menu, we’ll try to give you the css modifications to get you started.

    Cheers!
    Ismael

    in reply to: Category Page and Layout Builder #278440

    Hey!

    Thank you for the update.

    1.) Not sure if you can expand the excerpt container because it is already set to 100%. You can only decrease the padding around it with this on Quick CSS or custom.css:

    .av-masonry-entry .av-inner-masonry-content {
    padding: 5px;
    }

    2.) Edit the posts and set the post format to “Link”. Add the link of the website on the post content.

    Best regards,
    Ismael

    in reply to: Portfolio Preview Images Not Showing #278438

    Hey!

    Glad it is fixed. Mind sharing the workaround? It might help some of the users having the same issue. Thanks!

    Best regards,
    Ismael

    in reply to: Visual editor not displaying content #278437

    Hey!


    @sureshakula
    : The advance layout builder is working fine when I test it on Chrome Windows 8. Please try to remove browser cache or test it on another browser. This is the test page that I created using the builder: http://voziq.net/wp-admin/post.php?post=3542&action=edit&message=6

    Regards,
    Ismael

    Hey!

    Thank you for the update.

    I will asked the rest of the support team to check it on their tablets. For now, please download the latest version 2.8.1 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/

    Best regards,
    Ismael

    Hey!

    I checked the code that I suggested and I realized it’s wrong. Please use this on header.php instead:

    <body id="top" <?php $browser = strtolower(avia_get_browser()); body_class($style." ".$avia_config['font_stack']." ".$blank.$browser); avia_markup_helper(array('context' => 'body'));?>>
    

    Add the css snippet:

    .safari .avia-fullscreen-slider .avia-slideshow-inner {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    }

    Cheers!
    Ismael

    in reply to: Customizing the Enfold Archive Sidebar #277417

    Hey!

    Thank you for the info.

    Do the same changes on archive.php above but use this instead:

    //get the sidebar
    				echo '<aside class="sidebar sidebar_right  three alpha units" role="complementary" itemscope="itemscope" itemtype="https://schema.org/WPSideBar"><div class="inner_sidebar extralight-border">';
    				dynamic_sidebar('Portfolio Sidebar');
    				echo '</div></aside>';

    Cheers!
    Ismael

    in reply to: Magazine Element not working correctly (URGENT) #277406

    Hey!

    Thank you for the access. Nice touch on the password. :)

    Anyway, I deactivated the plugins and sure enough the magazine started working again even when I’m not logged in. Please check here: http://balitbanghub.dephub.go.id/test-magazine/

    I will leave them deactivated for now, activate them one at a time to find the culprit. My guess is the New User Approve plugin but I’m not sure. Let us know if you find the cause of the issue.

    Regards,
    Ismael

    in reply to: Magazine Element not working correctly (URGENT) #277402

    Hey!

    Thank you for the update.

    Please post the login details here and set it as a private reply. Is it ok if we deactivate the plugins while working on the site?

    Regards,
    Ismael

    in reply to: Visual editor not displaying content #277401

    Hi!

    Thank you for the info.

    Try logging out then login again. Right now, you’re using an old version of the theme, very old. The 2.4.2 version was released on November last year and is not compatible with WordPress 3.9. Please update the theme regularly. Download the latest version 2.8.1 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/

    Cheers!
    Ismael

    in reply to: Magazine Element not working correctly (URGENT) #277399

    Hi!

    Thank you for visiting the support forum and sorry for the delay.

    I’m not sure why the magazine element is not rendering properly. Please try to deactivate the plugins then test it again on another browser. If possible, please create a test page with the magazine element only.

    Cheers!
    Ismael

    in reply to: Place Image to bottom #277392

    Hey icodemarchi!

    Thank you for visiting the support forum.

    You can add a unique selector for each Avia Elements. Edit functions.php, find this code:

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

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Edit any avia elements like the IMAGE element then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-image”.

    Add the custom css class after the elements default selector. Something like this on your custom.css or Quick CSS:

    .avia-image-container.awesome-image {
    position: relative;
    bottom: -150px;
    }

    Adjust the bottom value if necessary.

    Refer to this link for more info: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    in reply to: Customizing the Enfold Archive Sidebar #277391

    Hi!

    I’m sorry, I thought the product page is created using Woocommerce. What is the widget area that you use for the “product page” or portfolio item page?

    Regards,
    Ismael

    Hi!

    Thank you for using the theme!

    The link you provided needs admin rights or permission. You can add this on Quick CSS or custom.css to adjust the default padding of the content:

    .content, .sidebar {
    padding-top: 20px;
    padding-bottom: 20px;
    }

    Cheers!
    Ismael

Viewing 30 posts - 58,201 through 58,230 (of 67,597 total)