Forum Replies Created

Viewing 30 posts - 11,941 through 11,970 (of 34,910 total)
  • Author
    Posts
  • in reply to: Sidebar Problem #1350868

    Hi,

    Thanks for the feedback, it seems to be working on /en/portfolio-sub/accounting-en/ & /portfolio-sub/accounting/
    Please see the screenshots in the Private Content area, please try clearing your browser cache and linking to a page where it is not working so we can check.
    Best regards,
    Mike

    in reply to: Slider Revolution Colours #1350861

    Hi,
    Glad Rikard 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: Still space between columns, should be "0" #1350859

    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: Sidebar Problem #1350858

    Hi,
    Thank you for your patience, to match your widget_nav_menu for Sidebar Portfolio and Sidebar Pages please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top .widget_nav_menu #menu-categorie-portfolio li a {
        padding: 0.8em 3px;
        color: #4f9e00;
    }
    #top .widget_nav_menu #menu-categorie-portfolio li {
        border-bottom: 1px solid #b3b5b1;
    }
    #top .widget_nav_menu #menu-categorie-portfolio li:nth-child(1) {
        border-top: 1px solid #b3b5b1;
    }
    #top .widget_nav_menu #menu-categorie-portfolio:first-child>.current-menu-item, 
    #top .widget_nav_menu #menu-categorie-portfolio:first-child>.current_page_item, 
    #top .widget_nav_menu #menu-categorie-portfolio:first-child>.current-menu-ancestor {
        padding-left: 0;
        left: 0;
        box-shadow: unset;
    }

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

    Best regards,
    Mike

    Hi,
    Glad Rikard 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: Button instead of price at Product List element #1350823

    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: search to not eviciant #1350822

    Hi,
    Unfortunately, Ismael and I are not able to recreate this issue on your site, both of us see the page that you mentioned above displayed in the search results page and in the AJAX search container when we searched for the keyword.
    Did you try testing on Browserling.com? This third party online web browser also showed the result, as in the screenshot above.

    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: Ajax Search Styling #1350790

    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: Enfold Version Update #1350720

    Hi,
    Glad Rikard 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: Video links in Lightbox Galleries not working #1350718

    Hi,
    Thanks for helping Guenni007, hans_w, 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: WPML translated content doesn't work #1350715

    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

    Hi,
    Glad Guenni007 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

    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

    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: Autoadjusting some banners on sidebar #1350689

    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: LayerSlider #1350688

    Hi,
    You will need to export your sliders, then disable and remove the standalone version plugin and enable the bundled version and then import your sliders into the bundled version, the slider settings will be in the exported sliders.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, I’m not sure what this could be, I have asked the rest of the team for advice.

    Best regards,
    Mike

    in reply to: Ajax Search Styling #1350615

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

    function ajax_not_found_text() { ?>
        <script>
    (function($){
    setInterval(function () {
    $('#searchform .ajax_search_response .av_ajax_search_entry.ajax_not_found .av_ajax_search_content .av_ajax_search_title').text(function(index, text) {
        	return text.replace('Entschuldigung, aber kein Eintrag erfüllt Deine Suchkriterien', 'Entschuldigung, nicht gefunden');
    });
    }, 50);
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'ajax_not_found_text');

    adjust the Entschuldigung, nicht gefunden text to suit

    Best regards,
    Mike

    in reply to: Text disappears in the background #1350511

    Hi,
    Thank you for your patience, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.home #av-layout-grid-1 {
    	z-index: 5;
    }
    #top.home #av_section_2 {
    	z-index: 1;
    }

    the expected results:
    2022-05-04_003.jpg

    Best regards,
    Mike

    in reply to: Ajax Search Styling #1350480

    Hi,
    To change the mobile search icon size try this css:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .menu-item-search-dropdown > a {
        font-size: 12px !important;
    }
    }

    and adjust to suit.
    To stop the search form from submitting with the enter key, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
        <script>
    (function($) {
    $('#menu-item-search').click(function(){
    	setTimeout(function(){
     $("form").attr('onSubmit', 'return false');
    	},500);
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    As for the search field on the iPhone view zooms in, this is the iPhone itself and we can not change.

    Best regards,
    Mike

    Hi,
    Sorry to confuse you, I said that I wouldn’t use the multisite option in the installer, not that you couldn’t use it for multilanguage purposes, this is different.
    Yigit said above, “create separate installation for each language” in sub directories.
    So at this point you would create 4 sub-directories in your Public html then use the WordPress installer to install WordPress in each of those sub-directories, as the screenshot above, then add a language switcher widget to the header to each of the 4 installs that link to each of the sites.

    Best regards,
    Mike

    in reply to: Autoadjusting some banners on sidebar #1350461

    Hi,
    As I understand your question, you have added the Google Adsense code to your site and enabled Auto Ads, and your screenshot shows an Adsense Ad, but you want a different size?
    You should use the Ad Settings Preview in your Google Adsense account to adjust how the ads will look on your site.
    There is no place in the theme to edit the ads because the Google Adsense code scans your site and places the ads automatically, read more here: About Auto ads
    2022-05-04_001.jpg
    I don’t use Google Adsense so there are probably a lot more settings that you can change in your Google Adsense account to adjust how the ads will look on your site, I recommend looking for some tutorials on youtube to see how to make these customizations.

    Best regards,
    Mike

    Hi,
    Glad to hear, your css looks good, I’m glad you sorted this out.
    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,
    I don’t know about the smash balloon plugin, but it sounds like you have a few sites displaying the same Instagram account, I recommend trying to disable all of these and wait 24 hours for Instagram to refresh, then try the simple Enfold widget to see if will display. I suggest this one because it doesn’t use any API. If this doesn’t work please disable and I will try again on my demo site, hopefully after Instagram stops giving the error: Instagram returned error 429 (= Too Many Requests) the Enfold widget should work for you, then you can try the smash balloon plugin on your other site and see if it works again.
    I’m not sure if Instagram has some limitation on the number of requests that can be made to your account, but it sounds like there might be based on the error message. Try checking with Instagram to see if there is.

    Best regards,
    Mike

    in reply to: start gallery in lightbox via textlink #1350309

    Hi,
    Thanks for sharing Guenni007, Vera, 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

    ** Update **
    If you find that the lightbox does not start with the first image of the gallery order you can try this script instead:

    function text_link_to_gallery_lightbox() {
    ?>
    <script type="text/javascript">
    (function($) {
        $(document).on('click', '.text_to_lightbox a', function(event) { 
            event.preventDefault(); 
            var linkTarget = $(this).attr('href');
            $(linkTarget).find("a.first_thumb:first").click(); 
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'text_link_to_gallery_lightbox');

    This is the reasoning behind the change.

    • This reply was modified 3 years, 6 months ago by Mike. Reason: behavior reported in another thread
    in reply to: Ajax Search Styling #1350307

    Hi,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top #searchform .ajax_search_response h4 {
        letter-spacing: 0.10em !important;
        padding-bottom: 10px;
    }
    #top #searchform .ajax_search_response {
        padding-bottom: 10px;
    }

    adjust the padding-bottom & letter-spacing to suit.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Autoadjusting some banners on sidebar #1350302

    Hi,
    Thanks for the feedback, yes these banners created with bannerboo don’t scale, I noticed these in another thread you had, they are created in an iframe with many elements and each element has a height & width position of absolute.
    To scale correctly the elements should have the positions set to relative, an iframe must be changed at the source.
    The only solution I can think of is to use media queries to hide this banner at the smaller screen sizes and display a standard image banner instead.

    Best regards,
    Mike

    in reply to: start gallery in lightbox via textlink #1350180

    Hey Vera,
    Please try this solution.

    Best regards,
    Mike

    in reply to: Ajax Search Styling #1350173

    Hi,
    Glad to hear, try changing the top and bottom padding to zero from 10px with this css:

    #top #menu-item-search .av_ajax_search_entry {
        padding: 0px 16px;
    }

    If that is too close together try changing the top and bottom padding to 5px like this:

    #top #menu-item-search .av_ajax_search_entry {
        padding: 5px 16px;
    }

    try adjust the number to suit.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 11,941 through 11,970 (of 34,910 total)