Forum Replies Created

Viewing 30 posts - 6,721 through 6,750 (of 67,463 total)
  • Author
    Posts
  • in reply to: Auto-adjusting tab section height to content #1425536

    Hi,

    We’ll keep the thread open. Let us know if anything comes up.

    Best regards,
    Ismael

    in reply to: Problem with news page and news breadcrumb #1425533

    Hi,

    Thank you for the update.

    That is the default behavior or trail pattern of the breadcrumb option in the theme. If you need more options for your breadcrumb navigation, you could consider installing plugins such as the following.

    // https://wordpress.org/plugins/breadcrumb/
    // https://wordpress.org/plugins/breadcrumb-navxt/

    You could also add this filter in the functions.php file to adjust the breadcrumb trail and specify your own links based on certain conditions.

    function avia_breadcrumbs_trail_mod($trail) {
               if( is_singular( 'post' ) ) {
    	         $trail[1] = '<a href="https://site.com/news" title="News Page" rel="">News Page</a>';
               }
    	   return $trail;
      }
      add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);
    

    Please make sure to replace the value of the href attribute with the actual URL of the news page.

    Best regards,
    Ismael

    in reply to: MENU BAR ON NEW PAGE IS NOT FUNCTIONING #1425532

    Hey bconc1,

    Thank you for the inquiry.

    Did you select a main menu (Enfold Main Menu) in the Appearance > Editor panel? If you haven’t created a main menu yet, please check the documentation below for more info.

    // https://codex.wordpress.org/WordPress_Menu_User_Guide#Adding_Your_Menu_to_Your_Site
    // https://wordpress.com/support/menus/create-a-menu/#menu-locations

    Best regards,
    Ismael

    Hey paoluccimarketing2015,

    Thank you for the inquiry.

    The screenshot above is not accessible. Would you mind uploading it again using platforms like Savvyify, Imgur or Dropbox? Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Submenü Abstand #1425528

    Hey Martin,

    Thank you for the inquiry.

    You can use this css code to adjust the height of the submenu items and increase the space around them.

    #top #wrap_all .av-main-nav ul > li > a {
        line-height: 1.4em;
        min-height: 33px;
        padding: 10px 16px;
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Add additional link in contact form #1425527

    Hi,

    Thank you for the update.

    If you need to append privacy policy message to the contact form with a checkbox, you can do so in the Enfold > Privacy & Cookies > Privacy Policy panel. Look for the “Append a privacy policy message to template builder contact forms?” option and enable it. You don’t need to add the Custom HTML field.

    Best regards,
    Ismael

    in reply to: no fix for justified test #1425526

    Hi,

    Thank you for the update.

    The css modification above should have worked. Please make sure that there are no invalid css code such as missing brackets or semicolons. You can validate the css using the following tool.

    // http://csslint.net/

    You can also add this css code.

    .entry-content .wp-block-kadence-rowlayout.alignfull {
        text-align: left;
    }

    This is how the excerpt should display after adding the css.

    Screenshot: https://1drv.ms/i/s!AjjTfXSRbKTvgrdDwSLRigEGg5quKQ?e=uXyt9M

    Best regards,
    Ismael

    Hey lanlion2003,

    Thank you for the inquiry.

    In order to embed a PDF viewer in a page, you will have to use the default File element from the block editor, or install a separate plugin such as the following.

    // https://wordpress.org/plugins/pdf-embedder/

    Please check the articles below for more info.

    // https://wordpress.com/support/embed-a-pdf-file/
    // https://www.wpbeginner.com/plugins/how-to-add-a-pdf-viewer-in-wordpress

    Best regards,
    Ismael

    in reply to: Search box is not displayed properly on mobile.. #1425522

    Hi,

    Thank you for the screenshot.

    We also provided a screenshot of the site in the private field. Please toggle or temporarily disable the Enfold > Performance > File Compression settings to regenerate the scripts and stylesheets. You can re-enable the file compression settings once you’re done with the modifications.

    Best regards,
    Ismael

    in reply to: Are Icon ToolTips SEO Friendly? #1425375

    Hey wildturkeyway,

    Thank you for the inquiry.

    There is no option for an alt attribute in an icon element, but you can add it manually with a script. Please edit the Icon, go to the Advanced > Developer Settings panel, then in the Custom CSS Class field, add the class name “av-icon-with-alt-a”. After that, add this code in the functions.php file.

    function av_custom_inline_script()
    {
        wp_add_inline_script( 'jquery', 
            "
        (function($) {
            // add alt text to icon
            $(document).ready(function() {
                var altxt = 'ADD YOUR ALT TEXT HERE';
                $('.av-icon-with-alt-a').attr('alt', altxt);
            }); 
        })(jQuery);
        "
        );
    }
    add_action( 'wp_enqueue_scripts', 'av_custom_inline_script' );
    

    You can replace the alt text by editing this line.

    var altxt = 'ADD YOUR ALT TEXT HERE';
    

    Best regards,
    Ismael

    in reply to: Incorrect font on mobile #1425371

    Hey navindesigns,

    Thank you for the inquiry.

    The font is not loading properly because of SSL issues, causing mixed content errors such as the following.

    The content must be served over HTTPS.
    cookie-policy/:1 Mixed Content: The page at 'https://www.site.com.uvirt133.active24.cz/cookie-policy/' was loaded over HTTPS, but requested an insecure font 'http://www.site.com.uvirt133.active24.cz/wp-content/uploads/avia_fonts/type_fonts/poppins/poppins-black.ttf'. This request has been blocked; the content must be served over HTTPS.
    

    It’s also possible that the font was uploaded before configuring the SSL certificate. You may need to delete the previous font and upload it again.

    Best regards,
    Ismael

    in reply to: woocommerce on phone #1425369

    Hi,

    Thank you for the update.

    The previous css code should have worked, but you can try this one instead.

    @media only screen and (max-width: 768px) {
      /* Add your Mobile Styles here */
      .responsive #top #main .products .product {
        margin: 0 0 20px 0;
        width: 50%;
      }
    }

    Please make sure 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: Search box is not displayed properly on mobile.. #1425367

    Hi,

    Thank you for the update.

    The modification seems to be displaying correctly on our end. Please make sure to perform a hard refresh, remove the cache or temporarily disable the Enfold > Performance > File Compression settings before checking the page.

    Best regards,
    Ismael

    Hey Timothy,

    Thank you for the inquiry.

    Have you tried adjusting the style of heading elements in the Enfold > Advanced Styling panel? Instead of manually adding your css modifications, try to adjust the style of some of the theme elements in the Advanced Styling panel. You can also explore additional options in Enfold > General Styling > Typography panel. And while editing the site, try to temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Buttons Shop Page #1425365

    Hey Gianluca,

    Thank you for the inquiry.

    Did you add the following css code? It sets the opacity of the button container to 0.2, which makes the buttons transparent.

    .avia_cart_buttons {
        opacity: 0.2;
        border-top-width: 1px;
        border-top-style: solid;
        padding: 10px;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }

    Try to set the opacity back to 1.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    What happens when you adjust the display property from block to inline-block?

    Best regards,
    Ismael

    in reply to: Customizing Text on Author Page #1425363

    Hi,

    Thanks for the update.

    If you’ve installed a child theme, you can create duplicates of the template files and override the ones in the parent theme to retain modifications after a theme update.

    // https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Ismael

    in reply to: Enfold Creative Studio Demo Heading #1425362

    Hi,

    Thank you for the updat.e

    You can adjust the description of the menu items in the Appearance > Menus panel. If the Description field is not available, go to the Screen Options and under the Show advanced menu properties, toggle the Description field.

    Best regards,
    Ismael

    in reply to: CSS style the woocommerce search bar #1425361

    Hey Yuli,

    Thank you for the inquiry.

    How did you add the product search bar in the page? Please provide the site URL so that we can inspect the search field properly.

    Best regards,
    Ismael

    in reply to: Image slightly zoom image broken #1425360

    Hi,

    Thanks for the info.

    There’s a copy of the footer.php and header.php file in your child theme. You have to make sure that these template files are updated.

    Best regards,
    Ismael

    in reply to: Move down bullet points #1425359

    Hey pelgrimrat,

    Thank you for the inquiry.

    For some reason, the position of the marker is not adjustable. Please remove the previous modification, then add this css code instead.

    .entry-content-wrapper div li:before {
        content: '';
        width: 8px;
        height: 8px;
        display: block;
        background: #ff9001;
        border-radius: 100%;
        float: left;
        top: 8px;
        position: relative;
        margin-right: 8px;
    }

    Best regards,
    Ismael

    in reply to: Problem with news page and news breadcrumb #1425358

    Hi,

    Thank you for the info.

    We visited a post in the “design-proposals” category, and when we accessed the category through the breadcrumb, it correctly redirected to the category page. Please check the links in the private field. How can we reproduce the issue?

    Best regards,
    Ismael

    in reply to: Page Template Not Loading #1425357

    Hey NicomIT,

    Thank you for the inquiry.

    Have you tried creating a new page while the cache plugin is disabled? It’s possible that the cache plugin is causing the issue. We may have to access the site in order to check this further. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Add additional link in contact form #1425356

    Hey karinkropik,

    Thank you for the inquiry.

    Have you tried inserting a Custom HTML field to the contact form? You can use this to add descriptions with custom links and other elements. Please edit the contact form, add a new field, then set the Content > Form Element Type to Custom HTML: Add a description.

    Best regards,
    Ismael

    in reply to: Auto-adjusting tab section height to content #1425193

    Hey Marc,

    Thank you for the inquiry

    We can reproduce the issue but we are not yet sure what is causing it. Please provide the login details in the private field so that we can check the site further.

    Best regards,
    Ismael

    in reply to: Hook missing in new update of Enfold #1425192

    Hi,

    Thank you for the update.

    To remove the hyphens after every word, try to replace this line:

    $categories = explode(',', $getstr);
    

    with:

    $categories = explode(',', str_replace('-', ' ', $getstr));
    

    Please follow @Guenni007’s instructions above to replace commas with pipes.

    Best regards,
    Ismael

    in reply to: Dynamic_Avia folder full of thousands of files #1425188

    Hey envatobunny,

    Thank you for the inquiry.

    Disabling the Enfold > Performance > File Compression settings should halt the generation of compressed stylesheets and scripts in the dynamic_avia folder. You can also add the following filter in the functions.php file to prevent the creation of post css files.

    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
    

    After disabling compression and the post css file, you can manually delete the contents of the dynamic_avia folder. However, please make sure to create a site backup or restore point first before proceeding with the deletion.

    Best regards,
    Ismael

    in reply to: Interested in Enfold Restaurant WordPress Theme #1425187

    Hey Christian Klein,

    Thank you for your interest in the theme.

    The demo relies on the Woocommerce plugin and one of its extensions in order to provide online ordering, delivery and booking. If you want to learn more how this plugin works, please check the links below.

    // https://woo.com/documentation/woocommerce/getting-started/
    // https://woo.com/document/introduction-to-woocommerce-bookings/woocommerce-bookings-store-manager-guide/

    Best regards,
    Ismael

    Hi,

    Thanks for following up.

    We’ve found the following error in the page which seems to be related to the footer.php file. Did you modify this template file in your child theme?

     Undefined array key "footer_option" 
    

    Please make sure to get the latest version of the template file from the parent theme.

    Best regards,
    Ismael

    in reply to: can't use the support forum #1425184

    Hi,

    Welcome to the forum! Let us know if you have questions or modification requests about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 6,721 through 6,750 (of 67,463 total)