Forum Replies Created

Viewing 30 posts - 13,861 through 13,890 (of 66,126 total)
  • Author
    Posts
  • in reply to: Full Slider Video Embed – Auto Play #1295219

    Hey Brian,

    Thank you for the inquiry.

    Did you mute the videos in the slider? The videos are automatically playing on our end — checked on Chrome.

    Best regards,
    Ismael

    Hey AlexR,

    Thank you for the inquiry.

    We can use the following filter in the functions.php file to add the name attribute to the faq schema markup, but it seems not necessary because the tool is not returning any errors.

    add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);
    function avf_markup_helper_attributes_modified($attributes, $args) {
    	if( $args['context'] == 'faq_section' ) {
    	    $attributes['name'] = 'FAQ';
    	}
    	return $attributes;
    }

    Best regards,
    Ismael

    in reply to: Language flag icons in menu are not aligned with text #1295124

    Hey NoraGTS,

    Thank you for the inquiry.

    1.) Did you add the css code in the child theme’s style.css file? You may need to check if the ID of the menu item in the DE version is different, or if the css selector is correct.

    2.) You have to set the DE as the main language in Polylang and in the Settings > General panel.

    // https://polylang.pro/doc/configure-the-languages/

    Best regards,
    Ismael

    in reply to: Swipe the "content slider" on the phone #1295120

    Hey Severin,

    Thank you for the inquiry.

    That is the default behavior of the navigations or of the content slider. If you want to enable both, you will have to modify the enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.php file and adjust this block of code around line 769 so that both navigation display regardless of the set option in the element.

    if( $navigation == 'dots' ) 
    					{
    						$output .= $this->slide_navigation_dots();
    					}
    
                        if( $navigation == 'arrows' ) 
    					{
    						$output .= $this->slide_navigation_arrows();
    					}
    

    If you do not want the actual arrow to display, use this css to hide it.

    .avia-slideshow-arrows.avia-slideshow-controls {
       display: none !important;
    }

    Best regards,
    Ismael

    in reply to: How put two functional arrows in the Tab Section ? #1295116

    Hi,

    Thank you for following up.

    You can use the .av-tabsection-nav-prev and .av-tabsection-nav-next selectors to style the navigation. Example:

    .av-tabsection-nav-prev, .av-tabsection-nav-net {
       position: absolute;
       color: red;
       top: 100px;
    }
    
    .av-tabsection-nav-prev {
       left: 20px;
    }
    
    .av-tabsection-nav-next {
       right: 20px;
    }

    @Guennie007: We could check for the parent container and find the active tab from there instead of directly using the .av-active-tab-title selector.

    Best regards,
    Ismael

    Hi,

    The rating is still beside the product title when we checked the site. Did you put it back?

    To create more space between the product title and the price, try use this css code.

    a.woocommerce-LoopProduct-link.woocommerce-loop-product__link div.inner_product_header div.inner_product_header_table div.inner_product_header_cell h2.woocommerce-loop-product__title {
        padding-bottom: 50px;
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the changes.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Glad to know that it is now working correctly. Please feel to open a new thread if you need anything else. A termite extinguisher for the previous server might help. :D

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Typewriter Animation Not Working in My Color Section #1295099

    Hi,

    Sorry about that. I got a bit confused. :)

    Sorry for the confusion, but I mentioned in ONLY worked outside the color selection element.

    But the rotator in the above page is inside a color sectio, and it is working correctly. Please check the screenshot below.

    // https://imgur.com/671qIK6

    Best regards,
    Ismael

    in reply to: Homepage Masonry Gallery Not Loading Images #1295098

    Hi,

    Did you purge the cache and toggle the Performance > File Compression settings after adding the css code?

    Does it work correctly when you temporarily remove the layer slider? Please post the login details in the private field so that we could properly check the issue.

    Best regards,
    Ismael

    in reply to: Iconfont Manager Error #1295096

    Hi,

    No worries. Please do not hesitate to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold child theme appearance not showing well #1295093

    Hey!

    That is good to know. Please feel free to open another thread if you need additional assistance. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: How to customize position of cookie consent box? #1295092

    Hi,

    Thank you for following up.

    Is the Performance > File Compression settings enabled when you added the css? You may need to disable that settings temporarily, or toggle it after adding the changes.

    Best regards,
    Ismael

    Hi,

    We have checked the Quick CSS field and looked for any invalid css code, but we did not find any. However, the child theme’s style.css file is empty. Did you edit that file? It should contain info about the child theme and it should point to the parent theme.

    Please correct it by adding the following code, but before doing so, make sure that there is a site backup and a restore point.

    Example:

    /*
    Theme Name: Enfold Child
    Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating will be much easier then.
    Version: 1.0.1
    Author: Kriesi
    Author URI: http://kriesi.at
    Template: enfold
    */
    
    /*Add your own styles here:*/
    
    

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Icon Boxes & Read More on Blog #1295085

    Hi,

    Thank you for the update.

    Try to edit the themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php file, and look for this code around line 712.

    	$permalink = '
    <div class="read-more-link"><a href="' . get_permalink( $the_id ) . '" class="more-link">' . __( 'Read more', 'avia_framework' ) . '<span class="more-link-arrow"></span></a></div>
    ';
    

    You can also use the POEdit software and add the translations to the language files manually.

    // https://poedit.net/

    Best regards,
    Ismael

    in reply to: CSS font style not transferred to mobile display #1295083

    Hi,

    Thank you for the info.

    Can we have access to the font? We would like to check the files and test it on our own installation. Please post the info in the private field.

    Is it displaying properly when the Performance > File Compression settings are disabled?

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    The site contains a deprecated version (3.5.4) of the theme, which is no longer compatible with WordPress and most of the natively configured plugins. You have to manually download the latest version (4.8.2) of the theme from your Themeforest account, and upload it manually to your installation via FTP.

    Please check the following documentation for more info on how to properly update the theme through FTP.

    // https://kriesi.at/documentation/enfold/theme-update/

    Best regards,
    Ismael

    Hi,

    Did you set a Custom Error 404 Page in the Theme Options? Try to adjust it to the second option to omit the avia_forced_reroute=1 parameter from the URL.

    Best regards,
    Ismael

    Hi,

    No problem. Please feel free to create a new thread should you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Color Section – Cannot Edit or Save Background Image #1295077

    Hi,

    Thank you for the info.

    This is odd. The background image gets automatically removed from the color section when we save the changes. Can we deactivate the security plugin temporarily? You may also have to ask the host if the server cache can be disabled.

    We have also found this error in the browser console, but we are not yet sure what is causing it or why the avia_framework_globals is undefined.

    post.php?post=74&action=edit:99 Uncaught SyntaxError: Invalid or unexpected token

    avia_dynamic_templates.js?ver=5.0:20 Uncaught ReferenceError: avia_framework_globals is not defined
    at avia_dynamic_templates.js?ver=5.0:20
    at avia_dynamic_templates.js?ver=5.0:415

    Best regards,
    Ismael

    Hi,

    You can use the Tab or Accordion element from the advance layout builder. If you do not want to add the content manually, you can always switch back to the default or classic editor.

    Please feel free to open a new thread if you need more info. We will close this one for now.

    Best regards,
    Ismael

    in reply to: Wrong logo on mobile and some desktop pages #1295069

    Hi,

    The logo there looks different from the ones we have checked. How did you change the logo on that specific page? And how would you like the header to look like on mobile view?

    We also found this style in the Quick CSS field, which might require some adjustment.

    .logo img {
        padding-top: 15px;
        margin-top: 15px !important;
        z-index: 99999999 !important;
        position: relative;
        margin-bottom: -17px !important;
    }
    
    .logo img {
        margin: 15px !important;
        z-index: 99999999 !important;
        position: relative;
    }

    Best regards,
    Ismael

    in reply to: Menu colour issue and logo issue #1295068

    Hi,

    Ismael, you suggested changing the header settings in the layout settings. However, I can’t seem to find the settings you are talking about. I’ve looked extensively in the Enfold Child menu,

    The option is in the page editor itself. Edit the actual page and look for the Layout box in the lower right corner of the dashboard. You should find the page options there, including the Header visibility and transparency settings.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The code works fine on our end, no errors. Did you copy the snippet from your email? Please try to copy it directly from this forum instead.

    We also noticed that the site contains a very old version of the theme, v4.4.1. You have to upgrade the theme to latest version (v4.8.1) first.

    Best regards,
    Ismael

    in reply to: Masonry Blog not as expected #1295063

    Hi,

    Thank you for the info.

    We tried logging in again to the dashboard, but the account above is no longer valid. Did you remove it? Please enable it again so that we could check the issue properly.

    Best regards,
    Ismael

    in reply to: Cookies Button Google Analytics #1295062

    Hi,

    Thank you for the info.

    How do you check this? Please provide a screenshot using imgur or dropbox. On our end, only the aviaPrivacyGoogleTrackingDisabled is added to the local storage when we disable google analytics tracker in the privacy modal popup window. This cookie prevents the analytics script from loading.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Yes, this solution will work well in this case, but if we ever implement this in the core, we will probably not use the same technique because using srcset attribute will be a much more simple approach.

    Best regards,
    Ismael

    in reply to: Issue with Slider #1295060

    Hi,

    This recommendation has no relation to the topic.

    What do you mean? By the looks of it, there are layers in the slider that are not actually used, which shows when you delete something.

    Why does something shows up when i delete something?

    We are not really sure but our first guess is because the slider is from an old template but since it is not, then it might be cause by cache. You might have to recreate the slider from scratch if this continues to happen.

    Best regards,
    Ismael

    in reply to: ALB does not work with User Role Editor #1295059

    Hi,

    By default, only users that can “switch_themes” or a user that has that capability, usually an admin, are allowed to edit the page.

    Does it work correctly when the User Role Editor plugin is disabled? We are not really sure how the plugin affects the user roles, so additional help from the plugin developers might be required.

    Best regards,
    Ismael

    in reply to: Future/coming events not working properly #1295058

    Hi,

    Yes, we are still looking on it. Unfortunately, the filter that we previously used is no longer working. Please keep the updated calendar design disabled temporarily.

    Best regards,
    Ismael

    in reply to: Enfold Update Not Working (currently have 4.6.2) #1294810

    Hi!

    It worked but you reverted it back?

    When we activated the latest version, we did not see any errors but the styling is lost, which means that it did not work.

    Try to export the theme options while the old version of the theme is enabled. After that, enable the latest version by renaming the old theme folder, then import the theme options back.

    Best regards,
    Ismael

Viewing 30 posts - 13,861 through 13,890 (of 66,126 total)