Forum Replies Created

Viewing 30 posts - 5,161 through 5,190 (of 67,469 total)
  • Author
    Posts
  • in reply to: Builder elements to shortcodes #1443219

    Hi,

    You can use the Page Content element’s shortcode along with template hooks to insert it below the related products section. Example:

    add_action('woocommerce_after_single_product_summary', function() {
     echo do_shortcode("[av_postcontent link='page,3206' av_uid='av-lw4q0mos' sc_version='1.0']";
    }, 25);
    

    Best regards,
    Ismael

    in reply to: About the “Enfold” theme update #1443174

    Hi,

    Thank you for the update.

    I can’t update from version (3.5.2), what should I do?

    The automatic update through the dashboard will no longer work on this version. You will have to download the latest version of the theme from your Themeforest account and update your installation by manually uploading the theme files via S/FTP. Please refer to the link below for more info:

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    To post a screenshot, you can use 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.

    Best regards,
    Ismael

    in reply to: Personal takens have issues. #1443173

    Hey zhengqinglan,

    Thank you for the inquiry.

    According to the error message, the token lacks the required permissions. Please review the documentation below and generate another token, ensuring that the necessary permissions are checked.

    // https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token

    Make sure to enable these scopes:

    View and search Envato sites (checked by default) (Required)
    View the user’s Envato Account username
    View the user’s email address
    View the user’s account profile details
    Download the user’s purchased items (Required)
    Verify purchases of the user’s items
    List purchases the user has made (Required)

    Best regards,
    Ismael

    in reply to: Formatting Issue on Website #1443148

    Hey byaron22,

    Thank you for the inquiry.

    The site looks fine on our end; we don’t see any layout issues. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. 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: the page is different on android 6.0 vision #1443147

    Hey Yaphoon,

    Thank you for the inquiry.

    Android 6.0 is no longer supported since 2022 or has reached its end of life support from Google. We recommend using browsers from the latest version of the OS or use major browsers such as Chrome or Firefox.

    Best regards,
    Ismael

    in reply to: Author Archives – Format and H1 #1443145

    Hi!

    Thank you for the inquiry.

    This is possible but you have to modify or override the author.php file directly. Please edit the file, then replace the content with the following code:

    // https://pastebin.com/j503Gyva

    After editing the file, add this css code to correct the layout of the post entries:

    .template-author .post-entry {
        position: relative;
        clear: none;
    }
    

    Regards,
    Ismael

    in reply to: Blurry images #1442799

    Hi,

    Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. 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: How to get a different blog format ? #1442798

    Hi,

    Thank you for the update.

    You can use the avf_magazine_excerpt_length filter in the functions.php file to adjust the length of the excerpt of the magazine entries.

    add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_length_mod', 10, 1);
    function avf_magazine_excerpt_length_mod($excerpt) {
        $excerpt = 100;
        return $excerpt;
    }
    

    Best regards,
    Ismael

    in reply to: distance below and intermediate line in white #1442761

    Hi,

    would it still be possible to insert the white vertical lines as in the main menu.

    To add white vertical lines or separator between the menu items, please add this css code.

    #top .av-submenu-container li a {
      border-right: 1px solid #ffffff;
    }
    
    #top .av-submenu-container li:last-child a {
      border-right: 0;
    }
    

    Best regards,
    Ismael

    in reply to: Builder elements to shortcodes #1442760

    Hi,

    Then I go to another page and add that shortcode that will be displayed.

    Looks like the Page Content element might be of use here. You can use this element to display the content of another page. If this is not the case, then I’m afraid you’re out of options. You may need to look for a plugin or extension.

    Best regards,
    Ismael

    in reply to: Padding left + right for header with widget #1442759

    Hey agenturwendt,

    Thank you for the inquiry.

    You can add this css code to adjust the space on both sides of the header on desktop view only.

    @media only screen and (min-width: 990px) {
    
      /* Add your Desktop Styles here */
      .responsive .header_color .header_bg {
        background-position: 150px top;
      }
    
      .responsive #top #header_main .container,
      .responsive #top #header_main .container .main_menu {
        padding-left: 20px !important;
        padding-right: 80px !important;
      }
    
      .responsive #top #header #header_main .inner-container .widget {
        left: 80px;
      }
    }

    Best regards,
    Ismael

    in reply to: open new thread not an option in support #1442758

    Hey Keith Lynch,

    Thank you for the inquiry and welcome to the forum! You can open a new thread using the form in the following link: https://kriesi.at/support/forum/enfold/#new-post

    Best regards,
    Ismael

    in reply to: Support for Enfold #1442757

    Hey Robert Sink,

    Thank you for the inquiry and welcome to the forum! You can open a new ticket using the form in the following link: https://kriesi.at/support/forum/enfold/#new-post

    Best regards,
    Ismael

    in reply to: Add Amazon style search bar in top menu #1442756

    Hi,

    You can add this css code to adjust the minimum width of the search bar on desktop view:

    @media only screen and (min-width: 990px) {
    
      /* Add your Desktop Styles here */
      .av-logo-container .inner-container .widget #searchform {
        width: 100%;
        min-width: 400px;
      }
    }

    Best regards,
    Ismael

    in reply to: Woocommerce product listing per page not working #1442755

    Hey hostworks,

    Thank you for the inquiry.

    The product count filter is working correctly on our installation. Did you install any product extensions or plugins? Please try to deactivate the extensions temporarily, then test the count filter again.

    Best regards,
    Ismael

    in reply to: Images not exist in rankmath sitemap #1442754

    Hi,

    Have you tried submitting your sitemap to Google again? Please note that it might take some time for the search results to be updated.

    // https://support.google.com/webmasters/answer/7451001?hl=en#zippy=%2Csubmit-a-sitemap

    Best regards,
    Ismael

    in reply to: Submenu over full width only on the PC? #1442753

    Hey schweg33,

    Thank you for the inquiry.

    You can control the visibility of the element on different screen sizes by adjusting the elements’ options in the Advanced > Responsive > Element Visibility settings. Let us know if you need more info about the Element Visibility options.

    Best regards,
    Ismael

    in reply to: VALID PURCHASE CODE #1442752

    Hey Shirley Studebaker,

    Thank you for the inquiry.

    Are you using the same email address as the one you’re using here when you try to create an account in the forum? Upon checking, the email address is already registered, but it’s attached to a different purchase code. Please try using a different email address or recover your previous account.

    Best regards,
    Ismael

    in reply to: Web Page error with enfold #1442751

    Hey keep12,

    Thank you for the inquiry.

    PHP message: ******* Font config file not found (or empty) for font ‘flaticon’ at expected path:

    It appears to be an issue with a custom icon font. Did you upload your own icon fonts using the Iconfont Manager? You might have accidentally deleted the config.json file from the uploads/avia_fonts/flaticon/ folder. Please try to delete the custom font from the Iconfont Manager, then upload it again.

    Best regards,
    Ismael

    in reply to: Pricing Table Not Aligning #1442750

    Hi,

    Can we move them all down just a little bit more?

    Are you referring to the icons inside the table cells? If so, you can add this css code:

    .av-1ifk2f-204b380a96c16ead6fc2d86981178a96 .pricing-table li .av_font_icon {
        top: 5px;
        position: relative;
    }

    Best regards,
    Ismael

    Hi,

    Glad to know that this 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

    Hi,

    Alright! 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: Lines in Timeline #1442660

    Hi,

    Thank you for the update.

    What do you mean by “userdefined css”? Please add the css code in the Enfold > General Styling > Quick CSS field. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings and purge the cache afterward.

    Best regards,
    Ismael

    in reply to: Change google maps styling #1442659

    Hi,

    Sorry for the delay. I’m not aware of any plans regarding Borlabs implementation, but we’ve tagged @Guenter in this thread just in case he has more information.

    Best regards,
    Ismael

    in reply to: distance below and intermediate line in white #1442658

    Hi,

    Thank you for the update.

    Please update the css with the following code to apply the changes to every full-width submenu element on the site.

    #top .av-submenu-container, #top .av-submenu-container li {
        min-height: 2em;
        line-height: 2em;
    }

    If you want to move the menu items without adjusting the height of the submenu container, try this css code;

    #top .av-submenu-container li {
        position: relative;
        top: 5px;
    }

    Best regards,
    Ismael

    in reply to: Update from Enfold Version: 4.2 #1442657

    Hey Patrice Grünig,

    Thank you for the inquiry.

    You can download the latest version of the theme from your Themeforest account, then upload it to your server manually via S/FTP. We recommend cloning the site to a different environment for the update before transferring it to the live site. Please refer to the documentation below for more info:

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Glitch on mobile #1442655

    Hey northorie,

    Thank you for the inquiry.

    We’ve found an invalid css rule above, which we’ve corrected. We have also removed duplicated css media queries. Please delete everything and replace it with this code.

    // https://pastebin.com/ABdSuACk

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    The Appearance > Theme File Editor is not accessible from the dashboard, so we’re not able to edit the filter. The string is already translated in the String Translation editor.

    Please edit the wp-config.php file and ensure that DISALLOW_FILE_EDIT is set to false or post the S/FTP details in the private field.

    // https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#disable-the-plugin-and-theme-file-editor

    Best regards,
    Ismael

    in reply to: WooCommerce filters widget not showing in builder #1442649

    Hi,

    The filter widgets will only display on the base shop page and the product category pages. Unfortunately, this condition is defined in the WooCommerce core files (woocommerce/includes/widgets/class-wc-widget-layered-nav.php, line: 159), so we won’t be able to modify it.

    Best regards,
    Ismael

    in reply to: How to get a different blog format ? #1442647

    Hey Hippotigris,

    Thank you for the inquiry.

    The site above isn’t fully loading on our end, but based by how the articles are displayed, you can use the Magazine element. It closely resembles the blog format you’re looking for.

    Best regards,
    Ismael

Viewing 30 posts - 5,161 through 5,190 (of 67,469 total)