Forum Replies Created

Viewing 30 posts - 2,161 through 2,190 (of 66,126 total)
  • Author
    Posts
  • in reply to: Depricated function errors showing in front end #1471523

    Hey Anne,

    Thank you for the inquiry.

    You may need to update the theme to the latest version to remove the notification. Please note that this warning is not critical and will not affect the site in any way. If you prefer, you can hide it by setting WP_DEBUG_DISPLAY to false in your wp-config.php file.

    // https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#wp_debug_display

    Best regards,
    Ismael

    in reply to: Blanc Template: Veröffentlichung fehlgeschlagen. #1471380

    Hi,

    Thank you for the info.

    In the screenshot, we noticed that you’re toggling the options in the Layer Slider metabox. What happens when you select the Blank – No Header, No Footer template in the Page > Template settings?

    // https://wordpress.com/support/templates/

    Best regards,
    Ismael

    in reply to: Full image on single post #1471379

    Hi,

    Thank you for the info.

    We may need to adjust the default size of the thumbnails. Please add this code in the functions. file:

    function avf_customization_modify_thumb_size( $size ) {
          $size['entry_without_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
          $size['entry_with_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
          return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );
    

    Then use the this plugin to regenerate the thumbnails.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Please make sure to create a site backup before proceeding.

    Best regards,
    Ismael

    in reply to: Search form AJAX results contains hidden products #1471377

    Hi,

    Great! Glad to know that you managed to fix it. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Search form AJAX results contains hidden products #1471373

    Hi,

    We adjusted the filter a bit. Please try it again and let us know of the result.

    Best regards,
    Ismael

    in reply to: Before and After Bug issue #1471372

    Hey Jason,

    Thank you for the inquiry.

    Looks like the whole #intro section gets highlighted when you try to slide the arrows. Please try adding this css code:

    #intro {
        user-select: none !important;
    }

    Make sure to purge the cache or remove the browser history before checking.

    Best regards,
    Ismael

    in reply to: The header area on my home page is a mess #1471370

    Hey mhannondesign,

    Thank you for the inquiry.

    We don’t see an additional menu in the header. Did you figure out the issue? If not, please provide a screenshot of the issue using platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: Page Edits Stopped Saving (At Specific Point) #1471369

    Hi,

    Unfortunately, we are not yet sure what is causing the issue, but it seems to be related to an entry in the browser’s session storage. If possible, please provide the FTP details in the private field. We’ll get back to you as soon as we find anything.

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    Are there any other fields or settings that you can’t access aside from the Enable Cookie Consent Message settings? Since you’ve already toggled it on Firefox, you can just leave it as is for now and get on with the other settings.

    Best regards,
    Ismael

    in reply to: text below logo #1471367

    Hi,

    UPDATE: We found an invalid code in the Quick CSS field and corrected it. Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: text below logo #1471366

    Hi,

    Thank you for the update.

    Where did you add the css code? Please try to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Change Portfolio item Font color depending on category #1471365

    Hey Tilman,

    Thank you for the inquiry.

    You can adjust the style of the titles in the second magazine element using this csscode:

    #top .main_color .av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf .av-magazine-title a, #top .main_color .av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf .av-magazine-title {
        color: blue;
    }

    The class name “av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf” is a unique identifier automatically generated by the theme for this specific magazine element. You can also apply your own custom css class name in the Advanced > Developer Settings panel.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    in reply to: Text after TAX field, or after tax calcualtion #1471364

    Hey Illingco,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the area where you need this text? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: Description Tab formatting #1471363

    Hey bemodesign,

    Thank you for the inquiry.

    There is a custom class name, “a-spacing-mini,” that reduces the space between the list items. How did you add this? You can try this css code to override the default style:

    ul.a-unordered-list.a-vertical.a-spacing-mini li {
        margin-bottom: 20px;
    }

    Best regards,
    Ismael

    in reply to: Lightbox: disable click through other images on page #1471362

    Hey bb,

    Thank you for the inquiry.

    Try editing the Icon element and apply a Custom CSS Class (e.g., av-popup-no-nav) in the Advanced > Developer Settings toggle. Then, add this code to the functions.php file:

    function ava_popup_init() { ?>
    <script type="text/javascript">
    jQuery(document).ready(function(){
        jQuery('.av-popup-no-nav, .av-popup-no-nav a').magnificPopup({
            type: 'image',
            midClick: true, // Allow opening popup on middle mouse click
            navigation: {
                next: false, // Disable next arrow
                prev: false  // Disable prev arrow
            }
        });
    });
    </script>
    <?php }
    
    add_action('wp_head', 'ava_popup_init');
    

    Best regards,
    Ismael

    in reply to: Form deosn’t work anymore (SOLVED) #1471361

    Hi,

    Great! Glad to know that you managed to solve the issue. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day!

    Best regards,
    Ismael

    in reply to: Change backgroundcolor of the secondary menu #1471360

    Hey langanger,

    Thank you for the inquiry.

    You can change the background color of the top header by adjusting the value of the Enfold > General Styling > Logo Area > Alternate Background Color field. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Layerslider Server Error when Saving #1471359

    Hey cheerema,

    Thank you for the inquiry.

    We were not able to reproduce the issue; we edited the Filmmaking Auditions Charlotte slider. Is this happening with a specific slider?

    Best regards,
    Ismael

    in reply to: Blanc Template: Veröffentlichung fehlgeschlagen. #1471358

    Hi,

    Thank you for the screenshot.

    Did you change the login URL? We can’t login using the default login or admin URL. Please provide the info in the private field.

    Best regards,
    Ismael

    in reply to: Search form AJAX results contains hidden products #1471357

    Hey Buskruit Internet,

    Thank you for the inquiry.

    Please try to add this filter in the functions.php file to exclude hidden products from the AJAX search:

    
    function avf_exclude_hidden_products_from_ajax_search( $search_query ) {
        parse_str( $search_query, $search_parameters );
    
        $search_parameters['meta_query'][] = array(
            'key'     => '_visibility', 
            'value'   => 'hidden',      
            'compare' => '!='          
        );
    
        return http_build_query( $search_parameters );
    }
    
    add_filter( 'avf_ajax_search_query', 'avf_exclude_hidden_products_from_ajax_search' );
    
    

    Best regards,
    Ismael

    Hi,

    Then I changed the setting at the provider that the domain should point to the subdirectory.

    What do you mean by “changed the setting at the provider”? It’s possible that this step caused the issue. Are you sure you’re searching for the correct URL or domain? Please try searching for the entries again and replace them with the current domain. Where can we check the gallery?

    Best regards,
    Ismael

    in reply to: I do not have the correct easy slider with all options #1471354

    Hi,

    Thank you for the inquiry.

    Unfortunately, there is no built-in option to delay the animation until the user scrolls to the slider. To achieve this, you can use the LayerSlider element as suggested previously. You’ll need to enable the Project Settings > Slideshow > Slideshow Behavior > Start only in Viewport option and disable the Auto-start slideshow option.

    Best regards,
    Ismael

    in reply to: Help with registering follow up #1471353

    Hey Amanda,

    Thank you for the inquiry.

    I am having a problem with the button option not styling.

    Have you tried temporarily disabling the Enfold > Performance > File Compression settings? Also, please make sure to clear the cache before checking for any changes.

    To register on the forum, you’ll need the purchase code. Please ask the previous developer for this information so that you can register on the forum.

    Best regards,
    Ismael

    in reply to: Bugs in my Enfold theme? Updating homepage crashes it. #1471297

    Hi,

    Great! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: GYM Demo Data Import has now images – Hoster OVH – #1471296

    Hi,

    Thank you for the update.

    In the database the links to the pictures seem to be wrong: http://test.kriesi.at/enfold-gym/wp-content/uploads/sites/18/2016/02/hero-2.jpg

    Have you tried using a search and replace method to update the URL (http://test.kriesi.at) with the actual URL of your OVH site? There are plugins available that can help you do this easily.

    // https://wordpress.org/plugins/better-search-replace/
    // https://wordpress.org/plugins/search-and-replace/

    Best regards,
    Ismael

    in reply to: Menue disappeared #1471295

    Hi,

    Thank you for the update.

    To ease your concerns about updating the theme, we recommend requesting your hosting provider to create a full site backup, or alternatively, you can create one yourself using plugins like UpdraftPlus or Jetpack Backup. These plugins allow you to back up your entire site so that you can quickly revert to a previous version if any issues occur during the update.

    For more details on how to update the theme, check the links below.

    // https://kriesi.at/documentation/enfold/theme-update/
    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    in reply to: Special Heading on mobile size not changing #1471294

    Hi,

    No problem! Glad we could be of help. Please don’t hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: There has been a critical error on your website. #1471293

    Hi,

    Glad to know that your hosting provider quickly fixed the issue! Also, please note that the notices above are not critical and should not affect the site. Feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Custom Widget Sidebar Not Working #1471292

    Hi,

    Thank you for the update.

    Did you install a widget logic plugin? Have you tried deactivating the plugins temporarily? Let us know once the login details are ready.

    Best regards,
    Ismael

    in reply to: Products aren’t sorted on search results page #1471291

    Hey katherinef21,

    Thank you for the inquiry.

    How did you add the sorting options on the search results page? Please note that this is a core WooCommerce feature that works only on the default shop and archive pages. It is not intended for use on search result pages. If it is essential for you to have this functionality, you may consider hiring a freelancer to help with the customization. You can find freelancers who specialize in theme customization on our customization page.

    If you have any other questions or need further assistance, feel free to reach out to us.

    Best regards,
    Ismael

Viewing 30 posts - 2,161 through 2,190 (of 66,126 total)