Forum Replies Created

Viewing 30 posts - 11,521 through 11,550 (of 67,597 total)
  • Author
    Posts
  • in reply to: sku on product page disappeared with theme update #1344479

    Hi,

    Thank you for the clarification.

    This is not working because the wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.js file is not loaded when the builder is active. And since the product meta is a separate builder element of its own, the product meta container which contains the SKU is also outside the variations form. It should be inside the form for this to work properly. We will forward the issue to our channel for further investigation.

    Best regards,
    Ismael

    in reply to: Woocommerce category thumbs size setting #1344477

    Hi,

    It might be limited by its container or column, which has a width that is half or 50% of the content container. The rendered size is indeed 410x410px but the intrinsic or actual image size that is loaded is 512x512px.

    Best regards,
    Ismael

    in reply to: CSS for EmbedPlus YouTube Plugin #1344346

    Hi,

    You are very welcome! Please feel free to open another thread if you have more questions about the theme and WordPress in general. We will close this topic for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold update issue: gallery not working #1344345

    Hey ratonverde,

    Thank you for the inquiry.

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after updating the theme, and make sure to purge the cache before testing the page again. Let us know if that helps.

    Best regards,
    Ismael

    Hi,

    The language code for norwegian is nb_NO.

    Yes, we actually tried that previously but the language stays the same. Unfortunately, we are not sure why it worked when you accidentally reset the options. There is no other place to change the SDK language aside from the one we mentioned above. You can also use the avf_fb_widget_lang_code filter but it is the same as editing the URL manually.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    How do you do the manual import

    You have to create a local installation, import the demo, then export the layer sliders from the local installation. You can then import the slider back to the live site.

    Best regards,
    Ismael

    in reply to: Replace cart counter with icon #1344341

    Hey Bruno,

    Thank you for the inquiry.

    The cart icon is not visible in the site. Did you modify it? You can place the cart icon beside the menu by selecting the third option in the Enfold > Shop Options > Header Shopping Cart Icon settings.

    And if you want to adjust the cart icon, try to use this filter in the functions.php file.

    // adjust the default icon font
    function avf_add_custom_icon($icons) {
    	$icons['cart'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue85a');
    	return $icons;
    }
    add_filter('avf_default_icons','avf_add_custom_icon', 10, 1);
    

    Best regards,
    Ismael

    in reply to: It is not correct pay support if you have bug. #1344339

    Hey sonia,

    Thank you for the inquiry.

    I receive the email from the contact form but any contact form sends an automatic response email (set correctly) to the customer.

    Are you having issue with the autoresponder option? Do you want to disable it? Please check the autoresponder settings of the contact form in the Content > Backend > Autoresponder section. You can leave the Autoresponder reply to email address field blank if you don’t want to enable the autoresponder option.

    Best regards,
    Ismael

    in reply to: Center Logo on Menu #1344337

    Hey EL,

    Thank you for the inquiry.

    You might have forgotten to include the site URL in your last reply. Please include the info in the private field so that we can check the issue. A screenshot using imgur or dropbox will also help.

    Best regards,
    Ismael

    in reply to: help with php function #1344336

    Hey Nicola,

    Thank you for the inquiry.

    You have to remove this conditional function from the filter to apply the changes on every page.

    if(is_page(home)){
    
    }

    You can the update the filter with the following code.

    -------------------------------
    Additional Logos
    -------------------------------
    function add_logos($logo) {
      $logo .= '<a class="first-logo" href="/"><img src="http://site.local/wp-content/uploads/2022/03/logo-rivista.jpg"/></a>';
      $logo .= '<a class="second-logo" href="https://site.org"><img src="site.local/wp-content/uploads/2022/03/logo-ordine.jpg"/></a>';
      $logo .= '<a class="third-logo" href="https://www.site.it"><img src="http://site.local/wp-content/uploads/2022/03/pacinimedicina.png"/></a>';
      return $logo;
    }
    add_filter('avf_logo_final_output', 'add_logos');
    

    Please make sure to update the href value and the img src in the filter above.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We tried to modify the enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php file around line 916 and use the date_i18n function but the changes didn’t work.

    $meta .= "<time class='slide-meta-time updated' {$markup}>" . date_i18n( get_option( 'date_format' ), get_post_timestamp( $the_id, 'date' ) ) . '</time>';
    

    Please try to update the theme from 4.8.6.2 to version 4.9, then we will check the issue again.

    Best regards,
    Ismael

    in reply to: sku on product page disappeared with theme update #1344334

    Hi,

    We actually removed the SKU after posting the screenshot above. Did you try adding it again? We applied a temporary SKU to the product again. Please make sure to purge the cache.

    Best regards,
    Ismael

    in reply to: Woocommerce category thumbs size setting #1344333

    Hi,

    The size of the product image in your screenshot above is actually 512x512px. Maybe it is the closest size to the specified width value and the only available thumbnail. As we mentioned above, it will not exactly display images with the exact width value.

    Please note that the catalogue images will not exactly display in the specified size. It will only display a thumbnail or image size that is closest to the specified width value.

    Best regards,
    Ismael

    in reply to: Anchor links highlighted on all pages #1344331

    Hey dubado,

    Thank you for the inquiry.

    Where can we check the issue? Please post the site URL in the private field so that we can inspect the menu items directly.

    Best regards,
    Ismael

    in reply to: My website loads very slow, any problem? #1344330

    Hey evtrans,

    Thank you for the inquiry.

    Have you done any site optimization such as installing a cache plugin and compressing the images? You can start by optimizing the images in the site. Please check the following articles for more info about WordPress optimization.

    // https://gtmetrix.com/wordpress-optimization-guide.html
    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    Hi,

    We tried to manually change the URL of the facebook sdk.js file in the class-framework-widgets.php (line 450) to get the nn_NO locale but it still sets the language to default, which is en_US.

    	$src = '//connect.facebook.net/nn_NO/sdk.js#xfbml=1&version=v2.7';
    

    It is possible that the locale or language code in not supported.

    Best regards,
    Ismael

    Hi,

    Sorry for the late response. The parallax images are not displaying even on desktop view when we checked the site. Did you update the theme just recently?

    Please try to toggle or temporarily disable the Enfold > Performance > File Compression settings. We will check the site again afterwards.

    Best regards,
    Ismael

    in reply to: Full Site Editing Theme #1343959

    Hey Sheryl,

    Thank you for the inquiry

    What do you mean exactly by “full site editing”? The theme has its own Advance Layout Builder (ALB), so you can create multiple layouts for your pages or posts using different builder elements such as sliders, grid row, blog posts, icons, text or code block and a lot more. There are also dedicated options for the header, footer and other areas of the site and tons of other features in the theme options panel. Please check our blog and the documentation to learn more about the Enfold theme.

    // https://kriesi.at/documentation/enfold/e
    // https://kriesi.at/blog

    Best regards,
    Ismael

    in reply to: Javascript errors resulting in pages not editable #1343958

    Hi,

    Closing this thread for now. Please feel free to open another thread if you have more questions regarding the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Web Developer will not provide purchase code for theme #1343957

    Hey Brett Hammond,

    Thank you for the inquiry.

    The purchase code is actually attached to the account that was used to buy the theme license. You will have to contact the previous developer and get the purchase code from them, or ask them to register the theme and generate a personal token. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/theme-registration/#register-my-theme

    If you can’t contact the previous developer for some reason, you will have to create a new Themeforest account and purchase a new license for the theme. Unfortunately, you cannot recover the purchase code or generate a personal token for the theme if you don’t have access to the original account.

    Best regards,
    Ismael

    in reply to: Slider on Home page seems to be showing behind Header #1343955

    Hi,

    Great! Please feel free to open another thread if you have more questions regarding the theme. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Mobile Menu Glitch #1343954

    Hey michaelmiller68,

    Thank you for the inquiry.

    The site contains an older version (4.8.6.2) of the theme, which requires updating. Please upgrade the theme to version 4.9, then toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Unable to make space in some of the builder elements #1343953

    Hey terishka1,

    Thank you for the inquiry.

    It is working properly on our installation. Did you install a new plugin recently? Did you try it using another keyboard or computer?

    Best regards,
    Ismael

    Hi,

    There is an open thread for this particular issue in our channel but we haven’t found a fix for it yet. We will update you once a solution has been found. Please manually edit the items temporarily.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Desktop version of homepage video #1343951

    Hi,

    The options for the slider transition is located in the slider’s Slide > Timing & Transition panel. You can also adjust the transition of each layer in their respective Transitions panel. Try to adjust the Start at and Duration values in the Transition Properties tab.

    You can check the screenshot of the layer slider settings below.

    screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvwEBCz0uBXhhM9KHo?e=bT679n

    Best regards,
    Ismael

    in reply to: Homepage slider issue #1343950

    Hi,

    You can use onedrive, just like the link that we provided above, imgur, dropbox or any free image hosting for the screenshot. Did you check the screenshot? Can you point out the issue on that screenshot?

    Best regards,
    Ismael

    Hey Eggzentrisch,

    Thank you for the inquiry.

    Did you set the site language to Deutsch in the Settings > General panel? Please post the login details in the private field so that we can check the issue further.

    Best regards,
    Ismael

    in reply to: Blog archive grid broken after update #1343948

    Hey Autaak,

    Thank you for the inquiry.

    In the $atts array above, try to remove the type and and the use_main_query_pagination items. The error probably occurs because those items are not valid avia_masonry attributes.

    Best regards,
    Ismael

    in reply to: site load order #1343946

    Hey david fried,

    Thank you for the inquiry.

    The site still contains an older version of the theme, which is no longer compatible with the latest version of WordPress. You will have update the theme to version 4.9 to fix any compatibility issues and get the latest features. If you don’t have access to the license, you may need create a new account on Themeforest and unfortunately, you may need to purchase another license in order to download the theme and register it.

    Regarding the above the fold content or site optimization in general, please check these articles.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    in reply to: How to add a hover affect to a menu images. #1343943

    Hi,

    Thank you for the update.

    You can use this css code to prevent the hover images from jumping when they are active.

    #top #header_main > .container .main_menu .av-main-nav > li > a {
        min-width: 200px;
    }
    
    #top #header_main > .container .main_menu .av-main-nav > li > a > .avia-menu-text img {
        position: absolute;
    }
    

    Best regards,
    Ismael

Viewing 30 posts - 11,521 through 11,550 (of 67,597 total)