Forum Replies Created

Viewing 30 posts - 12,991 through 13,020 (of 67,424 total)
  • Author
    Posts
  • in reply to: 404 setup #1326316

    Hey Yory,

    Thank you for the inquiry.

    You can use the default editor or the Advance Layout Builder (ALB) to create a custom 404 page. Once the page is created, you have to set the Enfold > Theme Options > Custom Error 404 Page to the second or third option, then Select Your Custom Error 404 Page in the dropdown.

    Best regards,
    Ismael

    in reply to: WooCommerce errors not displaying with ALB #1326315

    Hey elsmore01,

    Thank you for the inquiry.

    This box pops up whenever we select an incorrect answer.

    Screenshot: https://imgur.com/AHpm7pd

    The plugin is probably looking for another container to append the error message. You may need to ask the plugin developers for additional info.

    Best regards,
    Ismael

    in reply to: Blog Masonry – gaps between images, overlapping images #1326310

    Hi,

    No problem. Please let us know if anything comes up. We will keep the thread open.

    Best regards,
    Ismael

    in reply to: Code Block usage #1326308

    Hi,

    Because it looks you are trying to create custom shortcodes to render elements with predefined options. You can do the same with the Custom Elements Templates or the Templates option. Please open new threads for the new issues.

    Best regards,
    Ismael

    in reply to: Grid row border on mobile #1326307

    Hi,

    Alright! Please feel free to open a new thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: custom.css and other avia based css are not loaded. #1326306

    Hey ovationits,

    Thank you for the inquiry.

    Did you import and export the theme options from the old site to the new one? The stylesheets or the css files in the new site are not loaded individually because they have been combined and compressed into a single file. You can deactivate the css compression in the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    in reply to: Show Portfolio Category on Portfolio Pages #1326305

    Hey Ikyo,

    Thank you for the inquiry.

    The shortcode above should still work in the latest version. But it will only show child categories and you have to provide the ID of the parent term or category. Did you use the “portfolio_category” shortcode in a text or code block?

    [portfolio_category id="ID-OF-THE-PARENT-CATEGORY"]
    

    If you want to display all categories, replace the shortcode snippet with the following code.

    function show_portfolio_category_func($atts) {
    	global $post;
    	$the_terms = get_the_terms( $post->ID , 'portfolio_entries');
    	$output = '';
    	foreach($the_terms as $term) {
    		$termlink = get_term_link($term->term_id, $term->taxonomy);
    		$output .= '<span class="portfolio_cat"><a href='.$termlink.'>'.$term->name.' </a></span>';
    	}
        return $output;
    }
    add_shortcode('portfolio_category', 'show_portfolio_category_func');

    Best regards,
    Ismael

    in reply to: renew suppurt #1326304

    Hey Gil,

    Thank you for the inquiry.

    Do you have a Themeforest account? You will have to purchase a new theme license (regular) using your account and generate a new API key. A new regular license comes with 6 months support that can be extended to 12 months. Unfortunately, you cannot extend support on an item that you did not actually purchased.

    Best regards,
    Ismael

    in reply to: Blog post element broken when Woocommerce is activated #1326301

    Hi,

    Thank you for the update.

    Can we access the file server? We will try to trace and debug the issue inside the LMS plugin. Additional info from the plugin developers will help.

    It is possible that the plugin is using the pre_get_posts filter somewhere in its code base and overrides the blog posts query. You may need to contact the developers of the Master Study LMS plugin for additional assistance regarding the issue.

    Please try to forward the above statement to the plugin developers, or just ask them if the pre_get_posts filter is used or added somewhere in the plugin.

    Best regards,
    Ismael

    in reply to: Display selected blog elements at post categories #1326291

    Hi,

    No problem! Glad we could be of help. Please feel free to open another thread should you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: BUG » full width slider height #1326290

    Hey achteins,

    Thank you for the inquiry.

    It is resizing correctly on our end as shown in the screenshot below.

    Screenshot: https://imgur.com/ccX0CiT

    Would you mind providing a screenshot of the issue? You can use imgur or dropbox for the screenshot.

    Best regards,
    Ismael

    in reply to: Code Block usage #1326256

    Hi,

    Glad to know that it is now working. Have you tried using the templates or the custom element templates features? This should allow you to create an element with predefined options based on the default elements in the builder.

    Please check the following documentation for more info.

    // https://kriesi.at/documentation/enfold/custom-element-templates/

    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: Full width easy slider left justifying image on mobile #1325987

    Hey hostworks,

    Thank you for the inquiry.

    The slider is not resizing correctly on mobile view because of this css code, which limits the height of the images.

    @media only screen and (max-width: 767px) {
    #full_slider_1 .avia-slideshow-inner, #full_slider_1 img {
        height: 200px !important;
        margin-left: -50px;
        width: 125%;
    }
    }
    

    You may need to adjust it a bit or remove it completely.

    Best regards,
    Ismael

    in reply to: Cannot get transparent header to work #1325974

    Hi Rob,

    No problem! Thank you for recommending the theme and for the continued support. Please let us know in a different thread if you need anything else.

    Have nice day.

    Best regards,
    Ismael

    in reply to: Problem Enfold / WordPress for menu #1325970

    Hi,

    Thank you for the update.

    Can we access the site? Please post the login details in the private field and make sure that the Appearance > Editpr panel is accessible.

    Best regards,
    Ismael

    in reply to: Display selected blog elements at post categories #1325969

    Hi,

    Thank you for the info.

    The post date and other meta info in the content footer is not visible because of this css code.

    .slide-meta {
        display: none !important;
    }
    

    It might have been added in the Quick CSS field. Please remove the css code, then toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    in reply to: Animated Numbers with dots do strange stuff #1325968

    Hi,

    Thank you for the clarification.

    In Europe we use the dot as a seperator for thousands. So removing the “trailing” zeroes is not a thing ;)

    I thought that was a decimal point. Using comma to separate digits or numbers are widely recognized around the globe, so replacing the dot with a comma or completely removing it should not effect how the visitors perceive the animated numbers or data. Unfortunately, adjusting the script to treat numbers separated by dots differently will require modifications that are beyond the scope of support.

    Best regards,
    Ismael

    in reply to: Fix alignment issue on one breakpoint #1325966

    Hi,

    Thank you for the clarification.

    Try to use this css code to adjust the width and left margin of the 3/4 column.

    div .av_three_fourth {
        margin-left: 2%;
        width: 73.5%;
    }
    

    Default left margin is set to 6%.

    Best regards,
    Ismael

    in reply to: WP Menu Rollover Nav Item and Effect DIV Elsewhere #1325964

    Hi,

    Great! Glad to know that it is working correctly now. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Links on page not working when results are filtered #1325963

    Hey jfoahs04,

    Thank you for the inquiry.

    Looks like you are using filters generated by a third plugin, which might be affecting how the column link works. And it seems like it is only affecting the first item in the group. Please try to ask the plugin developers for additional assistance.

    Best regards,
    Ismael

    in reply to: Grid row border on mobile #1325962

    Hey Technohead,

    Thank you for the inquiry.

    Looks like you have decided to create a copy of the grid row element and configure it specifically for mobile view. Do you still need help with it?

    Best regards,
    Ismael

    in reply to: Need Help Error Files After Update #1325961

    Hey Thomas,

    Thank you for the inquiry.

    Looks like an issue with the new post css management process. What was the version of the theme before the update? Do you actually see any issue with the site? Updating a page or post where a styling issue exists should regenerate the required css file and fix the issue.

    The site looks blank or is not yet configured when we checked.

    Best regards,
    Ismael

    in reply to: responsive mode triggered at 990 #1325959

    Hey AlpineWeb,

    Thank you for the inquiry.

    Which specific elements are you trying to hide? If you are trying to hide the social icons when the screen width is equal or less than 990px, try to use this css code.

    @media only screen and (max-width: 990px)
        .responsive #top #header .main_menu .social_bookmarks {
             display: none !important;
        }
    }

    Best regards,
    Ismael

    in reply to: Problem with CSS/JS Aggregation #1325869

    Hi,

    Thank you for the update.

    Would you mind removing the older theme completely to rule out any conflict? We may have to try and deactivate the plugins because one of them might be causing the issue. Is that alright? Is there a staging or development version of the site?

    Best regards,
    Ismael

    in reply to: WP Menu Rollover Nav Item and Effect DIV Elsewhere #1325867

    Hey LesleyJean,

    Thank you for the inquiry.

    Where are you testing this? Please provide a link to the site so that we can check the menu setup and the current modifications. Have you tried using the .css function to apply the style instead of the .attr function?

    // https://www.w3schools.com/jquery/jquery_css.asp

    Best regards,
    Ismael

    in reply to: Animated Numbers with dots do strange stuff #1325861

    Hey saschapi,

    Thank you for the inquiry.

    When you add a dot between the numbers, the theme or the script treats the numbers on both sides of the dots separately. Without the dot, this is the markup.

    <span class="avia-single-number __av-single-number" data-number_format="" data-number="32000" data-start_from="0">32000</span>
    

    With the dot, you will see this.

    <span class="avia-single-number __av-single-number" data-number_format="" data-number="32" data-start_from="0">32</span>
    <span class="avia-single-number __av-single-number" data-number_format="" data-number="000" data-start_from="0">000</span></strong>
    

    As you can see, the number 32 is separated from 000, which will then be animated in successive manner. It might be best just to omit the dot and remove the trailing zeroes.

    Best regards,
    Ismael

    in reply to: Image file sizes #1325856

    Hey Ivana,

    Thank you for the inquiry.

    The theme automatically adjusts the compression level of the uploaded images, which could lead to increase in file size. You can adjust the default quality by using this filter in the functions.php file.

    
    add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1);
    add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1);
    function avf_set_quality_mod($quality) {
    	$quality = 65;   // compression level what you like in percent
    	return $quality;
    }
    

    Quality is set to 100 by default. And if you want to prevent the generation of multiple images or thumbnails, please check the following thread.

    // https://kriesi.at/support/topic/enfold-image-sizes-3/#post-1109028
    // https://kriesi.at/support/topic/portfolio-grid-alignment-issues/#post-1306849
    // https://kriesi.at/support/topic/how-can-i-delete-all-enfold-image-sizes/

    Best regards,
    Ismael

    in reply to: Problem Enfold / WordPress for menu #1325853

    Hi,

    Did you set the current menu as main menu? You can set it in the Appearance > Menus panel. Look for the section that is shown in the screenshot below.

    Screenshot: https://imgur.com/QB3MTZR

    Best regards,
    Ismael

    in reply to: Blog post arrow button #1325852

    Hi,

    Glad to know that it is working. To adjust the icon to your preferred arrow, try this css code.

    .more-link-arrow:after {
        content: "\E88d";
    }
    

    Best regards,
    Ismael

    in reply to: Problem with main menu view in english version #1325850

    Hey Createve_Solutions,

    Thank you for the inquiry.

    You can use this css code to adjust the position of the social icons in the EN version.

    html[lang="en"] #top nav .social_bookmarks {
        position: relative;
        top: 50%;
        margin-top: -16px;
        right: -100px;
    }
    

    We just added the html[lang=”en”] selector.

    Best regards,
    Ismael

Viewing 30 posts - 12,991 through 13,020 (of 67,424 total)