Forum Replies Created

Viewing 30 posts - 61 through 90 (of 34,636 total)
  • Author
    Posts
  • in reply to: Update from 2.4.1 #1486421

    Hey jmbernstein,
    Assuming that there are no customizations in the functions.php of the parent theme and you are not using a Child Theme, but your WordPress is up to date you can follow these steps:
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue.
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg
    While I don’t expect any issues with updating the theme, I recommend testing on a staging site first to ensure that it works well.

    Best regards,
    Mike

    in reply to: Favicon Not Appearing #1486419

    Hey Aron,
    I recommend converting your png to a favicon.ico
    be sure to use this file name and proper file type, then upload it to your root directory via FTP or your webhost file manager.
    Then try having your site crawled again. It may take a day or two before Google updates to show it.
    Even though you have the png tags in your site for a favicon correctly, Google Bot seems to prefer the old favicon.ico in the old place (root directory) and not the /wp-content/uploads/… place on some sites. I’m not sure why it’s only some sites, but this trick seems to work.

    Best regards,
    Mike

    in reply to: Logo as SVG #1486418

    Hi,
    I removed the screenshot as requested, glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Lightbox with Contact Form #1486417

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: where do i find downloads #1486368

    Hi,
    I can’t see your screenshot, I think the error is with your server (webhost) Please include an FTP access in the Private Content area and we will try updating via FTP for you.

    Best regards,
    Mike

    Hi,
    Try adding this code to the end of your child theme functions.php file instead in Appearance ▸ Editor:

    function my_datepicker_limits() {
        ?>
        <script type="text/javascript">
        jQuery(document).ready(function($){
    
            setTimeout(function() {
                var $dateField = $('.avia_datepicker');
    
                if ($dateField.length && $dateField.data('datepicker')) {
                    var today = new Date();
                    var startDate = new Date(2025, 7, 8);  // August 8, 2025
                    var endDate   = new Date(2025, 7, 18); // August 18, 2025
    
                    // Use the later of today or startDate
                    var effectiveMinDate = today > startDate ? today : startDate;
    
                    $dateField.datepicker('option', {
                        minDate: effectiveMinDate,
                        maxDate: endDate
                    });
                } else {
                    console.warn("Datepicker not initialized or selector not found.");
                }
            }, 500);
    
        });
        </script>
        <?php
    }
    add_action('wp_footer', 'my_datepicker_limits', 30);
    

    Not both at the same time.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    Hi,
    Now point B, I will need more info.
    So we are in July, but you want the datepicker limited to Aug 8 – 18
    Is this the only time your festival is available?
    The next time can you change the dates in the code? This doesn’t seem based on the current date so if it is only a few times a year it would be best to manually change the date in the code.
    As for your concern that when 10.08.2025 arrives 08.08.2025 may still be selected, would someone really pick a past date for their visit?

    Best regards,
    Mike

    Hey ORC,
    Point A:
    The misaligned datepicker in the footer is not from the theme but from jQuery UI, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #ui-datepicker-div {
    	display: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: background colors the same? #1486361

    Hey schweg33,
    The color is from the socket background color which is not the same on both sites.

    Best regards,
    Mike

    in reply to: Ngaho.org website not showing. #1486353

    Hey Sammy Ngaho,
    We will need more info about your site, please include an admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Columns w/ Parallax – Change direction #1486352

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Webpages acting odd in the back end #1486348

    Hey extraeyes,
    I don’t understand your issue, if it is only in the backend, you didn’t proved backend access.
    Perhaps some screenshots of the issue would help.
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: How change “Blog – A la une” #1486347

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    If you want the font to be 200px and the menu items closer and to the left, try this CSS in your <strong style=’color:#000′>Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #av-burger-menu-ul {
        text-align: left;
        padding-left: 20px !important;
    }
    .html_av-overlay-full #av-burger-menu-ul li {
    padding: 10px;
    }
    #top #wrap_all #av-burger-menu-ul li {
        font-size: 200px;
    }

    After applying the css, please clear your browser cache and check.
    Screen Shot 2025 07 05 at 8.07.00 AM

    Best regards,
    Mike

    in reply to: Lightbox with Contact Form #1486342

    Hey cnpetr,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .mfp-iframe-scaler {
      height: 90vh !important;
    }

    feel free to adjust to suit.

    Best regards,
    Mike

    Hi,
    Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Thanks for sharing Guenni007, perhaps someone will find this helpful.

    @shop802
    glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hey shop802,
    Try adding this code instead to the end of your child theme functions.php file in Appearance ▸ Editor:

    function my_datepicker_limits() {
        ?>
        <script type="text/javascript">
        jQuery(document).ready(function($){
    
            // Use a short delay to wait for Enfold to initialize the datepicker
            setTimeout(function() {
                var $dateField = $('.avia_datepicker'); // Adjust this if needed
    
                if ($dateField.length && $dateField.data('datepicker')) {
                    $dateField.datepicker('option', {
                        minDate: new Date(2025, 7, 8),  // August 8, 2025
                        maxDate: new Date(2025, 7, 18)  // August 18, 2025
                    });
                } else {
                    console.warn("Datepicker not initialized or selector not found.");
                }
            }, 500); // delay to allow Enfold scripts to finish
    
        });
        </script>
        <?php
    }
    add_action('wp_footer', 'my_datepicker_limits', 30);
    

    Screen Shot 2025 07 04 at 5.35.07 PM

    Best regards,
    Mike

    in reply to: PROBLEMS NEW ENFOLD VERSION #1486330

    Hi,
    I disabled your cache, try clearing your browser cache and check now.

    Best regards,
    Mike

    in reply to: How change “Blog – A la une” #1486329

    Hi,
    Then use this instead:

    add_filter('avf_title_args', 'replace_blog_title_with_custom_text', 10, 2);
    function replace_blog_title_with_custom_text($title, $id = null) {
        if (is_single()) {
            $title['title'] = 'Your Custom Title Here'; // Replace with your desired title
        }
        return $title;
    }

    Change ‘Your Custom Title Here’ in the code to suit.

    Best regards,
    Mike

    in reply to: Add author info to all entries (blog) #1486328

    Hi,
    It will not show on a page with posts, and as noted in the documentation, if you use the ALB for your posts it will not show, only if you use the classic WP post format.
    It would then show like this:
    Screen Shot 2025 07 04 at 7.16.35 AM

    Best regards,
    Mike

    in reply to: How change “Blog – A la une” #1486319

    Hey Oriano,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('avf_title_args', 'remove_blog_prefix_from_title', 10, 2);
    function remove_blog_prefix_from_title($title, $id = null) {
        if (is_single() && strpos($title['title'], 'Blog -') === 0) {
            // Remove "Blog -" prefix
            $title['title'] = trim(str_replace('Blog -', '', $title['title']));
        }
        return $title;
    }

    If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the above code and save.

    Best regards,
    Mike

    in reply to: Add author info to all entries (blog) #1486318

    Hi,
    I don’t think that the theme option in our documentation is what you want. The theme option displays the author image (with a link to the author page) beside the feature image of the post.
    Screen Shot 2025 07 04 at 7.16.35 AM
    But only if you choose Enfold > Blog Layout > Single post Option > Single post style > Multi Author Blog.
    If you read the documentation carefully it says to add a author box you need to add PHP & CSS:
    Screen Shot 2025 07 04 at 7.29.43 AM
    In my test this works:
    Screen Shot 2025 07 04 at 7.32.00 AM
    But you need to add the link manually in the profile:
    Screen Shot 2025 07 04 at 7.33.46 AM
    I thought the thread that I posted to above covered this with a different PHP solution, you would not want to use both at the same time.

    Best regards,
    Mike

    in reply to: Button row element is displaying as a column #1486291

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Add author info to all entries (blog) #1486290

    Hi,
    Try this plugin: User Profile Picture or this one: User Profile Picture

    Best regards,
    Mike

    in reply to: Button row element is displaying as a column #1486261

    Hey Jackie,
    I only see three buttons:
    Screen Shot 2025 07 02 at 2.52.23 PM
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia-buttonrow-wrap {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    for this result:
    Screen Shot 2025 07 02 at 2.54.26 PM

    Best regards,
    Mike

    in reply to: Reverse order of portfolio grid anaimtion #1486218

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: 2 Ränder #1486217

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Columns w/ Parallax – Change direction #1486216

    Hi,


    @oestersund
    did you try the solution that I posted? I tested it on your site and it works.
    I also included the steps on how to add it to your site.

    Best regards,
    Mike

Viewing 30 posts - 61 through 90 (of 34,636 total)