Forum Replies Created

Viewing 30 posts - 62,341 through 62,370 (of 66,027 total)
  • Author
    Posts
  • in reply to: Change blog Grid template to use thumbnails #175478

    Hi ttem!

    The blog grid layout use the portfolio thumbnails set on functions.php

    $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)

    You can change the size then regenerate the thumbnails.

    Best regards,
    Ismael

    in reply to: mobile menu icon changed position #175475

    Hey!

    I’m not sure if I’m following the thread correctly but this is what I see on mobile view. The menu toggle icon is correctly displayed.

    Cheers!
    Ismael

    in reply to: too many dots on easy slider : can I have them disappear ? #175474

    Hello totofunk!

    I guess you already found a fix. You can add this on your custom.css or Quick CSS:

    .avia-slideshow-dots {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Woocommerce catalog page #175473

    Hey alkross!

    You can use the Advance Layout Builder. Create a page then add the Product Grid or the Product Slider under Plugin Additions panel. Don’t set a Shop Base Page on Woocommerce Settings.

    Cheers!
    Ismael

    in reply to: Portfolio page Permalinks broken (dual language) #175472

    Hey swissfilm!

    I visited the site’s portfolio page and switch from English to Deutch. It doesn’t give me a 404 page. Have you tried this on a different browser? Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: Enfold menu question #175468

    Hi pmconsulting!

    Can you please give us a link to the website?

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

    .current_page_ancestor.active-parent-item > a {
    color: red;
    }

    This is for the current submenu item:

    .current_page_ancestor.active-parent-item > .sub-menu .current-menu-item a {
    color: red !important;
    }

    Regards,
    Ismael

    in reply to: EASY SLIDER: image name = file name when hovering it #175442

    Hey colorit2!

    Browsers render the title attribute differently. We really don’t have any control over them. You can edit js > avia.js, find this code on line 5-6:

    $(document).ready(function()
        {

    Add this code below:

    $(".avia-slideshow li img").attr('title', '');

    Remove browser cache then reload the page a few times.

    Best regards,
    Ismael

    in reply to: Updating theme to latest version #175440

    Hi lpfa!

    Please copy the css on a notepad or any text editors then update the theme. You can paste it back on the Quick CSS field after the update. Actually, you won’t lose them when you update the theme but creating a backup is good. Please watch this video on how to update the theme via FTP. https://vimeo.com/channels/aviathemes/64927356

    Cheers!
    Ismael

    in reply to: Enfold Woo Product Image CSS #175436

    Hey NavGrief!

    Can you please give us a link to the product page with the huge images? Have you tried to regenerating the thumbnails?

    Regards,
    Ismael

    in reply to: Portfolio #175431

    Hello!

    This is not a theme issue. Please search google for possible WAMP application issues.

    http://forum.wampserver.com/read.php?2,70321

    Best regards,
    Ismael

    Hi!

    If you want to change the style of a specific page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.

    .page-id-2251 .main_color h3.iconbox_content_title {
    color: white;
    }

    Best regards,
    Ismael

    in reply to: Fontello menu icon baseline adjust #175429

    Hi ubercool!

    Can you please give us a link to the website and the demo link with the “triangle”?

    Cheers!
    Ismael

    in reply to: Suche-Icon wird im Safari nicht richtig angezeigt #175424

    Hey subra68!

    You’re using a very old version of theme. Please download Enfold 2.3.2 on your themeforest account then override the theme files via FTP. https://vimeo.com/channels/aviathemes/64927356

    Regards,
    Ismael

    in reply to: Still not getting Ajax to work #175423

    Hi!

    The featured image should be there by default. Please upgrade WordPress to the latest version. Edit the portfolio item again, please check if the “Featured image” is enabled. It should be place under Layout option.

    Best regards,
    Ismael

    Hello!

    I’ll ask Devin to check the website. He can check it on an actual iPad.

    Cheers!
    Ismael

    in reply to: Change Font of submenu #175415

    Hello sambolleter!

    Add this on functions.php:

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

    Add this on custom.css or Quick CSS:

    #top .main_menu .menu li ul a {
    font-family: 'Montserrat', sans-serif;
    }

    Cheers!
    Ismael

    in reply to: how do I remove the header from the theme? #175399

    Hello inboxgroup!

    You can add this on your custom.css or quick css to hide the header:

    #header {
    display: none;
    }

    Cheers!
    Ismael

    Hey turner2f!

    You can do it via css. Please give us a link to the page with the button. The font icon code has been change on the update. Old way of embedding font icons will not work on the latest version of Enfold.

    Cheers!
    Ismael

    in reply to: Accordion view won't open #174961

    Hey!

    It takes forever for the site to load. Please try to deactivate all your plugins. If you have a cache plugin, please flush the settings. I will tag the rest of the support team to check the site.

    Cheers!
    Ismael

    in reply to: No footer menu in responsive / iPhone view #174960

    Hi!

    Please add this on your custom.css or Quick CSS:

    @media only screen and (max-width: 479px) {
    .responsive #socket .sub_menu_socket {
    display: block;
    }
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Top Menu & Side Navigation Issues #174957

    Hey!

    Add this on your custom.css or Quick CSS:

    1.) Remove bullets:

    #top .widget_nav_menu ul ul li:before {
    content: "";
    }

    2.) Menu alignment:

    #top .widget_nav_menu ul ul li a {
    padding: 6px 0px 7px 0px;
    }
    
    .widget_nav_menu ul:first-child>.current-menu-item>a, .widget_nav_menu ul:first-child>.current_page_item>a {
    border: none;
    padding: 6px 12px 7px 0;
    }

    Best regards,
    Ismael

    Hey Michael!

    I add a the Testimonial shortcode after a bunch of text and it doesn’t delete them. Please download the latest version Enfold, 2.3.2. Override your theme files via FTP: https://vimeo.com/channels/aviathemes/64927356

    Best regards,
    Ismael

    in reply to: BBPress Sidebar – Logged in appearance settings #174954

    Hey!

    Maybe you can add that on sidebar.php, find this code:

    echo "<div class='sidebar sidebar_".$sidebar." ".avia_layout_class( 'sidebar', false )." units'>";
    
    	echo "<div class='inner_sidebar extralight-border'>";

    Below add the code:

    
    echo "<div id='bbpress-login'>";
    	
    	global $userdata;
          get_currentuserinfo();
    if (!is_user_logged_in())
    {
    echo "Hello there, Guest..."; ?>
    <form action="wp-login.php" method="post">
    Username: <input type="text" name="log" id="user_login" class="input" />
    Password:<input type="password" name="pwd" id="user_pass" class="input" />
    <input type="hidden" name="testcookie" value="1" />
    <input name="rememberme" type="checkbox" id="rememberme" value="forever" /> Remember Me
    <input type="submit" name="wp-submit" id="wp-submit" value="Log In" />
    </form>
    <?php } else {
    echo 'Welcome back' . $userdata->user_login . 'Logout.';
    }
    
    echo "</div>";
    

    Best regards,
    Ismael

    in reply to: How to get rid of some things #174953

    Hey!

    The product images will inherit the size of the container. Even if you upload a large image, the css will resize it to fit the container.

    Regards,
    Ismael

    in reply to: Megamenu – can't get fullwidth. #174952

    Hey!

    Please use media queries to resize the mega menu on smaller screens:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .avia_mega_div {
    width: 800px;
    }
    }

    You can target different screen sizes.

    Regards,
    Ismael

    in reply to: Enfold > Tabs > Undefined #174950

    Hi!

    Can you please post a link to your website? Do you have the latest version Enfold 2.3.2?

    Please send in the login details. You can email it to ///.

    Include the word “Kriesi” on the subject. Add the link of this thread on your email.

    Best regards,
    Ismael

    in reply to: Show product options? #174949

    Hi sletts02!

    The shortcode you’re using will only display the “Add to cart” button of a certain product. If you’re using a variable product, it will display the “View more options” button with the link to the actual product. What do you mean by “table options”?

    Regards,
    Ismael

    Hello!

    There is a “Select All” button beside the “Built-in 2D Transitions” and “Built-in 3D Transitions”. Click it twice to deselect all transitions then check the ones you like. Click the red x button to close the transition window. Click the green “Save Changes” button when you’re finish.

    Regards,
    Ismael

    in reply to: 1/2 Element Bug after update to 2.3.2 #174946

    Hello!

    Please add this on your custom.css or Quick CSS:

    .avia_image.avia-align-center {
        clear: both;
    }

    Regards,
    Ismael

    in reply to: Justified Image Grid -> How to show portfolio? #174945

    Hey sletts02!

    You can already filter portfolio post by category. Use the Portfolio Grid element.

    Best regards,
    Ismael

Viewing 30 posts - 62,341 through 62,370 (of 66,027 total)