Forum Replies Created

Viewing 30 posts - 5,281 through 5,310 (of 34,921 total)
  • Author
    Posts
  • in reply to: Layout Blog Posts in Categories #1424015

    Hi,
    Thank you for the link to your site and your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_elegant-blog #top.category .post-entry .post-meta-infos {
        float: none;
    }

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

    Best regards,
    Mike

    in reply to: icons in the menu bar #1424014

    Hi,
    Thank you for your patience, currently your shopping cart is on the right edge of the screen on desktop and mobile, so I’m not sure what you mean by you want it directly behind the instagram, but you can make the background color of the cart blue with this css:

    #top .header_color .cart_dropdown_link {
       background-color: #0098d2;
    }

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

    Best regards,
    Mike

    in reply to: Contact Form not responsive #1424013

    Hi,
    The issue seems to be that the google badge message on your form has a min width of 300px and on very small screens this is too large.
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 400px) {
    #top .avia_ajax_form .av-google-badge-message {
        min-width: 100%;
    }
    }
    

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

    Best regards,
    Mike

    in reply to: Portfolio Grid #1424011

    Hi,
    Unfortunately there is not a way to order the categories in a specific order in the portfolio grid.

    Best regards,
    Mike

    in reply to: Accordion blue color #1424010

    Hi,
    Is this the same issue as this thread?
    I’m not seeing a blue line on a Android device, so I believe that what you are seeing is set by your iPhone, I’m not sure where exactly you are seeing this because your video is private, but perhaps this css will help:

    #top .main_color .single_toggle:focus {
      outline: 0 !important;  
      outline: 0 -webkit-focus-ring-color !important; 
    }

    Best regards,
    Mike

    in reply to: Accordion #1424008

    Hi,
    Is this the same issue as this thread?
    I’m not seeing a blue line on a Android device, so I believe that what you are seeing is set by your iPhone, I’m not sure where exactly you are seeing this because your video is private, but perhaps this css will help:

    #top .main_color .single_toggle:focus {
      outline: 0 !important;  
      outline: 0 -webkit-focus-ring-color !important; 
    }

    Best regards,
    Mike

    • This reply was modified 2 years, 1 month ago by Mike.
    in reply to: Custom social icons on the header #1424007

    Hi,
    Thanks for the video, but I don’t understand the issue, the buttons look the same before and after you open the burger menu:
    before:
    Enfold_Support_3787.jpeg
    after:
    Enfold_Support_3789.jpeg

    Best regards,
    Mike

    in reply to: Prevent SPAM on Email Buttons #1424006

    Hi,
    Glad Ismael could help, please let us know if you need further help or if we should close this thread.

    Best regards,
    Mike

    in reply to: Wrong order of upcoming events #1424005

    Hi,
    Glad Günter could help, we will go ahead and close this thread as you requested, 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,
    Thank you for your patience, your question seems to be about the masonry image gallery giving an error for “list items” since I’m not able to access this report or the tool, I assume that the tool is referring to a “li” on your page, but the only “li” I find is in the timeline element, perhaps this is the element your report is referring to?
    If so I’m not sure what the report means by “semantically as a list”, I tried Googling this but didn’t find an explication of the expected results.
    Please check if this is referring to the timeline element and explain what the expected results would be.
    I note that the timeline element is not a normal “list item” so I’m not sure that we can change the element to something else like a “div” very easily, if that is wahat the solution will be.

    Best regards,
    Mike

    in reply to: Accordion #1423976

    Hi,
    Thank you for the link to your site, when you ask to chang the text color of “Customer”, do you mean after click, or always?
    Please try to be specific so we will understand well.

    Best regards,
    Mike

    Hi,
    Thank you for your patience and the link to your site, I was able to show the custom field product images (thumbnail_image) on the shop page with this function in your child theme functions.php:

    
        function custom_thumbnail_display() {
            global $product;
            
            // Get the "thumbnail_image" custom field value
            $thumbnail_image_url = get_post_meta( $product->get_id(), 'thumbnail_image', true );
            
            if ( ! empty( $thumbnail_image_url ) ) {
                // If the custom field has a value, display that image
                echo '<img class="bcs-thumbnail" src="' . esc_url( $thumbnail_image_url ) . '" alt="' . esc_attr( $product->get_name() ) . '">';
            } else {
                // Otherwise, display the default WooCommerce placeholder image (optional, as WooCommerce will handle it)
                echo wc_placeholder_img();
            }
        }
        add_action( 'woocommerce_before_shop_loop_item_title', 'custom_thumbnail_display', 10 );
    

    and then I added this css to remove the duplicate woocommerce-placeholder.png when the custom field product image is shown on the shop page

    
    .woocommerce-shop .product .woocommerce-LoopProduct-link .bcs-thumbnail ~ .thumbnail_container {
    	display: none;
    }
    

    So now the result is:
    Enfold_Support_3783.jpeg
    Since you are using the BCS BatchLine Book Importer plugin, the single custom field product main image is shown (main_image) by the plugin, if someone was not using this plugin the custom field product main image could be shown with this function:

    
    //for the single product main image
    function custom_single_product_image_html( $html, $attachment_id ) {
        global $product;
        
        // Get the "thumbnail_image" custom field value
        $thumbnail_image_url = get_post_meta( $product->get_id(), 'main_image', true );
        
        if ( ! empty( $thumbnail_image_url ) ) {
            // If the custom field has a value, return that image as the main product image
            $html = '<img src="' . esc_url( $thumbnail_image_url ) . '" alt="' . esc_attr( $product->get_name() ) . '">';
        }
        
        return $html;
    }
    add_filter( 'woocommerce_single_product_image_thumbnail_html', 'custom_single_product_image_html', 10, 2 );
    

    perhaps this will be helpful to someone in the future.
    Please check your site and let us know if you find this working as my screenshots above, so we can close this thread :)

    Best regards,
    Mike

    in reply to: White Empty space when closing accordion #1423941

    Hey navindesigns,
    Please update to v5.6.8 and then clear all of your caches, this was addressed in our latest update.

    Best regards,
    Mike

    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: blog sidebar #1423922

    Hi,
    Glad Nikko was 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: Mobile version different logo #1423921

    Hi,
    Very good, if you need further assistance please provide a link to your page so we can examine and assistance further.

    Best regards,
    Mike

    in reply to: Facebook icon white #1423920

    Hi,
    Very good, if you find that you need further help then please provide a link to your page so we can examine and assist further.

    Best regards,
    Mike

    in reply to: Header Logo and Menu Cramming #1423919

    Hi,
    Glad Nikko was 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: Subline in menu #1423850

    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: OSM Leaflet Map: only one marker pop-up displaying #1423848

    Hi,
    Thank you for your patience, I tried the WP MapIT plugin with the theme Leaflet option disabled and the MapIT seems to show the same as when the Twenty Twenty-Threetheme is enabled.
    On page load the map popups do not show, when to click on the markers the popups show:
    Enfold_Support_3777.jpeg
    Enfold_Support_3779.jpeg
    I linked to my test page below, please check.

    Best regards,
    Mike

    in reply to: code block trouble #1423825

    Hi,
    Thank you for your patience and the link to your page, when I look at your #av_section_9, the section that begins with the title: ACCESS the only issue that I see is that the section is not centered, this is because of some custom css that you have added:

    #av_section_9 .container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    If you remove this the section will show correctly.
    If this is not the issue that you are talking about, please explain further and include a screenshot and admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Subline in menu #1423821

    Hey dreamreader,
    To edit the menu item subline, first ensure that you have the Screen Options ▸ Description check box enable at the Screen Options at the top of the menu page:
    Enfold_Support_3773.jpeg
    Then you will see the menu item subline:
    Enfold_Support_3775.jpeg

    Best regards,
    Mike

    in reply to: Adding a button to the main menu #1423820

    Hi,
    The option would look like this:
    Enfold_Support_3771.jpeg
    If you continue to have trouble with this issue please open a new thread and post your admin login in the Private Content area so we can assist, as this is not your thread posting your login here will not be private and you will not see our comments in the Private Content area.
    Thank you for your patience and understanding and using Enfold.

    Best regards,
    Mike

    Hi,
    Thanks for reporting back the solution you found for Polylang, I’m sure other users may find this helpful. 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,
    Thank you for your patience and for the link to your site, I see that your product imports do not include a “featured image”.
    When I check your “custom fields” I see your images for main_image & thumbnail_image, but from what I can see on my demo, the featured image is not stored as a “custom field” but as the thumbnail_id and are refured to by the attachment ID, and since these images are not in your media library they won’t have a attachment ID.
    Unfortunately I don’t have a way to test this situation because the standard WordPress import/export file (xml) imports the images into the media library, but your import method doesn’t.
    Does your import tool offer any other fields like the thumbnail_id?

    Best regards,
    Mike

    in reply to: Blog page in portrait orientation iPhone 14 max pro sticks #1423726

    Hi,
    Sorry, but I don’t use any CDNs, so I can’t make any recommends, I think that Guenni007 is pointing out that the domain cloudflareinsights.com is on a AD tracking list, perhaps from some of their users, I’m not sure. As for fixing the CORS issue with them you will need to ask them and your webhost, as I pointed out above. Or you could try not using the CDN at all and see if this helps. Once you stop using them and clear your server cache, it might take a day or so for the files to stop being serve by them.

    Best regards,
    Mike

    in reply to: frontend theme doesn't work #1423724

    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: Import #1423617

    Hi,
    If you are not using the LayerSlider pro plugin, please re-enable the theme settings for the built-in layerslider to be used and then try updating the theme to v5.6.8, which came out today (10-24) as it has Layerslider 7.9.1, perhap it will solve the LayerSlider error you are seeing.

    Best regards,
    Mike

    in reply to: Error with Memberpress? #1423615

    Hi,
    Glad that this helped, your new issue seems to be pointing at core WordPress js files in /wp-includes/js/ and may be related to jquery-migrate,
    Try checking that Enfold Theme Options ▸ Performance ▸ Disable jQuery Migrate is not enabled, if you don’t see the option then your server has disabled it and you should try enabling it. If you don’t see the option then typically you will not see the Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer either, when a server trys to force jQuery to the footer then both of these options are missing from the theme settings.
    If you have a caching plugin that trys to Disable jQuery Migrate & Load jQuery in your footer, then disable these options or disable the plugin completely for testing.
    It is possible that another plugin is causing a confident, so again try to disable all of your plugins to rule this out.

    Best regards,
    Mike

    in reply to: Accordion in grid row mobil doesn’t close properly #1423613

    Hi,
    Thank you for your patience, on your /dachdecker/ page I changed the element to Accordion mode and added this css:

    .togglecontainer .single_toggle {
        float: none;
    }

    and tested on desktop and mobile Android and the issue seems to be solved now.
    Please note that if you are testing with an iPhone it can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    Please check.

    Best regards,
    Mike

Viewing 30 posts - 5,281 through 5,310 (of 34,921 total)