Forum Replies Created

Viewing 30 posts - 211 through 240 (of 465 total)
  • Author
    Posts
  • Hi ghrahams!

    I note that you’re using a caching plugin. Could you please clear the cache and test it.

    Additionally, please try the following to see if it helps.

    1. Disable all third-party plugins to see if the issue gets fixed. 90% of the time, issues are caused by conflicting code from third party plugins. Disabling these plugins one by one and checking if this helps sort the issue helps pin-point the exact source of the issue.

    2. Has this started occurring after a theme, plugin or wordpress update? Restoring a backup version of your site might help in such a case.

    If disabling any third party plugins does not help, please forward us administrative credentials to your site for us to have a closer look.

    Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.

    Regards,
    Arvish

    in reply to: Adding new Google Font don't work! #343245

    Hi Effektid!

    You maybe need to add the code at the very top of functions.php. Replace

    <?php
    
    global $avia_config;

    with

    <?php
    
    global $avia_config;
    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Shadows Into Light'] = 'Shadows Into Light';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Shadows Into Light'] = 'Shadows Into Light';
    return $fonts;
    }

    and it should work. Please don’t forget to save the theme options again.

    Best regards,
    Arvish

    in reply to: Ajax Portfolio creates duplicate content or…? #343241

    Hi Henrik-R!

    The preview text appears when viewing the portfolio item in portfolio gallery. The Portfolio Content appears on the portfolio item page.

    The preview text is more of a summary version (or trimmed down intro) if you prefer for the Ajax portfolio. There is still the option to redirect to the portfolio item view through default URL linking.

    Regards,
    Arvish

    in reply to: logo issues #343238

    Hi jdrakeproductions!

    It would appear that you modified the core CSS files in your original site.

    It is best practice to use a child theme for all modifications http://vimeo.com/67221517

    This way your changes don’t get overwritten when you update your theme.

    In such a situation there is not much we can do. I can only advise, you compare your old files with the new files and move the changes to the Quick CSS text area in theme options or style.css(recommended) in the child theme.

    Regards,
    Arvish

    in reply to: Youtube vid stopped working after update #343236

    Hi geomat1!

    Have you tried the video on youtube itself. This error seems to indicate an issue with the video itself or your browser plugin.

    Does the same thing happen in other browsers?

    Should it not be one of the above issues, could you please forward us administrative credentials to your site for us to have a closer look.
    Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.

    Best regards,
    Arvish

    in reply to: Alt Text Size #343234

    Hi!

    Really quite strange.

    Please add this to your Quick CSS or custom.css

    .avia_image{font-size: 12px;}

    Cheers!
    Arvish

    in reply to: Title only on category/archive page #342810

    Hey!

    Try the following third party plugin https://wordpress.org/plugins/display-posts-shortcode/

    It offers the flexibility you require.

    This is the documentation for it: https://github.com/billerickson/display-posts-shortcode/wiki

    Best regards,
    Arvish

    in reply to: Title only on category/archive page #342724

    Hey!

    You can display posts in one category using the guidelines here:

    https://kriesi.at/support/topic/sidebar-category-page/#post-342690

    You can adjust then adjust the Title Bar Settings to “Display only title”

    Cheers!
    Arvish

    in reply to: Transparency on mega-menu "sub-menu" #342721

    Hi!

    I’ve changed the code to the following:

    .header_color .main_menu .menu .avia_mega_div {
     background-color: rgba(248, 248, 248, 0.2);
    }
    
    .header_color .main_menu .menu .avia_mega_div ul{
     background-color:transparent;
    }

    Please check and let us know.

    Cheers!
    Arvish

    in reply to: Menu Highlight Sticks "on" After Selection #342713

    Hi davevi!

    On my system, I can only see the following anomaly.

    I tested the other menu items and everything seems to be working fine. Please note that if a page under About Us is visited, the about us menu is on active mode. This is a feature.

    To correct the above error, please try the following see if it helps.
    1. Disable all third-party plugins to see if the issue gets fixed. 90% of the time, issues are caused by conflicting code from third party plugins. Disabling these plugins one by one and checking if this helps sort the issue helps pin-point the exact source of the issue.
    2. Has this started occurring after a theme, plugin or wordpress update? Restoring a backup version of your site might help in such a case.
    If disabling any third party plugins does not help, please forward us administrative credentials to your site for us to have a closer look.
    Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.

    Regards,
    Arvish

    in reply to: Making header smaller #342707

    Hi gwyrrdin!

    Add the following to your custom.css

    .html_header_top.html_header_sticky #main {
        padding-top: 59px !important;
    }

    Best regards,
    Arvish

    in reply to: Enfold and http://themecheck.org/ #342704

    Hi!

    I have notified Kriesi of your request. He will be in touch shortly.

    Best regards,
    Arvish

    in reply to: Enfold and http://themecheck.org/ #342699

    Hey iainski!

    Enfold is a theme that already has a recognised theme base. Moreover, it has passed the rigorous approval process of the reputed Envato marketplace.

    We are positive you will find that 40,000 Envato customers are not wrong in chosing Enfold.

    Best regards,
    Arvish

    in reply to: sidebar category page #342690

    Hi hotspot!

    1. Create a page for the category you wish to display. Add your preferred layout using Avia Layout Builder.
    2. Drag a Blog Posts Shortcode Element into one column.
    3. Drag a widget Area to the other column column.

    4. Set Layout settings to “No Sidebar”

    Best regards,
    Arvish

    in reply to: add scroll down link in color section #342686

    Hi!

    Add the following code at the end of functions.php

        function show_scroll_down_text_script(){
        ?>
        <script>
        (function($){
            $(window).load(function() {
    
                $('<span class="scroll-down-text">Scroll Down</span>').insertBefore('.scroll-down-link');
    
            });
        })(jQuery);
        </script>
        <?php
        }
        add_action('wp_footer', 'show_scroll_down_text_script');

    Use the span class to style the text using normal css.

    Cheers!
    Arvish

    in reply to: Category archive (Blog style) page #342677

    Hey hotspot!

    You can try implementing the following solution to enable you to add a sorting mechanism to the magazine builder.

    http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/

    Cheers!
    Arvish

    in reply to: footer content alignment in one column only #342675

    Hey Johannes!

    I would add display:block; to your iframe style.

    E.g

    iframe{
    display: block;
    width:200px;
    margin:0 auto;
    }

    Alternatively, it would be better if you could forward us the link to your page for us to have a look.

    Cheers!
    Arvish

    in reply to: Transparency on mega-menu "sub-menu" #342672

    Hi ouranos3!

    Try the following CSS rather

    .header_color .main_menu .menu ul{
    background-color: transparent;
    }

    .header_color .main_menu .menu ul li a{
    /*You can add a background color here if you want*/
    opacity: 0.2;
    }

    Best regards,
    Arvish

    in reply to: Language Switcher #342636

    Hi!

    Could you please verify the login credentials and post theme again. I have just tried logging in to no avail.

    Cheers!
    Arvish

    in reply to: 5 Icon Boxes – Icon, Title, Box needs to be centered #342635

    Hey!

    First make sure you have selected “Display small icon at the left side of the title” in the Icon Box Shortcode settings.

    Then add the following code to your Quick CSS or custom.css

    .home .iconbox .entry-content-header{width:90%; margin: 0 auto;}

    You can adjust the width according to your design.

    Cheers!
    Arvish

    in reply to: Mega menu width and column – not answered #342631

    Hey!

    With regards to the image overlay on the product page, add the following at the bottom of your functions.php file

       function megamenu_productimageoverlay_fix_script(){
        ?>
        <script>
        (function($){
            $(window).load(function() {
    
            $("#menu-item-2302 .avia_mega_div").mouseenter(function() {
                $(".image-overlay").css("z-index", "-1");
            }).mouseleave(function() {
                 $(".image-overlay").css("z-index", "auto");
            });
            });
        })(jQuery);
        </script>
        <?php
        }
        add_action('wp_footer', 'megamenu_productimageoverlay_fix_script');

    Cheers!
    Arvish

    in reply to: Mega menu width and column – not answered #342622

    Hi bitinteractive!

    At first look, It would seem that you have added three menu items under three seperate menu levels.

    We would be glad to assist if you could forward us a mock up or screenshot of the type of modification you wish to achieve.

    Additionally, please forward us administrative credentials to your site for us to have a closer look.

    Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.

    Cheers!
    Arvish

    in reply to: Enfold Secondary Menu #342612

    Hi Peter!

    We would be glad to assist if you could forward us a mock up or screenshot of the type of modification you wish to achieve.

    In the mock up, please point out which is the secondary menu, which menu is being used to display the membership info and where is the membership menu being displayed.

    Best regards,
    Arvish

    in reply to: Mobile Navigation on iPad landscape #342611

    Hi jansthh!

    Use CSS media queries to achieve these changes.

    A good starting file is custom.css in your theme’s css folder.

    You can also have a look at the following guides for creating and manipulating CSS with media queries:

    http://code-tricks.com/css-media-queries-for-common-devices/
    http://css-tricks.com/logic-in-media-queries/

    Cheers!
    Arvish

    in reply to: Display Magazine posts in a random order #342609

    Hi pako69!

    Line 366 in (theme folder)/config-templatebuilder/avia-shortcodes/magazine.php

    Change the following:

    $query = array( 'orderby' => 'date',

    To this:

    $query = array( 'orderby' => 'rand',

    Note that this will be overwritten upon a theme update. Please make a note of this change during updates.

    Regards,
    Arvish

    Hi Krissie!

    1. To use a custom blog layout template, simply save your file as single-(post-type).php.
    For reference:
    http://codex.wordpress.org/Post_Type_Templates
    http://codex.wordpress.org/Template_Hierarchy

    2. For sidebars for particular posts in certain categories, create a page for the post, add the blog post using Avia Layout Builder, add a Dynamic Sidebar using Widget Area.

    Alternatively, you can look into third-party plugins.
    E.g https://wordpress.org/plugins/wp-custom-post-template/

    You can also vote for or post a feature request on our feature request page https://kriesi.at/support/enfold-feature-requests/.

    3. With regards to images, you can change image size on functions.php, find this code

    $avia_config['imgSize']['widget'] 		= array('width'=>48,  'height'=>48 );		// small preview pics eg sidebar news<br />
    $avia_config['imgSize']['related'] 		= array('width'=>128, 'height'=>80);		// small images for related items<br />
    $avia_config['imgSize']['portfolio'] 	= array('width'=>208, 'height'=>125);		// small preview pic for default portfolio (4 columns )<br />
    $avia_config['imgSize']['portfolio2'] 	= array('width'=>448, 'height'=>260);		// medium preview pic for 2 column portfolio and small 3d slider<br />
    $avia_config['imgSize']['portfolio3'] 	= array('width'=>288, 'height'=>170);		// medium preview pic for 3 column portfolio<br />
    $avia_config['imgSize']['page'] 		= array('width'=>608, 'height'=>200);		// image for pages and one column portfolio<br />
    $avia_config['imgSize']['featured'] 	= array('width'=>928, 'height'=>350);		// big images for fullsize pages and fullsize 2D & 3D slider<br />
    $avia_config['imgSize']['portrait'] 	= array('width'=>340, 'height'=>390);		// medium preview pic for portrait pictures

    You need to regenerate thumbnails once you edit the thumbnail sizes.

    Regards,
    Arvish

    in reply to: Accordion Slider + WPML #342554

    Hey spavli2!

    Have the portfolio items been translated already?

    They won’t show unless there is a translation available.

    In case you have the translated the portfolio items already, please forward us administrative credentials to your site for us to have a closer look.

    Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.

    Cheers!
    Arvish

    in reply to: Footer Widget Setup #342249

    Hi doperdoll!

    1. The Interesting LInks / Pages / Categories / Archive appear by default if you haven’t added anything to your footer. They will disappear once you add something.

    2. You can specify which sidebar appears on which page types under Enfold Theme Options > Sidebar Settings

    3. You can create custom dynamic sidebars on the widget pages. To add those dynamic sidebars to a page, just drag and drop a Widget Area Element in Avia Layout Builder and select the dynamic sidebar you wish to display.
    http://codex.wordpress.org/WordPress_Widgets

    4. For more in-depth modification you might want to look into creating custom page templates.
    http://codex.wordpress.org/Page_Templates

    Have a look at some of our videos to help you with the theme here:
    http://kriesi.at/documentation/enfold/videos/

    You can also find some helpful tutorials here:
    http://kriesi.at/documentation/enfold/tutorials-how-to-articles/

    Regards,
    Arvish

    in reply to: Mengen Angaben nur bei bestimmten Produkten entfernen #342237

    Hey fwbecker!

    Unfortunately the customisation you’re requesting will take a while to implement and therefore falls outside the scope of our theme support.

    You can try http://studio.envato.com or http://www.peopleperhour.com for further customization. You can also vote for or post a feature request on our feature request page https://kriesi.at/support/enfold-feature-requests/.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Cheers!
    Arvish

    in reply to: Dummy data xml file not included in Enfold Theme package #342228

    Hey!

    Please create a file called test.php in the root folder of your php install.

    Add the following to the file and let us know. I will be looking out for your reply.
    Please forward us a link to your site as well.

    <?php
    phpinfo();
    ?>

    Best regards,
    Arvish

    • This reply was modified 10 years ago by Kriesi.
Viewing 30 posts - 211 through 240 (of 465 total)