Forum Replies Created

Viewing 30 posts - 13,681 through 13,710 (of 66,898 total)
  • Author
    Posts
  • in reply to: filter custom taxonomies #1308436

    Hi,

    Glad to know that it is working correctly.

    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: Fix Coupon Code Not Accepted #1308435

    Hi,

    We cannot find the button when we checked the site, and the coupon container is still in its default place. Did you add the code from the article?

    Best regards,
    Ismael

    in reply to: Google Map Marker Size Increase #1308434

    Hi,

    To unregister the script with the handle avia_google_maps_api_script, you can use the wp_deregister_script and the wp_dequeue_script functions. To register it back, create a copy of the avia_google_maps_api.js in your child theme, use the same handle with the wp_register_script function and the new file path.

    Example:

    
    function ava_admin_enqueue_scripts() {
        wp_deregister_script( 'avia_google_maps_api_script' );
        wp_dequeue_script( 'avia_google_maps_api_script' );
        wp_register_script( 'avia_google_maps_api_script' , PATH_TO_CHILD_THEME_SCRIPT, array( 'jquery' ), "4.8.3", true );
    }
    add_action( 'admin_enqueue_scripts', 'ava_admin_enqueue_scripts', 10 );
    

    Make sure to adjust the path (PATH_TO_CHILD_THEME_SCRIPT) of the file.

    Best regards,
    Ismael

    Hey BMMtOliveLC,

    Thank you for the inquiry.

    We may have to inspect the site first in order to understand the issue properly. Please provide a link to the site with the sub menu issue — place the link in the private field. A screenshot will also help.

    Best regards,
    Ismael

    in reply to: How to make masonry grid gradient and text top left #1308430

    Hey whdsolutions,

    Thank you for the inquiry.

    You can use this css code to change the transparent background of the overlay to color gradient.

    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
        background: rgb(2,0,36);
        background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(255,255,255,0) 100%);
    }
    

    You can visit this site or tool to adjust the color.

    // https://cssgradient.io/

    Best regards,
    Ismael

    in reply to: Is Enfold 4.8.3 having a problem with OS X Big Sur? #1308429

    Hey keydeelang,

    Thank you for the inquiry.

    We cannot find the section or the buttons anywhere in the site. Would you mind providing a direct link to the page where we can see this section?

    Best regards,
    Ismael

    in reply to: Adjust Size of Portfolio Grid Ajax Image #1308427

    Hey MikeTandySwag,

    Thank you for the inquiry.

    The site asked for authentication when we tried to visit it. Please provide the login account in the private field. For the meantime, you can try this css code in the Quick CSS field to adjust the width of the preview image container.

    .portfolio-preview-image {
        width: 30%;
    }
    

    Best regards,
    Ismael

    Hey Ikyo,

    Thank you for the inquiry.

    Instead of the previous code, try to use the filter that we provided in the following thread.

    // https://kriesi.at/support/topic/custom-post-type-not-displaying-correctly/#post-1299723

    Make sure to define the name of the post type where you need to enable the advance layout builder.

    Best regards,
    Ismael

    in reply to: Could not choose Google reCaptcha #1308300

    Hey agentur2c,

    Thank you for the inquiry.

    The site probably contains an older version of the theme. Please check the theme in the Appearance > Themes panel and make sure that the current version is 4.8.3. If not, you may have to download the latest version of the theme from your Themeforest account and update it manually via FTP.

    The following links should help.

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

    Best regards,
    Ismael

    in reply to: full-width button hover state #1308299

    Hey John,

    Thank you for the inquiry.

    Try to apply the hover state in the avia-button-wrap container instead of the button. Or replace the css code with the following.

    
    /* Background on hover */
    .avia-button-wrap:hover .avia-button {
        background-color: #257fc7 !important;
    }

    Best regards,
    Ismael

    in reply to: Insert Mapbox in a Contact page… #1308295

    Hey Paolo,

    Thank you for the inquiry.

    Do they provide an embed script or an iframe code? You should be able to insert the embed script in a text or code block element in the advance layout builder.

    Best regards,
    Ismael

    in reply to: Add noindex on portfolio entry pages #1308294

    Hey Baobufan,

    Thank you for the inquiry.

    The solution that we provided in the following thread should help.

    // https://kriesi.at/support/topic/set-no-index-to-portfolio-items/#post-1203180

    Best regards,
    Ismael

    in reply to: Update icons #1308288

    Hey Charlotte,

    Thank you for the inquiry.

    Those are Icon Box elements inside 1/4 column elements. You can modify them in the Advance Layout Builder. You can also check the demo.

    // https://kriesi.at/themes/enfold-2017/elements/icon-box/

    Best regards,
    Ismael

    in reply to: Unable to log in to the admin panel #1308286

    Hi,

    Thank you for the inquiry.

    We tried to access the server via FTP but the login account seems to be invalid. Please check the info carefully or provide another account. Did you modify the layer slider shortcode in the child theme?

    Best regards,
    Ismael

    in reply to: Hosting fonts with FTP #1308282

    Hi,

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

    Have a nice day.

    Best regards,
    Ismael

    in reply to: ENFOLD PROBLEMS #1308278

    Hey AndreaMantegazza,

    Thank you for the inquiry.

    1.) You can set the menu to switch to icon or burger menu earlier or when the screen width is less than 989px. The option can be found in the Enfold > Main Menu > General > Menu Items for mobile settings.

    2.) Did you add custom code to move the onsale badge beside the price? It should be on top of the product image by default. To fix it, try to move the badge upwards with this css code.

    #top .onsale {
        margin-top: -60px;
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    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: Problem with color section with a customized ID #1308275

    Hi,

    Thank you for the update.

    We were able to reproduce the issue on initial load but then it works fine after refreshing the page. Is it working correctly when you remove the wp-spaios-slider inside the Unni imu section? It is possible that the slider only loads once the document is scrolled or when it is in view causing a layout shift, which is affecting the supposed landing or anchor position.

    You should also try to disable the animations of the elements.

    Best regards,
    Ismael

    in reply to: Portfolio grid hover like masonry grid hover #1308274

    Hi,

    Glad to know that you managed to improve the css code. Now, regarding the layout shift, it seems that the script is still calculating the height of the grid content because we set the transition property to include all css properties including the position. To change it, try to set the transition property so that it only affect the opacity. Change this line..

    transition: all 0.4s ease-in-out;
    

    .. to.

    transition: opacity 0.4s ease-in-out;
    

    Best regards,
    Ismael

    in reply to: Add fx border to fullwidth sub menu #1308272

    Hey webWahine,

    Thank you for the inquiry.

    Looks like the full width sub menu is only available in the home page. Are you trying to highlight the active menu item? The solution that we provided in the following thread might help.

    // https://kriesi.at/support/topic/enfold-gaming-demo-menu-functionality-on-sub-menu

    Best regards,
    Ismael

    in reply to: Rumble Icon available in 'Social Profiles' section #1308271

    Hey Kyle,

    Thank you for the inquiry.

    If you have an svg file of the Rumble logo, you can upload it to fontello and convert it to an icon file. You can then upload it in the Enfold > Import/Export > Iconfont Manager as a custom icon. You will then have to register the new social icon and assign the custom icon to it.

    Please check the following documentation for more info.

    // https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options

    Best regards,
    Ismael

    in reply to: height of the underline in hover/active main menu #1308269

    Hey Justin,

    Thank you for the inquiry.

    You might be referring to the active menu indicator. To adjust its style, you can start with the following css code.

    .avia-menu-fx {
        position: absolute;
        bottom: -1px;
        height: 5px;
        z-index: 10;
        width: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
    }
    

    Best regards,
    Ismael

    Hey denisechapman,

    Thank you for the inquiry.

    Yes, this should be possible by editing the header.php template directly or by adding a widget area inside the header. For more info, please check the following documentation.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    You can also check the header layouts in the same documentation.

    // https://kriesi.at/documentation/enfold/header/#header-layouts

    Best regards,
    Ismael

    in reply to: BBPress can't create new topics #1308255

    Hey amyteslin,

    Thank you for the inquiry.

    You might have to login first before creating a new topic. There is actually a notification below the topic or category list.

    You must be logged in to contribute.
    

    We tried to login using the account above but it seems to be invalid. Please check the info carefully or provide another account.

    Best regards,
    Ismael

    Hi,

    The canonical URL actually exists in the posts as you can can see in the example below.

     	<link rel="canonical" href="https://e-site.com/b2b-koopsignalen/">
    

    Are you using the Yoast plugin? You can manually enable it the plugin’s settings.

    // https://yoast.com/help/canonical-urls-in-wordpress-seo/

    Best regards,
    Ismael

    in reply to: Tab Section problem, doesnt show full content #1308248

    Hi,

    Would you mind posting the login details in the private field? Please make sure that the Appearance > Editor panel is accessible so that we could edit the files and debug the issue properly.

    Best regards,
    Ismael

    in reply to: portfolio items url presonalized #1308247

    Hey Empatica,

    Thank you for the inquiry.

    You can try the solution that we provided in the following thread.

    // https://kriesi.at/support/topic/portfolio-categories-into-url-permalink/#post-735882

    These articles and documentation should also help.

    // https://kellenmace.com/remove-custom-post-type-slug-from-permalinks/
    // https://developer.wordpress.org/reference/hooks/post_type_link/

    And you should also try this plugin.

    // https://wordpress.org/plugins/wp-permastructure/

    Best regards,
    Ismael

    in reply to: Tag archive #1308131

    Hi,

    Where did you add the code? We cannot find it in the functions.php file. Duplicating the function might break the site, so we did not add it.

    Best regards,
    Ismael

    in reply to: Mobile device display order #1308129

    Hi,

    Glad to know that you figured it out.

    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: masonry gallery caption #1308128

    Hi,

    for now what i do is swapping the two fields.

    Yes, that is actually what we are suggesting because by default, the theme displays whatever is the value of the title attribute inside the lightbox. We could change this but we have to modify the \enfold\config-templatebuilder\avia-shortcodes\av-helper-masonry.php file.

    Best regards,
    Ismael

    in reply to: Parallax effect with text over image #1308047

    Hi,

    Thank you for the update.

    We added a 1/1 column element inside the color section and move the text inside it. We then applied a background color to the column and set the transparency to 50%. Is that what you are trying to do?

    Best regards,
    Ismael

Viewing 30 posts - 13,681 through 13,710 (of 66,898 total)