Forum Replies Created

Viewing 30 posts - 25,261 through 25,290 (of 66,206 total)
  • Author
    Posts
  • 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 6 years, 9 months ago by Ismael.
    in reply to: Avia.js in child theme #1022190

    Hi,

    What is the name of the file? Can we take a look? This is the only error that I see in the console.

    www-widgetapi.js:99 Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('https://www.youtube.com') does not match the recipient window's origin ('http://ebenisterie-loutan.ch').
    

    Best regards,
    Ismael

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

    Hi,

    Thanks for the update. Can you provide a screenshot of the “reply threading” issue? I’m not really sure what it means.

    Best regards,
    Ismael

    in reply to: Sticky Sidebar Menu #1022157

    Hi!

    Thanks for the update. You can set it to “Always stick” but you won’t be able to access the content at the very bottom of the sidebar container because its taller than the browser view port, at least on standard screen resolutions. For testing purpose, set it to the first option and then zoom out the browser until the whole sidebar content is visible. It should stick by then because the whole sidebar container is visible inside the browser view port or screen.

    Regards,
    Ismael

    Hi,

    Thanks for the update. The script handle should be “avia-sticky-header”, not “avia-default”.

    Best regards,
    Ismael

    in reply to: Data table questions #1022149

    Hi,

    You can use this css code.

    .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
        background: #ffffff;
    }=
    
    .main_color tr:nth-child(even), .main_color .avia-data-table .avia-heading-row .avia-desc-col, .main_color .avia-data-table .avia-highlight-col, .main_color .pricing-table>li:nth-child(even), body .main_color .pricing-table.avia-desc-col li, #top .main_color .avia-data-table.avia_pricing_minimal th {
        background-color: #919191;
    }

    Best regards,
    Ismael

    in reply to: Need to show entire blog post with advanced editor #1022143

    Hi,

    It’s possible but you have to modify the shortcode file. Look for the postcontent.php file inside the config-templatebuilder > avia-shortcodes folder. Edit this code around line 66:

    "posttype" => array('page','portfolio'),
    

    Add the default post type.

    "posttype" => array('page','portfolio','post'),
    

    Best regards,
    Ismael

    Hi,

    Have you tried disabling the theme’s lightbox option? Look for the “Lightbox Modal Window” in the Enfold > Theme Options panel and disable it. If I am not mistaken, nextgen has its own lightbox functionality, so you can use that instead of the default lightbox.

    Best regards,
    Ismael

    Hi,

    The new version of the theme is out. You can now download version 4.5 from your Themeforest account. It contains the new Envato API update.

    Best regards,
    Ismael

Viewing 30 posts - 25,261 through 25,290 (of 66,206 total)