Forum Replies Created

Viewing 30 posts - 45,481 through 45,510 (of 66,126 total)
  • Author
    Posts
  • in reply to: Menu over logo #506236

    Hey!

    Please add this in the functions.php file to remove the default flags:

    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
    }

    After that, add this code to place the selector in the top bar:

    add_action('avia_meta_header', 'add_custom_content_to_header');
    function add_custom_content_to_header() {
    	do_action('icl_language_selector');
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Regards,
    Ismael

    in reply to: Child Theme Styles Need Dynamic Version Number #506231

    Hey!

    It’s possible to remove a registered stylesheet then register a new one. Add something like this in the functions.php file:

    add_action( 'wp_enqueue_scripts', 'wp_enqueue_scripts_mod', 20 );
    
    function wp_enqueue_scripts_mod() {
        
        wp_dequeue_style( 'avia-child' );
        wp_deregister_style( 'avia-child' );
    
        wp_register_style( 'new-child-style', get_stylesheet_directory_uri() . '/new.css', false, '1.0.0' ); 
        wp_enqueue_style( 'new-child-style' );
    
    }
    

    Cheers!
    Ismael

    in reply to: Single price | Total price display in the cart #506229

    Hey!

    I’m sorry but I don’t think that’s possible without major customization in the plugin. You can only see the total of the product price if you visit the actual cart page, after you add the product item in the cart. Please contact the woocommerce support, maybe they can modify the quantity button to update the price automatically.

    Cheers!
    Ismael

    in reply to: Contact form button to match Enfolds buttons #506228

    Hey midischool!

    Thank you for using Enfold.

    You could use this in the Quick CSS field in order to adjust the style of the button:

    .avia_ajax_form .button {
        margin: 0;
        padding: 16px 20px;
        border-radius: 2px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        font-weight: normal;
        font-size: 12px;
        min-width: 142px;
        outline: none;
    }

    Adjust the values as you please.

    Best regards,
    Ismael

    in reply to: Mobile logo size – Make it bigger! #506225

    Hi!

    The code above will only affect the the mobile view or screens with resolution lower than 767px.

    Best regards,
    Ismael

    in reply to: Insert Image Home Small slider #506223

    Hey!

    When you land on the following link, please look for the X (Remove Frame) button then navigate to the actual demo page. You can then get the actual demo url: http://kriesi.at/themedemo/?theme=enfold-overview

    Right now, we can only see the enfold overview page which is not related to your inquiry. A screenshot explaining what you’re trying to do will help as well.

    Best regards,
    Ismael

    in reply to: Menu Dropdown #506221

    Hi!

    Thank you for the info. You can start with this in the Quick CSS field:

    .esg-selected-filterbutton {
        background: white !important;
        border: 1px solid #e2e0de;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        font-size: 15px;
        height: inherit;
        line-height: inherit;
        width: 100% !important;
        box-sizing: border-box;
        border: 2px solid gray;
        padding: 5px 20px;
    }
    
    .esg-filter-wrapper.dropdownstyle {
        width: 23%;
        margin-left: 1% !important;
        margin-right: 0 !important;
    }

    Best regards,
    Ismael

    in reply to: Sort portfolio from a to z #506218

    Hey!

    Great! Glad we could help. :)

    Best regards,
    Ismael

    in reply to: Main Content bg settings only affect front page #506213

    Hi!

    For clarification, the Main Content refers to the section inside a page. We applied a background image in the General Styling > Alternate Content panel as well and then created a test page to explain it better: http://bernhard-kaeferboeck.at/test/

    The test page contains two color sections, first color section’s Section Bacground > “Section Colors” option is set to “Main Content” while the other section is set to “Alternate Content”. See how it applies the background set on General Styling > Alternate Content and General Styling > Main Content panel. If you want to see these backgrounds on different pages, you need to add a color section element then set Section Bacground > “Section Colors”.

    Regards,
    Ismael

    in reply to: Structured data problem #506210

    Hey A_Niloo!

    Thank you for using Enfold.

    I’m not exactly sure what you’re trying to do here but if you want to modify the schema.org markup, you can use the “avf_markup_helper_attributes” filter. Example here:

    add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);
    
    function avf_markup_helper_attributes_modified($attributes, $args) {
    	if($args['context'] == 'entry_time') {
    		$attributes['itemprop'] = 'dateModified';
                    $attributes['datetime'] = get_the_time('c');
    	}
    	
    	return $attributes;
    }

    Look for the includes > helper-markup.php file for reference.

    Cheers!
    Ismael

    in reply to: Blog Posts displays only excerpt instead of full content #506202

    Hey!

    Looks like you use the “more” tag in the posts. Unfortunately, the tag will override the Blog Content length option. You can remove the more tag in the posts then use the Excerpt box instead.

    Cheers!
    Ismael

    Hey!

    Again, you can use the advance layout builder to rebuild those pages. Use the woocommerce page shortcodes in a text or code block. Example:

    [woocommerce_checkout]
    

    You can then add more content. Refer to this link for more info regarding the page shortcodes: http://docs.woothemes.com/document/woocommerce-shortcodes/

    Best regards,
    Ismael

    in reply to: resize image box on MOBILE #506179

    Hey Mario!

    Thank you for using Enfold.

    Add this in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .av-flex-cells .av_one_fourth {
        padding-left: 0% !important;
        padding-right: 0% !important;
        width: 50%;
        float: left;
    }}

    Best regards,
    Ismael

    in reply to: Video previews stopped working #506178

    Hi Andy!

    Thank you for using Enfold.

    Please try to update the theme to the latest version, 3.3.2. If it doesn’t fix the issue, post the login details here so that we could take a look in the dashboard.

    Best regards,
    Ismael

    in reply to: How to fit the images in a correct width and height #506177

    Hi!

    Thank you for the info. You can set the images as Custom Background Image of the grid row cells.

    Regards,
    Ismael

    in reply to: Rollover Bild als Mouseover Effekt #506175

    Hi!

    You can actually accomplish a grayscale effect via css. Please refer to the solution provided here:

    http://stackoverflow.com/questions/609273/convert-an-image-to-grayscale-in-html-css
    http://www.karlhorky.com/2012/06/cross-browser-image-grayscale-with-css.html

    Cheers!
    Ismael

    in reply to: thumbnails size in grid portfolio #506173

    Hey!

    1.) There’s a function called “add_custom_script” in the parent theme’s functions.php file. We renamed it for you. You can now activate the child theme’s functions.php file. :)

    Best regards,
    Ismael

    in reply to: permissions on dynamic_avia directory #505877

    Hey!

    There’s a lot of issues with general styling options not updating because of file permissions. I think this is one of the reasons why Kriesi chose to set it 0777 to give full permission to user groups. There are no sensitive codes or infos in that directory so setting it to 777 is safe. Aside from that directory and the custom fonts, the theme doesn’t create or modify any folders.

    Regards,
    Ismael

    in reply to: Blog Posts displays only excerpt instead of full content #505874

    Hi!

    I was able to login to the dashboard but the user doesn’t have access to the theme options. Please set the user as admin.

    Regards,
    Ismael

    in reply to: Contactform translate problem #505873

    Hi 2funky!

    Thank you for using Enfold.

    Please use this plugin to translate the strings: https://wordpress.org/plugins/loco-translate/

    Regards,
    Ismael

    Hi Simon!

    Thank you for using Enfold.

    You can use this in the Quick CSS field to adjust the position of the text:

    .icl_post_in_other_langs {
        position: absolute;
        bottom: 10px;
    }

    This will put the element below the actual post.

    Regards,
    Ismael

    in reply to: Glassy effect on header – issue #505871

    Hi!

    You can try this:

    #top .av_header_transparency #header_meta {
        background: rgba(255,255,255,0.25);
        box-shadow: none;
        border-bottom: 1px solid rgba(255,255,255,0.25);
    }

    Cheers!
    Ismael

    in reply to: My account ICON #505870

    Hi!

    We modified the code in the functions.php file a bit. Please remove browser cache then reload the page: http://www.rewavelab.com/

    Regards,
    Ismael

    in reply to: Video not working #505868

    Hey!

    I’m not sure if this is going to help but please edit header.php, look for this code:

    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    

    Below, add this code:

    <?php if(preg_match('/(?i)msie [9-11]/',$_SERVER['HTTP_USER_AGENT'])) { echo '<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>'; } ?>
    

    Cheers!
    Ismael

    in reply to: Highlight Main Menu Item when Sub Menu level 2 is clicked? #505863

    Hi!

    Add the “.active-parent-item” selector in your css modifications:

    #header .current_page_item a, #header .main_menu a:hover, .active-parent-item {
        background-color: #de1a17 !important;
        -webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        color: white !important;
        background-color: #BF0F13;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#ED161C), to(#BF0F13));
        background-image: -webkit-linear-gradient(top, #ED161C, #BF0F13);
        background-image: -moz-linear-gradient(top, #ED161C, #BF0F13);
        background-image: -ms-linear-gradient(top, #ED161C, #BF0F13);
        background-image: -o-linear-gradient(top, #ED161C, #BF0F13);
        background-image: linear-gradient(to bottom, #ED161C, #BF0F13);
    }

    Regards,
    Ismael

    in reply to: Insert Image Home Small slider #505860

    Hey!

    The demo link is incorrect (http://kriesi.at/themedemo/?theme=enfold-overview). It is the link to the theme overview page. Please close the frame then give us the actual demo page url.

    Best regards,
    Ismael

    in reply to: Page in widget mod based on page id #505851

    Hi!

    Replace the code with this:

    .html_header_top.html_header_topbar_active.html_header_sticky .page-id-4994 #main {
        padding-top: 0;
    }
    
    .page-id-4994 .av_header_top {
    display:none !important;
    }
    
    .page-id-4994 .header-scrolled {
        display: block !important;
    }

    Best regards,
    Ismael

    in reply to: Enfold Popup windows #505849

    Hi!

    Sorry for the delay. Regarding the “popup” question, you can try to open an inline content in a lightbox. Follow the instructions here:

    https://kriesi.at/support/topic/inline-content-in-magnific-popup/#post-289356
    https://kriesi.at/support/topic/open-form-in-a-lightbox-popup/#post-378103

    Regards,
    Ismael

    in reply to: Website is taking 20 secs to load each page #505847

    Hey!

    Site loads fairly fast on my end. Approximate loading speed is 3-5 secs. You can also test it on pingdom: http://tools.pingdom.com/fpt/#!/ecT0oX/http://www.ffei.co.uk

    Did you test it on a different computer? Or maybe on a different network, net cafe perhaps, somewhere?

    Best regards,
    Ismael

    in reply to: CSS Code showing up in Google results #505845

    Hey!

    Please use this plugin to specify the meta tags (description, title, robots etc) of the pages: https://wordpress.org/plugins/wordpress-seo/

    You might need to ask google to recrawl the url or wait for a few days before google re-update the page info: https://support.google.com/webmasters/answer/6065812?hl=en

    Best regards,
    Ismael

Viewing 30 posts - 45,481 through 45,510 (of 66,126 total)