Forum Replies Created

Viewing 30 posts - 9,841 through 9,870 (of 67,443 total)
  • Author
    Posts
  • in reply to: Search Page Showing Black Screen and Weird Font #1366679

    Hey sdsitetechdotcom,

    Thank you for the inquiry.

    Looks like the search page is broken or it is not loading the default template. Did you install a search plugin? The plugin might be altering the default template.

    We tried logging in to the site but the default login URL has been changed. Please provide the custom login URL in the private field.

    Best regards,
    Ismael

    in reply to: Intermittent 404 errors with Enfold and The Events Calendar #1366677

    Hi,

    Sorry for the delay. We have been monitoring the site using UptimeRobot since September 23 and according to the tool, the site has been up all the time during those period and the average response time is 344.84ms. There are no downtimes recorded in the past 119 hrs. We have also checked the status of some of the events and they all return 200, which means OK. The events loaded properly as well when we visited them directly.

    You can check the status of the events using this tool.

    // https://httpstatus.io/

    You might want to contact your hosting provider and ask them for more assistance about the issue, They might have a better way to monitor the site on their end and catch any errors.

    Do you get more errors in the logs? Did you add custom rewrite rules in the .htaccess file? Please try to flush or resave the permalinks in the Settings > Permalinks panel.

    Best regards,
    Ismael

    in reply to: Blog Posts Auto Offset Filter Not Working #1366675

    Hi,

    Thank you for the update.

    Please note that the Offset Number will only affect other posts element in the same page. The current post will not be included in the offset. If you want to exclude the current posts from the list, you can try the filter above provided by @Guenni007.

    Best regards,
    Ismael

    in reply to: ALB for any post type #1366673

    Hi,

    Thank you for the update.

    We added the same filter in the functions.php file and adjusted the name of the post type from events to event. We also edited one of the events and added a test category, which can be selected later on in the Blog Posts element. (see private field)

    Best regards,
    Ismael

    in reply to: Small Feature Request #1366671

    Hey Tim,

    Thank you for the inquiry.

    This is not possible by default but you can just apply the link to the image, then manually create a button in the caption text field either with a shortcode or custom html.

    Best regards,
    Ismael

    in reply to: WooCommerce product list element not working correctly #1366669

    Hi,

    Thank you for the info.

    The plugin actually removes the content of the catalogue list (title, price etc) based on the screenshot, probably by disabling or altering a related hook or filter. The issue has nothing to do with css.

    You may need to contact the plugin authors and ask them about the hooks or filters used by the plugin, which might be affecting the catalogue list element.

    Best regards,
    Ismael

    in reply to: Woocommece Thumbnails are square since last theme update #1366668

    Hi,

    Glad to know that the filter is working. We provided an explanation in the following thread.

    // https://kriesi.at/support/topic/bug-in-enfold-for-woocommerce-prduct-images/#post-1363586

    Using the filter just reverts the thumbnail size back to the default woocommerce thumbnail, which is required by the Woocommerce > Product Images settings.

    Best regards,
    Ismael

    in reply to: masonry gallery fade in on load? #1366667

    Hey Munford,

    Thank you for the inquiry.

    You can actually override the default masonry animation with the following css code. Just add it in the Quick CSS field or in the style.css file.

    
    @-webkit-keyframes avia_masonry_show {
      0% {
        opacity: 0.1;
      }
    
      100% {
        opacity: 1;
      }
    }
    
    @keyframes avia_masonry_show {
      0% {
        opacity: 0.1;
      }
    
      100% {
        opacity: 1;
      }
    }
    

    This is the default avia_masonry_show animation in the css > shortcodes.css file.

    /*pop up animation*/
    @-webkit-keyframes avia_masonry_show {
      0%   { -webkit-transform:translateZ(300px) translateY(200px) rotateX(-70deg); opacity: 0.1;  }
      100% { -webkit-transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
    }
    @keyframes avia_masonry_show {
      0%   { transform:translateZ(300px) translateY(200px) rotateX(-70deg); opacity: 0.1;  }
      100% { transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1;  }
    }
    
    

    Best regards,
    Ismael

    in reply to: Change colors of the cart-page #1366523

    Hey mvanstee,

    Thank you for opening a new thread.

    1 & 3.) You can use this css code to change the background color of the areas in the screenshot.

    .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra, .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: #F1F1EE;
    }
    

    2.) And this to align the quantity button to the left.

    table div.quantity {
        float: none;
        margin: 0;
        width: 130px;
    }

    Best regards,
    Ismael

    in reply to: Breadcrumb does not show hierarchy #1366515

    Hi,

    Thank you for the update.

    Another user provided a custom code using the same filter, which might work in your case.

    // https://kriesi.at/support/topic/breadcrumbs-when-a-parent-menu-item-is-a-custom-link/#post-1366015

    Just replace this line with your own condition.

    if (is_page([36, 38, 40, 42, 44])) {
            $parentIsCustomLink = true;
            $parentBreadcrumb = '<a href="https://www.mydomain.com/our-office-highlights/" title="About" rel="home" class="trail-begin">About</a>';
        }
    

    Or post the login details in the private field so that we can test it in your installation directly.

    Best regards,
    Ismael

    in reply to: Abstand im Footer (Top / Botom) #1366511

    Hey katharinabartas,

    Thank you for the inquiry.

    The site is currently on maintenance mode. Please provide the login details in the private field so that we can check the page.

    Did you use a color section element? Try to set the Layout > Margin & Padding > Section Padding settings to the No Padding.

    Best regards,
    Ismael

    in reply to: Woocommece Thumbnails are square since last theme update #1366506

    Hey WebbR,

    Thank you for the inquiry.

    Adding this filter in the functions.php file should help.

    dd_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }
    

    This will revert the thumbnails back to default (woocommerce_thumbnail).

    Best regards,
    Ismael

    in reply to: Schriftgrösse im Hamburger Menu ändern #1366505

    Hey sroetheli,

    Thank you for the inquiry.

    You can adjust the style of the burger menu items in the Enfold > Advanced Styling panel. Look for the Menu Links in overlay/slide out in the dropdown, insert it, then adjust its style.

    You can also use this css code.

    .html_av-overlay-side #top #wrap_all .av-burger-overlay li a {
        line-height: 1.3em;
        height: auto;
        padding: 15px 50px;
        display: block;
        text-align: left;
        text-decoration: none;
        font-size: 20px;
    }

    Best regards,
    Ismael

    in reply to: Anchor link in tabs #1366503

    Hi,

    When we click Alberta in the map, it redirects to a different page and Saskatchewan scrolls down to the video below the tab. What is supposed to happen when you click on the Saskatchewan area in the map?

    We may need to access the site in order to check the issue properly. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: WooCommerce product list element not working correctly #1366499

    Hi,

    Thank you for the screenshots.

    We are still not sure what is happening with the catalogue element. Did you modify any of the template files in the theme? Please try to deactivate the plugins temporarily, then purge the cache. Let us know if that helps.

    Best regards,
    Ismael

    in reply to: Old code in my functions.php – actual or not? #1366497

    Hey evas49,

    Thank you for the inquiry.

    The theme defaults to wp_mail so the avf_form_use_wpmail filter above is not really necessary. Removing the filter should not affect the forms.

    Best regards,
    Ismael

    Hey Marina,

    Thank you for the inquiry.

    The images in the lightbox container are displayed correctly when we checked the site. Did you figure out the issue? If not, please provide a screenshot using imgur, savvyify or dropbox. Thanks.

    Best regards,
    Ismael

    in reply to: How to set image sizes / aspect ratio in product catalog #1366493

    Hey j0schi,

    Thank you for the inquiry.

    The theme sets the product thumbnail size to 450x450px by default but you can use this filter in the functions.php file to revert the product thumbnail settings back to default.

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }
    

    Related threads:

    // https://kriesi.at/support/topic/bug-in-enfold-for-woocommerce-prduct-images/
    // https://kriesi.at/support/topic/woocommerce-product-image-size-bug/

    Best regards,
    Ismael

    in reply to: ACF Field Groups Showing Up Again #1366490

    Hey philthebass,

    Thank you for the inquiry.

    We modified the filter a bit to make it work with the blog posts grid element. Please remove the previous code and add the following in the functions.php file.

    function avia_post_slide_query_mod($query, $params) {	
        foreach($query['post_type'] as $key => $value) {
            if( $value == 'acf-field-group' ) {
                unset($query['post_type'][$key]);
            }      
        }
    
        return $query;
    }
    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2);
    

    Best regards,
    Ismael

    in reply to: Show content in div on click #1366489

    Hey steviger,

    Thank you for the inquiry.

    Have you tried using the Accordion or Tab elements? They don’t look exactly like the screenshot but clicking on each toggle or tab should open their corresponding content.

    Best regards,
    Ismael

    in reply to: Massive CSS issues – classes not editable cause gone #1366487

    Hi,

    Thank you for the inquiry.

    Where did you add the strong tag? The issue might have occurred because you forgot to close the span tag.

    <span class="headerinoverlay">TEXT ||MISSING CLOSING TAG HERE||
    

    Have you tried to manually edit the shortcode from the shortcode field? You have to set the Advance Layout Builder (ALB) to debug mode first.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: CSS tweaks #1366486

    Hi,

    Thank you for the update.

    To adjust the background of the woocommerce pages (cart, checkout etc), you can try this css code.

    .woocommerce-page .main_color.container_wrap {
        background: red;
    }

    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.

    Thanks!

    Best regards,
    Ismael

    in reply to: Removed comment -Layout broken #1366485

    Hi,

    Thank you for the screenshot.

    Which editor are you using, or which editor did you copy the code from? You might have copied something else other than css code. Try to remove the code, open the css on a different editor, copy it then paste it to the editor. Or open the file via FTP, then edit it in your IDE. You can also delete the file entirely via FTP and upload a modified one without the unwanted char.

    Best regards,
    Ismael

    in reply to: How to find unused CSS #1366483

    Hi,

    You can try the Coverage tab in Chrome Devtools but this will return all css that are not active or css rules that are only used when a specific setting is enabled and it will only capture unused code in the current page.

    If you ran the tool in the home page of the default Enfold demo for example, the code below will be captured as unused if the Enfold > General Layout > Stretched Or Boxed Layout settings is set to Stretched Layout.

    html.html_boxed {
        background: #ffffff center center repeat scroll;
    }
    

    Please check the link below for more info.

    // https://developer.chrome.com/docs/devtools/coverage/

    You can also try WPRocket > Activate Remove Unused CSS. Make sure to create a site backup or a restore point before enabling it.

    // https://www.wpbeginner.com/wp-tutorials/how-to-remove-unused-css-in-wordpress-the-right-way/

    Best regards,
    Ismael

    in reply to: av-masonry-date – remove? #1366481

    Hi,

    Thank you for the info.

    Have you tried applying a bottom margin to the read more button after hiding the date?

    .av-masonry-read-more {
    	margin-bottom: 30px;
    }
    

    You can also adjust the bottom padding of the masonry item container.

    Best regards,
    Ismael

    in reply to: CSS tweaks #1366324

    Hey mvanstee,

    Thank you for the inquiry.

    1.) You can use this css code to adjust the color of the mail icon on hover.

    #top #wrap_all .av-social-link-mail:hover a, #top #wrap_all .av-social-link-mail a:focus {
        color: blue;
        background-color: red;
    }
    

    2-3.) You can adjust the main color in the Enfold > General Styling > Main Content panel. Look for the Main Content Background Color field. If you want to manually adjust it with css, use this code.

    .main_color, .main_color .site-background, .main_color .first-quote, .main_color .related_image_wrap, .main_color .gravatar img .main_color .hr_content, .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a, .main_color .tweet-text.avatar_no, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title, .main_color .related-format-icon, .grid-entry .main_color .avia-arrow, .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img, .main_color .grid-content, .main_color .av-share-box ul, #top .main_color .av-related-style-full .related-format-icon, .main_color .related_posts.av-related-style-full a:hover, .main_color.avia-fullwidth-portfolio .pagination .current, .main_color.avia-fullwidth-portfolio .pagination a, .main_color .av-hotspot-fallback-tooltip-inner, .main_color .av-hotspot-fallback-tooltip-count {
        background-color: red;
        color: #003d1d;
    }
    

    Best regards,
    Ismael

    in reply to: Timeout after 5 min. on page change #1366320

    Hi,

    Sorry for the delay. Unfortunately, we are still not sure why this error occurs in that page. Have you tried deleting the page completely and start it again from scratch?

    Best regards,
    Ismael

    in reply to: Breadcrumbs when a parent menu item is a custom link #1366314

    Hi,

    Thank you for sharing this code. This will definitely help other users. 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: Portfolio Entry Items leading to 404 File Not Found Error #1366308

    Hey connect4consulting,

    Thank you for the inquiry.

    The URL of the portfolio items contain a generic path called /site/, which might be in conflict with other URLs. Have you tried replacing the value of the Settings > Permalink > Portfolio Items Base field with a different path? You should also try and disable the cache and security plugins temporarily.

    The portfolio items are displaying now because we resaved the permalinks. Unfortunately, we are not yet sure why the issue occurs.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You should also set the installation to debug mode and enable the error logs in order to get more info about the error.

    // https://wordpress.org/support/article/debugging-in-wordpress/

    Best regards,
    Ismael

Viewing 30 posts - 9,841 through 9,870 (of 67,443 total)