Forum Replies Created

Viewing 30 posts - 53,851 through 53,880 (of 67,499 total)
  • Author
    Posts
  • in reply to: How do I change the title of the blog to something else? #352399

    Hi!

    Thank you for using Enfold.

    The breadcrumb looks fine. It shows the actual title of the blog page. I can also see the Firm Advisories menu item on the home page.

    Regards,
    Ismael

    in reply to: Button top margin misbehaving #352398

    Hey Haybazak!

    Thank you for using Enfold.

    Add this on Quick CSS:

    div#av_section_3 .flex_column.av_one_fourth.avia-builder-el-30.el_after_av_one_fourth.el_before_av_one_fourth.column-top-margin .avia_textblock > p:first-child {
    display: none;
    }

    To make the code cleaner, please refer to this link on how to add custom css class on builder elements: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    in reply to: WPML Customization #352397

    Hi!

    Thank you for using Enfold.

    Can you please provide a screenshot on how you want the switcher to look like? You can use imgur, dropbox etc. Additionally, for future reference, please avoid bumping the thread because it will only take us longer to respond on your inquiry. Thanks.

    Best regards,
    Ismael

    in reply to: Adding Graphic to Header Area #352395

    Hey!

    Place the code at the very bottom of Quick CSS file:

    #top .social_bookmarks_rss a { color: #ffa133 !important; }
    #top .social_bookmarks_gplus a { color: #de5a49 !important; }
    #top .social_bookmarks_facebook a { color: #37589b !important; }

    Regards,
    Ismael

    in reply to: Enbedding google Map URL #352393

    Hi grwebs!

    Thank you for using Enfold.

    Are you trying to embed a google map? Please use the theme’s google map element or use the embed code provided by google maps. Please refer to this link: https://support.google.com/maps/answer/3544418?hl=en

    Best regards,
    Ismael

    Hey!

    Can you please provide us a link to the actual blog page? The css code works fine on our installation.

    Regards,
    Ismael

    in reply to: Language switcher #352389

    Hi spadalbert!

    Thank you for using Enfold.

    Use this on functions.php to remove the default flag configurations:

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

    Add this to render the default language switcher:

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

    Move the position of the switcher using css.

    Regards,
    Ismael

    in reply to: Making Product Tabs font Larger #352384

    Hey None!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css:

    #top div div.product .woocommerce-tabs .panel {
    font-size: 18px;
    line-height: 1.6em;
    }

    Regards,
    Ismael

    Hi None!

    Thank you for using Enfold.

    You can use this in the functions.php to adjust the position of the product tabs.

    add_action('init', 'avf_move_product_output');
    function avf_move_product_output() {
    	remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
    	remove_action(    'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
    	add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 5 );
    }

    Cheers!
    Ismael

    Hi None!

    Thank you for using Enfold.

    You can adjust the default single product thumbnail size on Woocommerce > Settings > Products > Product Image Sizes. Adjust the dimension of the Single Product Image. Upload the image again or regenerate the thumbnails.

    Cheers!
    Ismael

    in reply to: main menu underline on homepage #352377

    Hi Joe!

    Thank you for using Enfold.

    You can add this on Quick CSS or custom.css:

    .html_header_top .header_color .main_menu ul:first-child >li > ul {
    border-top: none;
    }

    Cheers!
    Ismael

    in reply to: Shortcode or function to add search in custom locations #352376

    Hi jporven!

    Thank you for using Enfold.

    I’m sorry but there is no shortcode to show the search box on custom locations. You can use the default get_search_form() function on the template files (single.php, page.php etc).

    Best regards,
    Ismael

    in reply to: Photography demo – Main background color and slider image #352375

    Hi!

    Thank you for using Enfold.

    Glad you figured it out. Regarding the portfolio slider, is that fixed as well? If not, please provide a screenshot of the issue because I’m really not sure what you mean by “portfolio slider”.

    Regards,
    Ismael

    in reply to: layerslider not showing #352374

    Hey albe67!

    Thank you for using Enfold.

    I’m sorry but we won’t be able to help unless we can see the actual live website. Please try to deactivate all plugins then test the slider again.

    Best regards,
    Ismael

    Hi!

    You have to dequeue or unregister the default avia.js file first. Did you add this code on functions.php? If not, please add it to enable the theme to recognize the avia.js file on the child theme.

    if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    	wp_dequeue_script('avia-default');
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, true);
    	wp_enqueue_script( 'avia-default-child' );
    }

    Best regards,
    Ismael

    in reply to: Product Archive Page Images and Single Page Image Woo #352366

    Hi!

    I’m sorry but I can’t find anything wrong with the product category pages images. Can you please provide a screenshot of the issue? Like I said, you can change the product thumbnail sizes on WooCommerce > Settings > Products > Product Image Sizes panel. Upload the images again or use an image regeneration plugin.

    Best regards,
    Ismael

    in reply to: Widget Bug Enfold #352364

    Hi!

    Which page shows this widget? I checked all pages including the one with the sidebar but I don’t see any contact form.

    Regards,
    Ismael

    in reply to: Icons in icon list not showing #352361

    Hi!

    Glad it worked. Thank you for choosing Enfold. :)

    Best regards,
    Ismael

    in reply to: How to remove label- woocommerce cart #352360

    Hey!

    I’m sorry but the screenshot you provided is expired. Please use imgur, dropbox or clipular to post a screenshot. The link you provided is incorrect.

    Regards,
    Ismael

    in reply to: logo messed up in IE 8 and Safari #352359

    Hey!

    Thank you for using Enfold.

    I checked the site on IE8 and the logo looks fine.

    Regards,
    Ismael

    in reply to: Table not fully responsive #352358

    Hi elames!

    Thank you for using Enfold.

    Looks like you checked it by adjusting the browser window. It wouldn’t look that way on an actual tablet device. Have you tried it?

    Regards,
    Ismael

    in reply to: Blog Menu Item not showing on Home Page #352355

    Hey connect4consulting!

    Thank you for using Enfold.

    I’m sorry but you’re using an old version of the theme, 2.9.2. 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/

    Did you set the main menu as Enfold Main Menu on Appearance > Menus panel? Try this to adjust the main menu position:

    ul#avia-menu {
    width: 40%;
    margin: auto;
    left: -10%;
    position: relative;
    }

    Use media queries to adjust it on different screens.

    Cheers!
    Ismael

    in reply to: Language Switcher after Search icon #352350

    Hey MathiasVie!

    Thank you for using Enfold.

    Please use this on functions.php:

    add_action('ava_inside_main_menu', 'ava_main_menu_addition');
    function ava_main_menu_addition() {
    	pll_the_languages();
    }

    Regards,
    Ismael

    in reply to: all languages in search result #352348

    Hi MathiasVie!

    Thank you for using Enfold.

    Entries from other languages should be excluded by default when using the search function. Please post the website url here. We would like to check it. Make sure that you’re running Enfold 3.0.2 and the latest version of WPML.

    Cheers!
    Ismael

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

    Hey!

    This works fine on our installation. Please post the login details here and set it as a private reply. I tried to login using the link and login credentials above but it’s not working.

    Regards,
    Ismael

    in reply to: Advanced Layerslider Not Showing Up #352341

    Hey Hatchman33!

    Thank you for using Enfold.

    We will need to see the actual website. Please post the url here. Did you subscribe to cloudflare?

    Regards,
    Ismael

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

    Hi!

    You can generate the shortcode on a temporary post or page then paste it on the table content.

    Best regards,
    Ismael

    Hey!

    I’ll ask Kriesi to take a look. Not sure why the specific coordinates (long=’35.670641′ lat=’140.622130′) is not working. Please wait for his response.

    Cheers!
    Ismael

    in reply to: style sub menu in content area #352037

    Hi!

    You can switch the builder to debug mode then copy the shortcode of the Fullwidth submenu: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Use do_shortcode function on the template files. Regarding the menu styling, try this:

    #top .av-subnav-menu > li:first-child, #top .av-subnav-menu > li:first-child a {
    background: gray;
    color: blue;
    border: none;	
    }

    Regards,
    Ismael

    in reply to: Change Frame Color on Full Width Easy Slider #352034

    Hey codemode!

    Thank you for using Enfold.

    You can use this on Quick CSS:

    .caption_framed .slideshow_caption .avia-caption-content p, .caption_framed .slideshow_caption .avia-caption-title, .avia-caption .avia-caption-content p, .avia-caption .avia-caption-title {
    background: #000;
    filter: alpha(opacity = 80);
    background: rgba(0, 0, 0, 0.5);
    }

    Cheers!
    Ismael

Viewing 30 posts - 53,851 through 53,880 (of 67,499 total)