Forum Replies Created

Viewing 30 posts - 26,581 through 26,610 (of 67,534 total)
  • Author
    Posts
  • in reply to: Onepager: change h2 title color on focus when scrolling #1022791

    Hi,

    Sure thing. Please feel free to open a new thread if you need anything else. :)

    Best regards,
    Ismael

    in reply to: need a different design bbpress #1022790

    Hi,

    Thanks for the update. Disable the theme’s Performance > File Compression settings temporarily. Enable the settings back once you’re completely done with the site.

    Best regards,
    Ismael

    in reply to: Search Result with thumbnail #1022544

    Hi,

    I can’t modify the files from the dashboard editor. Please edit the includes > loop-search.php file, look for this code.

    $slider = get_the_post_thumbnail(get_the_ID(), 'entry_without_sidebar');
    

    Replace it with:

    $slider = get_the_post_thumbnail(get_the_ID(), 'full');
    

    And then add this css code on the Quick CSS field.

    .search-result-counter + .big-preview img {
        width: 100%;
    }
    
    .search-result-counter {
        line-height: 44px;
    }

    Best regards,
    Ismael

    in reply to: Color Section Background video: Custom Background Image #1022539

    Hi,

    My bad. That is possible but you have to modify the config-templatebuilder > aviashortcodes > section.php file. Look for this code around line 1097:

    'video_loop' => true,
    

    Set it to false.

    Best regards,
    Ismael

    Hi,

    Great! Please open a new thread if you need anything else. Thank you for using Enfold. :)

    Best regards,
    Ismael

    Hi,

    Best regards,
    Ismael

    Hi,

    The new version contains the Envato API as I’ve said earlier. We’ll close this thread now. Please open a new thread if you encounter any issues after the update.

    Best regards,
    Ismael

    in reply to: website crashes after update to 4.3 #1022532

    Hi,

    This is an issue with the old Envato API. You need to update the theme manually via FTP because the automatic update on version 4.4.1 is not going to work properly. The new Envato API has been integrated on version 4.5, so you’ll be able to update the theme again automatically in the future.

    Best regards,
    Ismael

    in reply to: Avia.js in child theme #1022528

    Hi,

    The avia.js file in the child theme folder is still active.

    // Replace avia.js
    function wp_change_aviajs() {
       wp_dequeue_script( 'avia-default' );
       wp_enqueue_script( 'avia-default-child', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'), 2, true );
    }
    add_action( 'wp_print_scripts', 'wp_change_aviajs', 100 );
    

    I thought you disabled it? Please get the latest version of the avia.js file and then redo the modifications.

    Best regards,
    Ismael

    in reply to: Title, breadcrumb and layout on BBpress #1022519

    Hi,

    Thanks for the info.

    You can try this css code to bring the border back.

    #top .main_color .bbp-reply-content, #top .main_color .bbp-topic-content, #top .main_color .bbp-body .super-sticky .page-numbers, #top .main_color .bbp-body .sticky .page-numbers, #top .main_color .bbp-pagination-links a:hover, #top .main_color .bbp-pagination-links span.current {
        background: #fff;
        min-height: 68px;
        text-align: left;
        overflow: hidden;
        border-radius: 2px;
        padding: 7px 20px;
        border-style: solid;
        border-width: 6px;
        position: relative;
        margin-left: 0;
        margin-right: 0;
    }
    
    -reply-author, .forum-search #bbpress-forums div.bbp-reply-author, .bbp-user-page #bbpress-forums div.bbp-reply-author, .forum-search #bbpress-forums div.bbp-topic-author {
        width: 75px;
        position: relative;
    }

    Best regards,
    Ismael

    Hi,

    Can you give us the complete error log from the console? I would like to check this but I don’t have the required device to inspect the site on mobile view. Please ask the plugin author for additional help.

    Best regards,
    Ismael

    in reply to: Close mobile menu when clicking on same page link #1022507

    Hey!

    Thanks for the info.

    I’ve added this code in the functions.php file.

    function avia_footer_scripts_close_menu(){
    ?>
    <script>
    jQuery('.html_av-submenu-display-click').on( 'click', 'a', function (e) 
    {
    	if(! jQuery('html').hasClass('av-burger-overlay-active')) return;
    	var avia_custom_burger_menu = jQuery('.av-burger-menu-main a').find('.av-hamburger');
    	avia_custom_burger_menu.parents('a').eq(0).trigger('click');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'avia_footer_scripts_close_menu', 999);

    Please remove the browser cache prior to checking the page.

    Cheers!
    Ismael

    in reply to: How to turn off image crop in Ajax Portfolio? #1022486

    Hey kidcabide,

    Thank you for using Enfold.

    Can we have access to the site? You can use the “avf_ajax_preview_image_size” filter to adjust the slideshow preview thumbnail size, which is set to “gallery” thumbnail by default.

    // https://kriesi.at/support/topic/making-photos-fit-into-slider-so-they-wont-crop-the-picture/#post-704747

    Best regards,
    Ismael

    in reply to: Color Section Background Images on Mobile #1022482

    Hi,

    Yes, it’s possible. You can adjust the background position with css. For example, the following css code will adjust the background image position of the “newsletter” section.

    @media only screen and (max-width: 767px) {
        #newsletter {
            background-position: top left !important;
        }
    }

    // https://www.w3schools.com/cssref/pr_background-position.asp

    Or apply a different image.

    @media only screen and (max-width: 767px) {
        #newsletter {
                background-image: url(NEW IMAGE URL HERE);
        }
    }
    

    // https://www.w3schools.com/cssref/pr_background-image.asp

    Best regards,
    Ismael

    in reply to: Problem after updating #1022480

    Hi,

    I would like to try and activate the latest version but we need to confirm that a site backup or a restore point is available in case something goes wrong. Please upload version 4.5 via FTP while you’re creating the backup or restore point.

    Best regards,
    Ismael

    in reply to: No product quantity in Enfold shop mobile cart #1022292

    Hi,

    Thanks for the update.

    Those elements are hidden by default because they don’t fit inside the table. If you want to enable those elements back, you can add the following css code but it will require some adjustments.

    @media only screen and (max-width: 767px) {
    .responsive .shop_table .product-quantity {
        display: block;
    }
    
    #top .main_color .quantity input.plus, #top .main_color .quantity input.minus {
        display: none;
    }
    
    table div.quantity {
        width: auto;
    }
    
    .responsive table.shop_table .product-subtotal {
        display: block;
    }
    }
    

    Best regards,
    Ismael

    in reply to: Search Result with thumbnail #1022287

    Hi,

    Thanks for the update. The login credentials are invalid though. I tried both. Please provide a valid login details.

    Best regards,
    Ismael

    in reply to: Nubee to Enfold a few questions #1022283

    Hey Axel,

    Thank you for using Enfold.

    1.) Did you set your posts page as blog in the Enfold > Theme Options panel? Are you using the Advance Layout Builder? Please post the site url so that we can check the current setup of the site.

    2.) What do you mean by “add-to-any”? Please provide a screenshot or a link.

    3.) Unfortunately, we don’t or we can’t provide support for third party plugins as stated on our support policy. Please contact the plugin author for more info.

    4.) We need to see the current blog style and layout. Please provide the blog page url.

    5.) There is a font size option in the Enfold > Advanced Styling panel.

    6.) You can also edit the main menu style in the Enfold > Advanced Styling panel.

    We don’t usually entertain more than one question on a single thread because multiple questions can become a bit confusing and difficult for other users who are searching for the same answer. We kindly ask that you open separate threads in the future. Thank you for understanding.

    Best regards,
    Ismael

    in reply to: Change Full Screen slider to h1 tag #1022277

    Hi,

    I’m not sure if this is going to be considered as a permanent feature because not every page contains a slideshow and not every site using the theme disables the default title and breadcrumb container, which contains the main h1 title tag.

    Best regards,
    Ismael

    in reply to: Transparent header on tablet not working #1022268

    Hi,

    I’ll close the thread now. Please feel free to open a new thread if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Header Slider from Replete in Enfold #1022265

    Hi,

    Yeah, sorry about that. I really thought it’s working. I moved the condition inside the onMessageReceived function and it seems to be working properly. Please remove the browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: Help required on html #1022251

    Hi,

    I’ve added the code in the functions.php file. That will remove the debugging info. Please note that this modification is not update proof because it will get overwritten when you update the theme, so you need to use a child theme.

    // https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#why-child-theme

    Regarding the “wp-json” API, you can disable that with a plugin but it may break plugins or functions that relies on the API data.

    // https://wordpress.org/plugins/disable-wp-rest-api/

    Best regards,
    Ismael

    in reply to: [object][Object] – Fallback Image / iPhone #1022246

    Hi,

    Thanks for the update. The new version contains the final fix for this issue. Please upgrade the theme to version 4.5 via FTP.

    Best regards,
    Ismael

    in reply to: Problem after updating #1022245

    Hi,

    Did you create a backup of the site? We would like to activate the parent theme.
    A newer version of the theme is now available. Please upgrade to version 4.5.

    Best regards,
    Ismael

    in reply to: Problem after updating #1022225

    Hi,

    Thanks for the update. Are you sure that’s the correct site? I can’t find any products there and it’s not the same site as in your initial post.

    Best regards,
    Ismael

    Hi,

    The default background color is being covered by this image.

    // http://therecordshopnashville.com/wp-content/uploads/2018/10/nashville-recording-studio-1.png

    Did you add that image as the section’s background? This is the inline style of the section in the “Gear List” page.

    background-color: #d83b30;
    background-repeat: no-repeat;
    background-image: url(https://therecordshopnashville.com/wp-content/uploads/2018/10/nashville-recording-studio-1.png);
    background-attachment: fixed;
    background-position: center center;
    

    Best regards,
    Ismael

    in reply to: website crashes after update to 4.3 #1022219

    Hi,

    Thanks for the update. Looks like the map is working properly now. Let us know if you need anything else.

    Best regards,
    Ismael

    in reply to: Color Section Background video: Custom Background Image #1022217

    Hi,

    Add another slide and then enable the “Autorotation” and the “Stop Autorotation with the last slide” option.

    Best regards,
    Ismael

    in reply to: Automatic Adsense Ad Size Error #1022214

    Hi,

    These are some of the technical considerations when you need your ads to be responsive according to the adsense documentation, emphasis on the “The parent container has no width set.” section. You need to specify the size of the parent container on different screen sizes using css media queries.

    Technical considerations
    There are some situations in which you’ll need to take extra action to make a responsive ad unit work correctly:

    Your site uses third-party JavaScript. If your site uses scripts that are executed before our responsive ad code, for example, to hide the ads in your page until the page has fully loaded, then our ad code won’t be able to calculate the required size for the responsive ad unit. In this case, you’ll need to modify your code and use CSS media queries to set the size of the ad unit. Find out how to modify your responsive ad unit.

    The parent container has no width set. If you place your responsive ad code within a parent container that doesn’t have an explicit width set, for example, within a floating element, then our ad code won’t be able to calculate the required size for the responsive ad unit. In this case, you’ll need to modify your code and use CSS media queries to set the size of the parent container. Find out how to modify your responsive ad unit.

    The parent container has fixed or limited height. Responsive ads should not be placed inside containers with a fixed or limited height, as they may be taller on some devices or browsers. If you need to limit the height of your responsive ads, you’ll need to modify your code and use CSS media queries to set the height of the parent container. Find out how to modify your responsive ad unit.
    Additionally, you should be aware of the following:

    Mobile devices with poor connections. On mobile devices with poor connections you might see some browser reflow while our responsive ad code calculates the best standard height for the width of your parent container. Learn more about browser reflow.

    Best regards,
    Ismael

    in reply to: Google maps API not working … #1022197

    Hi,

    I’ve have added the API key in your database manually but it’s still producing the same error — referrer not allowed. We may need to check the project in your Google account directly.

    It seems that your Google API key is not configured correctly
    The key is probably either restricted to the wrong domain or the domain syntax you entered is wrong.
    Please check your API key here
    The domain that should be allowed is:
    https://iavsd2019.se/*

    Did you add “https://iavsd2019.se/*&#8221; as one of the http referrers?

    Best regards,
    Ismael

    • This reply was modified 7 years, 5 months ago by Ismael.
Viewing 30 posts - 26,581 through 26,610 (of 67,534 total)