Forum Replies Created

Viewing 30 posts - 60,271 through 60,300 (of 67,460 total)
  • Author
    Posts
  • in reply to: LayerSlider version #234697

    Hi hareljann!

    Thank you for using the theme. I hope you’re doing great.

    The current version is Version: 4.6.5 and there is no plan of upgrading it yet. You can use the updated version as a standalone plugin but you need to deactivate the default layerslider. Add this on functions.php:

    add_theme_support( ‘deactivate_layerslider’ );
    

    Best regards,
    Ismael

    in reply to: Mouse over product show filename in stead of ALT tekst #234695

    Hi!

    You can edit js > avia.js to prevent the title from showing. Find this code on line 5:

    $(document).ready(function()
        {
            var aviabodyclasses = AviaBrowserDetection('html');
    

    Add this code below:

    $('#top .product div.images img').attr('title', '');
    

    Regards,
    Ismael

    Hey!

    Glad it worked. :)

    Regards,
    Ismael

    in reply to: How to change in portfolio "All"? #234691

    Hey Soapmarine!

    Thank you for using the theme. I hope you’re doing great.

    Please add this on functions.php:

    add_filter('avf_portfolio_sort_first_label', 'avf_change_portfolio_sort_first_label', 10, 1);
    
    function avf_change_portfolio_sort_first_label($first_item_name) {
    	$first_item_name = __('Todo','avia_framework' );
    	return $first_item_name;
    }

    Best regards,
    Ismael

    in reply to: How to customise template-builder.php ? #234688

    Hi pako69!

    How are you? I hope you’re doing well today.

    The theme is using shortcodes to build a page, template-builder.php is merely a wrapper to hold the shortcode. You can edit the shortcodes on config-templatebuilder > avia-shortcodes folder. Add this on the child theme’s 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;
    }

    You can create a “shortcodes” folder inside the child theme’s folder then place the shortcodes file inside.

    Best regards,
    Ismael

    in reply to: Issue with Logo in Mobile View #234685

    Hey stacyr311!

    How are you? I hope you’re doing well today.

    Please add this below:

    @media only screen and (max-width: 480px) {
    .responsive .logo img {
    margin: 0;
    max-width: 100%;
    }
    }

    Cheers!
    Ismael

    Hey Kathy!

    Thank you for using the theme. I hope you’re doing great.

    That is weird. Can you please give us a link to the actual page? I can’t reproduce it on my end. Did you add any plugins prior to the issue?

    Best regards,
    Ismael

    in reply to: Social Icon Shortcodes #234683

    Hey fgrippe!

    How are you? I hope you’re doing well today.

    The shortcode for the actual social icons does not exist but there is a shortcode to generate the font icon of the social icons. Go to a post or page then use the insert shortcode wand. Insert the Icon elements inside the Contents element panel.

    Best regards,
    Ismael

    in reply to: Contact Form Message Font #234680

    Hi mattmorse!

    Thank you for using the theme. I hope you’re doing great.

    Please try this on Quick CSS or custom.css:

    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
    font: 13px "Marcellus", serif;
    }

    Did you add the google font using Google Font filter on functions.php?

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Marcellus'] = 'Marcellus';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Marcellus'] = 'Marcellus';
    return $fonts;
    }

    Best regards,
    Ismael

    in reply to: Background appearing above color sections #234677

    Hi!

    How did you set up the page? We really need to see the actual website so that we can inspect it. You can create a separate color separation below the content then place the ocean background on it.

    Best regards,
    Ismael

    in reply to: Ajax Search Icon Size and Results Font #234676

    Hi mattmorse!

    Thank you for using the theme. I hope you’re doing great.

    The search icon shows fine on our end. Can you please give us a link to the actual website? I’m not really sure if I understand the font thing. Please elaborate, a screenshot of will help.

    Best regards,
    Ismael

    in reply to: Coming Soon Page #234671

    Hey themeforesttony!

    Thank you for using the theme. I hope you’re doing great.

    Create a page then look for Page Attributes > Template > choose the “Blank” template. Assign this page as frontpage on Enfold > Theme Options > Frontpage Settings.

    Regards,
    Ismael

    in reply to: Layer Slider not displaying #234669

    Hey clcintx!

    Thank you for using the theme. I hope you’re doing great.

    The links are not loading on my end. Please increase the wordpress php memory limit.
    http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,
    Ismael

    in reply to: Backs Up & Revisions #234668

    Hi addwebtoday!

    Thank you for using the theme. I hope you’re doing great.

    Do you have the latest version of Enfold? Kriesi fixed the revisions for posts and pages.

    Best regards,
    Ismael

    in reply to: Remove bullits in front of Ajax tree #234667

    Hey Gee Are!

    How are you? I hope you’re doing well today.

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

    #wpfb-filebrowser-2 ul.disc, #wpfb-filebrowser-2 .entry-content-wrapper ul {
    list-style: none outside !important;
    }

    Regards,
    Ismael

    Hi Philippe!

    Thank you for the question. I hope all is well with you today.

    You can edit the footer widgets on Appearance > Widgets > look for the Footer – columns widget areas.

    Cheers!
    Ismael

    in reply to: Incompatibility: Updated WooCommerce and jQuery/Enfold #234659

    Hi!

    How are you? I hope you’re doing well today.

    You can use this plugin: http://wordpress.org/plugins/jquery-updater/

    Regards,
    Ismael

    in reply to: Changing "home" in breadcrumb #234656

    Hey!

    Thank you for using the theme. I hope you’re doing great.

    Please add this on functions.php:

    add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
    function avia_change_home_breadcrumb($args){
     $args['show_home'] = 'CHANGE THE HOME TEXT HERE';
    return $args;
    }

    Regards,
    Ismael

    in reply to: WooCommerce Product Slider – Broken href #234653

    Hey Tom!

    How are you? I hope you’re doing well today.

    Did you add any plugins prior to the issue? You can edit the code on config-woocommerce > config.php, find this code on line 217:

    $output .= "<a class='button show_details_button' href='".get_permalink($product->id)."'><span ".av_icon_string('details')."></span>  ".__('Show Details','avia_framework')."</a>";
    

    I don’t see anything wrong with it.

    Best regards,
    Ismael

    in reply to: Enfold > Map size #234651

    Hi!

    Thank you for using the theme. I hope you’re doing great.

    You can add this on your custom.css or Quick CSS to remove the map data:

    .gmnoprint {
    display: none !important;
    }

    Use this one to remove the padding:

    #avia_google_maps-2 {
    padding: 0;
    }

    Cheers!
    Ismael

    in reply to: Strange behavior of Enfold #234644

    Hey tomgraziani!

    How are you? I hope you’re doing well today.

    What do you mean by “it can’t connect to the web”? I checked the website and I can see the images just fine.

    Regards,
    Ismael

    in reply to: Icon Box Title Links Don't Have Link Color #234559

    Hi auroradesignstudio!

    Thank you for using the theme. I hope you’re doing well today.

    Please give us a link to the website. We need to inspect it. Add this on Quick CSS:

    .iconbox .iconbox_content .iconbox_content_title a:hover {
    color: red !important;
    }

    Change the color value.

    Cheers!
    Ismael

    • This reply was modified 12 years ago by Ismael.
    in reply to: Black Header / Menu in IE9 #234555

    Hey!

    The suggestion above will also exclude the custom.css file. Anyway, glad you fixed it. :)

    Best regards,
    Ismael

    in reply to: Two Line Menu Option #234554

    Hey aribann!

    Thank you for using the theme. I hope you’re doing well today.

    You can follow the instructions that I provided there. Enfold doesn’t have a feature yet to automatically create a two line menu which imo not a common feature use for websites. If you’re talking about the walker menu, you have to hire a freelance developer to add it on Enfold.

    Best regards,
    Ismael

    Hey neillin!

    How are you? I hope you feel great today. Thank you for the question.

    Please give us a link to the website. Try to flush the permalink settings on Settings > Permalink. Click the “Save” button once, see if the portfolio items are fix.

    Cheers!
    Ismael

    Hey mdekievit!

    Thank you for using the theme. I hope you’re doing well today.

    Can you please give us a link to the actual page with the grid content? We need to inspect it.

    Best regards,
    Ismael

    in reply to: Dropdown background colour #234551

    Hey Rupert!

    Hope you’re feeling well today! Thank you for using the support forum.

    It requires username and password to see the website. Can you please post it privately here?

    Best regards,
    Ismael

    in reply to: Call to Action Button in Layer Slider #234549

    Hi fryec1135!

    How are you? I hope you feel great today. Thank you for the question.

    You can generate the button shortcode on a post using the insert shortcode wand then place it on layer slider using the Div / Video field.

    Regards,
    Ismael

    in reply to: how to set more image size to be choosen?? #234540

    Hey remix1998!

    Thank you for using the theme. I hope you’re doing well today.

    Before you insert the image, please look for “ATTACHMENT DISPLAY SETTINGS”. Choose the thumbnail size that you want. Make sure that you insert the image on a column layout to constrain the size. The image width is set to 100% via css, it will inherit the size of the container.

    Best regards,
    Ismael

    in reply to: Background appearing above color sections #234539

    Hi wsmith187!

    Thank you for using the theme. I hope you’re doing well today.

    I’m not really sure if I understand you correctly. Layers on the web doesn’t exactly work like photoshop. Please give us a link to the website and a screenshot of what you’re trying to do.

    Best regards,
    Ismael

Viewing 30 posts - 60,271 through 60,300 (of 67,460 total)