Forum Replies Created

Viewing 30 posts - 55,201 through 55,230 (of 67,482 total)
  • Author
    Posts
  • in reply to: Problem display plugin [audio] WordPress #334214

    Hi!

    Yes, the problem comes from the tabs. Did you try to use the css code above? I modified it a bit specifically for tabs, please try this:

    body .tab_inner_content .mejs-controls div.mejs-time-rail, body .tab_inner_content .mejs-controls div.mejs-time-rail span.mejs-time-total {
    max-width: 435px !important;
    }

    Regards,
    Ismael

    in reply to: Single Event Page Sidebar #334210

    Hey!

    Thank you for that. You can edit config-events-calendar > views > single-events.php if you want to modify the meta container. Look for the av-single-event-meta-bar-inner container. You can also use the code above to disable the theme’s plugin configuration.

    Regards,
    Ismael

    in reply to: ANNOYING PRODUCT CATEGORY #334208

    Hi!

    Not sure where that category is coming from. Please add this on Quick CSS or custom.css:

    #wqo_options select option[value="0"] {
    display: none !important;
    }

    Cheers!
    Ismael

    in reply to: Parallax problem #334205

    Hey!

    The parallax background looks like this:

    I’m not sure what’s wrong with it. Can you please provide a screenshot of the issue?

    Cheers!
    Ismael

    in reply to: coloursection break my boxedlayout #334196

    Hi set_carsten!

    Thank you for using Enfold.

    Please switch the advance layout builder to debug mode. Edit function.php, find this code:

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

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder. Copy it then place on pastebin.com. We would like to reproduce the issue on our installation. Did you add any html codes? Make sure that you close the tags properly.

    Regards,
    Ismael

    in reply to: Special Heading Color isn't working #334194

    Hi!

    Do you have any cache or minify plugins? Please try to disable them while working on the site. See if that changes anything.

    Regards,
    Ismael

    in reply to: Avia Layout Builder no loading again #334192

    Hey!

    Looks like the update doesn’t go through successfully. Please download the latest version Enfold 3.0.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

    in reply to: IE8 images are squashed #334191

    Hi anma!

    Thank you for the screenshot.

    We will need to see the actual website. Make sure that you’re running Enfold 3.0.1 on WordPress 4.0.

    Regards,
    Ismael

    in reply to: Contact Form Issue #334190

    Hey Luke86!

    Thank you for using Enfold.

    Please use this plugin: https://wordpress.org/plugins/easy-wp-smtp/

    Best regards,
    Ismael

    Hi!

    Please create a test page or template that is using the html structure of the tab instead of shortcode. We’ll check it. If possible, please post the whole template code on pastebin.com.

    Best regards,
    Ismael

    in reply to: Blog page not recognized correctly, WPML, #334183

    Hi Daniela!

    Thank you for using Enfold.

    Did you set the blog on Enfold (EN) > Theme Options > Where do you want to display blog? setting?

    Regards,
    Ismael

    in reply to: Logo gets larger on smaller screen sizes #334182

    Hey!

    Try this to adjust the left position:

    @media only screen and (max-width: 767px) {
    .responsive .logo {
    float: left;
    position: relative;
    left: -15px;
    }
    }

    Regards,
    Ismael

    in reply to: Column issue in mobile view #334181

    Hey Albulushi!

    Thank you for using Enfold.

    The links leads me to a 404 page. Please check.

    Regards,
    Ismael

    in reply to: Middle 1/5 column is distorted on home page #334180

    Hi!

    Please try this:

    .home .flex_column.avia-builder-el-15, .home .flex_column.avia-builder-el-17, .home .flex_column.avia-builder-el-19, .home .flex_column.avia-builder-el-22, .home .flex_column.avia-builder-el-24, .home .flex_column.avia-builder-el-27, .flex_column.av_one_fifth.avia-builder-el-18.el_after_av_image.el_before_av_one_fifth {
    margin: 0 10px !important;
    width: 17.2% !important;
    }

    Best regards,
    Ismael

    Hi rgruber!

    Thank you for using Enfold.

    Please refer to these links on how to get the categories and tags of posts:

    http://codex.wordpress.org/Function_Reference/get_the_tags
    http://codex.wordpress.org/Function_Reference/get_the_category

    If you’re going to modify the shortcodes, please use a child theme. Add this on functions.php:

    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;
    }

    Create a folder called “shortcodes”. Add the masonry_entries.php there.

    Best regards,
    Ismael

    in reply to: Responsive Visibility #334174

    Hi Albulushi!

    Thank you for using Enfold.

    You can add a unique selector to any elements on the advance layout builder except for column layouts. Refer to this link for more info:
    http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Add a unique css selector on “Custom Css Class” field. For example, add “hide-mobile”.

    You can add something like this on your custom.css or Quick CSS to hide those elements on mobile device:

    @media only screen and (max-width: 767px) {
    .hide-mobile {
    display: none;
    }
    }

    Regards,
    Ismael

    in reply to: Import of new Demos & Header on Mobiles #334173

    Hi koelnermusikakademie!

    Thank you for using Enfold.

    1.) Importing demos will override your theme options. You will need to create the coming soon demo manually.

    2.) Please use this:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #header {
    position: fixed;
    }
    }

    Regards,
    Ismael

    in reply to: Enfold Update 3.0.1 was broken down all my website! PANIC! #334172

    Hey!

    Thank you for using Enfold.

    You need to override all theme files. A lot of files have been changed, selective update won’t work. If the auto update is not working, try logging out then in again.

    Cheers!
    Ismael

    Hi!

    Please set up the language selector on WPML > Display the language switcher in the WP Menu. Select your main menu.

    Regards,
    Ismael

    Hey!

    I would like to check the page again but there is a Forbidden error. Please post the login details here. We would like to check it. I’ll ask the rest of the support team to take a look.

    Cheers!
    Ismael

    in reply to: Ver 3 #334167

    Hey!

    Thank you for the info.

    Site looks great on my browsers. What is the screen resolution of your monitor? Please try to toggle the width settings on Enfold > General Layout > Dimensions panel. Maybe the settings is stuck. Save changes.

    Regards,
    Ismael

    Hi!

    How did you add the custom post types? Add this on functions.php:

    add_theme_support('add_avia_builder_post_type_option');
    add_filter('avf_builder_boxes','enable_boxes_on_posts');
    function enable_boxes_on_posts($boxes) {
    	$boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page','post', 'portfolio'), 'context'=>'normal', 'expandable'=>true );
    	$boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page','post', 'portfolio'), 'context'=>'side', 'priority'=>'low');
    	$boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('page','post','portfolio'), 'context'=>'normal', 'priority'=>'high' );
    	
    	return $boxes;
    }

    Append the name of the custom post type on these line:

    'page','post', 'portfolio'
    

    Best regards,
    Ismael

    in reply to: Shrinking header on Tablet #334162

    Hey!

    Try this on Quick CSS or custom.css to increase the size of the shrink header:

    .header-scrolled .container, .header-scrolled .main_menu ul:first-child > li a, .header-scrolled .logo, .header-scrolled .logo a, .header-scrolled .logo a img {
    height: 90px !important;
    line-height: 90px !important;
    max-height: 90px !important;
    }

    If possible, please reduce the size of the black logo.

    Best regards,
    Ismael

    in reply to: add custom image over tagged portfolio item in grid #334160

    Hi kerriotoo!

    Thank you for using Enfold.

    I’m sorry but I don’t think this is going to be an easy fix. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or request the feature on our Feature Requests page.

    If you can provide a screenshot or an example of what you’re trying to do, we’ll try to help.

    Best regards,
    Ismael

    in reply to: Breadcrumbs not working #334159

    Hi!

    There is no option to hide just the title but you can use this on Quick CSS or custom.css:

    #top .alternate_color.title_container .main-title {
    display: none;
    }

    Cheers!
    Ismael

    Hey TheProductionHouseEvents!

    Thank you for the heads up.

    Please use this on Quick CSS or custom.css to resize the submenu on smaller screen size:

    @media only screen and (max-width: 1113px) {
    #top .av-subnav-menu > li > a {
    padding: 0px 5px 0px 7px;
    font-size: 11px;
    }
    }

    Cheers!
    Ismael

    in reply to: GTB – Header font size and colort #334156

    Hi Mohan-Iyer!

    Thank you for using Enfold.

    Did you use the Main Menu Links on the Advanced Styling panel? Please post the link to the website here. We would like to check it.

    Cheers!
    Ismael

    in reply to: Using a different logo for mobile view? #334155

    Hi!

    I would like to check the page but this link isn’t working, http://www.rcgauto.staging.wpengine.com. (hosted on WPengine)

    Regards,
    Ismael

    in reply to: Found Bug in Text Block when adding Link… #334154

    Hey dmoravec!

    Thank you for using Enfold.

    Maybe you forgot to close the link code properly? Please post the link code and the url to the website here. We would like to check it.

    Regards,
    Ismael

    in reply to: Blog Comments #334153

    Hey!

    You can go to Settings > Discussions to disable the comments section. Or add this on Quick CSS or custom.css:

    .comment-entry.post-entry {
    display: none;
    }

    Best regards,
    Ismael

Viewing 30 posts - 55,201 through 55,230 (of 67,482 total)