Forum Replies Created

Viewing 30 posts - 7,201 through 7,230 (of 67,463 total)
  • Author
    Posts
  • in reply to: Form visibilkity on mobile #1421437

    Hey woogie07,

    Thank you for the inquiry.

    You can add this css code to adjust the width of the columns on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #main .flex_column.av-b3s6-4c68ef9fc64be5c306ddbb83e1de262e {
        width: 100% !important;
        display: block;
        clear: both;
        margin: 50px 0 0 0;
      }
    
      .responsive #top #main .flex_column_table_cell.flex_column.av-k05s-f9fce12797e122f4e36413920243833b,
      .responsive #top #main .flex_column_table_cell.flex_column.av-t9vy-5272f52a9f41d9430748edfd05e414db {
        width: 50% !important;
        display: block;
        float: left;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Child Theme – Blog Details #1421345

    Hey!

    Thank you for the update.

    We found an invalid css rule in the Quick CSS field, which we have corrected. The date of the posts is now hidden in the blog overview page. Please make sure to clear the cache and perform a hard refresh before checking the page.

    Regards,
    Ismael

    in reply to: html code with javascript does not work #1421344

    Hey HaouliCat,

    Thank you for the inquiry.

    We don’t recommend adding script or input tags to the builder directly because it could break the layout of the page. One solution is to create a custom shortcode for the embed code or use the default enqueue functions.

    // https://developer.wordpress.org/reference/functions/wp_enqueue_script/
    // https://developer.wordpress.org/reference/functions/wp_enqueue_style/

    To create a custom shortcode, please check the link below.

    // https://codex.wordpress.org/Shortcode_API

    Best regards,
    Ismael

    in reply to: Icon-box: numbers icons #1421343

    Hey Henning,

    Thank you for the inquiry.

    You can create number icons using the icon font generator in the fontello.com/ site. Just create an SVG file of the numbers, then upload it to the Custom Icons panel. The result can be uploaded to the theme’s Iconfont Manager. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    Best regards,
    Ismael

    in reply to: Blog alignement author x text #1421340

    Hi,

    Glad we could be of help! Please do not hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Child Theme – Blog Details #1421339

    Hey!

    Thank you for the info.

    The options in the Blog Meta Elements section can only control the meta elements in the single post page, and only when the post is created using the classic or block editor. For the blog overview page, you have to use css or directly edit the template files. To hide the date for example, please add this css code.

    .avia-content-slider .slide-meta time {
       display: none;
    }

    Regards,
    Ismael

    in reply to: Slider common height #1421337

    Hi,

    Great! Glad to know that this has been resolved. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hey Rafael,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to replace h3 with the h4 tag or element.

    function avf_customize_heading_settings_mod( array $args, $context, array $extra_args = array() ){
      if( $context == 'avia_post_slider' ){
        $args['heading'] = 'h4';            
      }
      return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'avf_customize_heading_settings_mod', 10, 3 );
    

    Best regards,
    Ismael

    in reply to: Child Theme – Blog Details #1421335

    Hey So Evolve,

    Thank you for the inquiry.

    Where can we check the issue? Please provide the site URL in the private field and post a screenshot using platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: hyde ‘category product’ in ‘buy product button’ #1421334

    Hey fabioque,

    Thank you for the inquiry.

    You can add this css code to hide the category list in the single product page.

    .single-product .posted_in {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Avia builder missing and Blog layout changed #1421333

    Hi,

    Glad we could be of help! 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: Page not found #1421332

    Hey Tim,

    Thank you for the inquiry.

    You can modify the template files themes/enfold/404.php and the themes/enfold/includes/error404.php to adjust the layout of the “page-not-found” page. You can also use 404 or redirection plugins.

    // https://www.wpbeginner.com/showcase/6-best-free-404-plugins-for-wordpress/

    Best regards,
    Ismael

    in reply to: Hover image reveal effects with Enfold theme #1421331

    Hey Mikel,

    Thank you for the inquiry.

    We didn’t find a plugin that offers the same exact effect, but you can try the following.

    // https://wordpress.org/plugins/image-hover-effects/
    // https://wordpress.org/plugins/image-hover-effects-ultimate/

    You can also try the Icon/Flipbox Grid element in the Advanced Layout Builder.

    Best regards,
    Ismael

    in reply to: Headlines on mobile phones #1421330

    Hey Tim,

    Thank you for the inquiry.

    You can adjust the font size of the h1 element by using this css code.

    
    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top #wrap_all .header_color h1,
      #top #wrap_all .main_color h1,
      #top #wrap_all .alternate_color h1 {
        font-size: 32px;
      }
    }
    

    You can also adjust the font settings of the headings and body text in the Enfold > General Styling > Typography panel.

    Best regards,
    Ismael

    in reply to: Purchase Code #1421329

    Hi,

    Thank you for purchasing a new license. You can now use the new purchase code to register in the forum. Also, please don’t forget to generate a private token so that you can update the theme automatically from the dashboard.

    Can somebody transfers the guest-accounts of all my questions to my new account? Is this possible?

    This is not possible, unfortunately. If you have more questions about the theme, please do not hesitate to open a new thread using your new forum account.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Conflict beetwen sliders and header ? #1421328

    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,

    Thank you for the screenshot.

    The error points to a line that is not included in the theme by default. Did someone edit the functions.php file recently and add the code that you posted above?

    :  Undefined array key "themes" in /storage/.....00/...../2/www/wp-content/themes/enfold/functions.php on line 9 PHP message: 
    

    Best regards,
    Ismael

    in reply to: Design is not showing anymore #1421326

    Hi,

    Again, you can try the Sucuri plugin instead. Looks like WP Cerber is no longer maintained in the WordPress plugin repository. More instructions can be found in the following article.

    // https://www.wpbeginner.com/beginners-guide/how-to-add-http-security-headers-in-wordpress/#securityheaders-sucuri

    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: remove cookies #1421325

    Hey schweg33,

    Thank you for the inquiry.

    Did you enable the Enfold > Privacy & Cookie options for the first site? Please provide a screenshot 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

    Hi,

    Thank you for the screenshot.

    The styles of the columns are not getting applied because the post-css file is missing or is not being loaded. Did you add any filters in the functions.php file? Please provide the S/FTP details in the private field so that we can investigate the issue further.

    Best regards,
    Ismael

    in reply to: Design is not showing anymore #1421280

    Hi,

    2.) We recommend the server solution because the extension might be necessary for other components on the site, including plugins and additional extensions.

    4-5.) Please check this article for more info.

    // https://www.wpbeginner.com/beginners-guide/how-to-add-http-security-headers-in-wordpress/

    You can manually add the security headers in your .htaccess file as well, but we recommend using the options from the plugins.

    // https://www.wpbeginner.com/beginners-guide/how-to-add-http-security-headers-in-wordpress/#securityheaders-htaccess

    Best regards,
    Ismael

    in reply to: Add different button to main menu #1421277

    Hi,

    Great! Glad we could be of help. Please do not hesitate to open another thread if you have more questions regarding the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Mobile view on blog post #1421276

    Hey woogie07,

    Thank you for the inquiry.

    You can add this css code to adjust the columns on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .slide-entry {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
      }
    
      .responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd,
      .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even {
        margin-bottom: 20px;
      }
    
       .avia-content-slider .slide-image, .avia-content-slider .slide-image img {
         width: 100%;
       }
    }

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Fullscreen Slider background color change #1421275

    Hi,

    You’re welcome! Please feel free to open another thread should you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Wrong order of upcoming events #1421274

    Hi,

    We’ve been adjusting the query for a while, but we can’t get the “Carnaval de Romont” to display where it should. We’ll forward the thread to other mods for further investigation.

    Best regards,
    Ismael

    in reply to: Centered split menu center logo #1421273

    Hey joandjaxx,

    Thank you for the inquiry.

    You have to remove this css code to adjust the right margin of the second item.

    #top #header .av-main-nav li:nth-child(2) {
        margin-right: 150px;
    }
    

    Then add this css code to push the 5th item away from the fourth, creating space for the logo.

    #top #header .av-main-nav li:nth-child(4) {
        margin-right: 250px;
    }
    

    Please make sure to 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: Purchase Code #1421272

    Hey Tim,

    Thank you for the update.

    Based on your screenshot, the purchase code that you have posted in your previous thread is the same as the token that you mistakenly entered in the private token field. The “create-token” page above should not return a purchase code, but it will generate a private token, which you can then use in the Enfold > Theme Updates panel.

    Best regards,
    Ismael

    in reply to: Slider common height #1421271

    Hey neon2020,

    Thank you for the inquiry.

    Did you add the script in the functions.php file? We couldn’t find the setSlideHeight function in the page. Please provide the login details in the private field so that we can apply the modification.

    // https://kriesi.at/support/topic/content-slider-customization/#post-1363578

    Best regards,
    Ismael

    in reply to: Button link url’s not updating #1421243

    Hey IDS,

    Thank you for the inquiry.

    The href attribute value of the buttons is missing. Please check the link settings of the button elements.

    <a href="" class="avia-button av-2gizj2-9b9f32d55bd4a79627545c32a25e3184 avia-icon_select-no avia-size-large avia-position-center av-icon-on-hover"><span class="avia_iconbox_title">Learn more</span><span class="avia_button_background avia-button avia-color-theme-color-highlight"></span></a>
    

    Did you add any scripts to the site recently?

    Best regards,
    Ismael

    in reply to: Hamburger menu not supported for iOS 12.5.7 #1421242

    Hi,

    Thank you for the screenshot.

    We couldn’t reproduce the same issue when we checked the site using mobile emulation. It’s possible that the device or phone contains an older version of the browser, which for some reason, may no longer render the site properly.

    . I understand that developers have to draw a line beyond which their code won’t work. Is I phone 6 beyond your line?

    We don’t have a list of supported devices but we do recommend using the latest versions of browsers, plugins and other related softwares.

    // https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990

    Best regards,
    Ismael

Viewing 30 posts - 7,201 through 7,230 (of 67,463 total)