Forum Replies Created

Viewing 30 posts - 13,861 through 13,890 (of 35,289 total)
  • Author
    Posts
  • in reply to: Fullwidth slider causes content load delay #1329753

    Hey sunlounger29,
    This is caused by the Smush plugin lazy load option, to demonstrate I have disabled this feature on your frontpage
    2021-11-19_002.jpg
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Where to put a code behind button #1329751

    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: Issues in Content Slide + shortcodes #1329750

    Hi,
    The Dev Team has fixed the issue so future versions won’t have this issue, if you would like to try it on your site you will need to replace these two files via FTP:

    /enfold/config-templatebuilder/avia-template-builder/php/class-element-templates.php
    /enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php

    Please make a backup of these for fallback and replace them with the files linked below.

    Best regards,
    Mike

    in reply to: Sucherweiterung anpassen #1329694

    Hi,
    There is not an option to disable the search results page, this is a core WordPress feature, so we can disable the link to the search results page, such as the css above:
    2021-11-14_131444.jpg
    but if someone enters the [Enter] key they will still go to the search results page, for this you can use this function to Manually Disable Search Feature in WordPress:

    function wpb_filter_query( $query, $error = true ) {
    if ( is_search() ) {
    $query->is_search = false;
    $query->query_vars[s] = false;
    $query->query[s] = false;
    if ( $error == true )
    $query->is_404 = true;
    }
    }
    add_action( 'parse_query', 'wpb_filter_query' );
    add_filter( 'get_search_form', create_function( '$a', "return null;" ) );
    function remove_search_widget() {
        unregister_widget('WP_Widget_Search');
    }
    add_action( 'widgets_init', 'remove_search_widget' );

    this will redirect users to a 404 page, but this could confuse users.
    Perhaps a solution would be to create a custom “search results page” and use a redirect plugin to redirect to this page that would show whatever you wanted, which might be less confusing to your users?

    Best regards,
    Mike

    in reply to: Widget Enfold Facebook Likebox don't working in footer #1329679

    Hi,
    I mean that this was manually created with HTML, I have added this for you as a new widget under your LikeBox, please check. If you see two titles then try removing the Likebox plugin widget, the first one and only leave the new one I made for you.

    Best regards,
    Mike

    in reply to: Widget Enfold Facebook Likebox don't working in footer #1329516

    Hi,
    It is not a real FB likebox from FB, it was manually created in a widget.

    Best regards,
    Mike

    in reply to: Woocommerce #1329514

    Hi,
    Sorry I think I’m confused now, so the first row that looks like the way you described, with a image, product, image, product, image
    2021-11-18_001.jpg
    what do you want to change with this layout? Why are you not using this one?
    With the bottom attempt that has the product off a little:
    2021-11-18_002.jpg
    this css would correct:

    #top #main .slide-entry-excerpt p {
    	margin: 0;
    }
    
    #top #main .avia-smallarrow-slider-heading > div {
        display: none;
    }

    2021-11-18_003.jpg
    So if you want to use the bottom layout try adding this css.

    Best regards,
    Mike

    in reply to: Sucherweiterung anpassen #1329509

    Hi,

    @Guenni007
    danke für deine Hilfe, @natuerlich-hund Ich bin mir nicht sicher, ob ich das verstehe, wenn du sagst:

    Ist es möglich, dass nur die direkten Suchergebnisse in der Box über das Suchfeld angezeigt werden und die Option, auf die Sonderseite mit den Suchergebnissen zu gelangen, ausgeblendet wird

    Ich glaube, Sie meinen, den Link “Alle Ergebnisse anzeigen” auszublenden, was das obige CSS tut. Kannst du das vielleicht mit Screenshots näher erklären? Tut mir leid, ich spreche kein Deutsch, benutze aber Google Translate.

    — Translated with Google —


    @Guenni007
    thank you for your help, @natuerlich-hund I’m not sure that I understand, when you say:

    Is it possible that only the direct search results are displayed in the box via the search field and the option to get to the special page with the search results is hidden

    I believe you mean to hide the “view all results” link, which the above css does. Can you explain further, perhaps with screenshots? Sorry I’m not a German speaker but use Google Translate.

    Best regards,
    Mike

    in reply to: Woocommerce #1329353

    Hey oeilneuf74,
    Thank you for your question, try using the post slider element, you can choose a product category and one column.
    2021-11-17_004.jpg

    Best regards,
    Mike

    in reply to: Reduce quote button width and button location #1329351

    Hi,
    This offset
    2021-11-17_001.jpg
    is because on your FR site you are missing the div woocommerce-product-details__short-description
    2021-11-17_003.jpg
    do you recall any changes that you made to remove the short-description or any plugins you have that would change this?

    Best regards,
    Mike

    in reply to: Custom Enfold Styles for The Events Calendar Not Applied #1329339

    Hi,
    The Dev Team has fixed the issue for the next update, if you would like to apply it to your current version please see the link below to the new event-mod-css-dynamic.php file. Please save a fallback version of your current file at
    \wp-content\themes\enfold\config-events-calendar\event-mod-css-dynamic.php
    and then replace it with the one below via FTP, then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Purchasing Enfold theme per domain? #1329301

    Hi,
    Glad we were able to help.

    Best regards,
    Mike

    in reply to: MailChimp 4 WordPress Plugin not working #1329299

    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: Reduce quote button width and button location #1329215

    Hi,
    Thank you for the link to your site and feedback, I’m not sure if you have Yigit’s css in place right now but the difference I see is the font size, the “add to basket” is 12px and the “request a quote” is 15.6px, try this css to match the font size:

    .single-product-summary a.add-request-quote-button.button {
        font-size: 12px;
    }
    

    2021-11-16_001.jpg
    at this point the buttons match if you consiter the text length, this doesn’t seem noticeable, but if you want the two to match you could reduse the padding a little like this

    .single-product-summary a.add-request-quote-button.button {
        font-size: 12px;
        padding: 15px 7px;
    }
    

    2021-11-16_002.jpg

    Best regards,
    Mike

    in reply to: Information Enfold Shop #1329212

    Hey Ingrid,
    Thank you for your question, there is not an option to add images to a submenu but we do offer a tutorial in our documentation that explains how to Add Images to the Mega Menu, please take a look at this and feel free to review the rest of our documentation to get a sense of the Enfold features and options.

    Best regards,
    Mike

    in reply to: Purchasing Enfold theme per domain? #1329210

    Hey Donald Garthy,
    Thank you for your question, each license is valid for one domain and it’s sub-domains.
    Envato (Theme Forest) handles the issuing and validity of the licenses, if someone used the same license on multiple domains those licenses would not be valid and Envato would know.
    I hope this answers your question.

    Best regards,
    Mike

    in reply to: Themes #1329205

    Hey Werner,
    Vielen Dank für Ihre Frage, die Kosten des Themes betragen einen Preis für jede Domain und das Theme umfasst alle unsere Demos, sodass Ihre Site mit der Demo „Coming-Soon“ beginnen kann und wenn Sie bereit sind, eine andere Demo zu verwenden, oder Erstellen Sie einfach Ihre Site von Grund auf neu, die Sie einfach und kostenlos ändern können.
    Sie können Ihre Site auch offline auf Ihrem localhost entwickeln oder eine Test-Site auf einer Sub-Domain ohne zusätzliche Kosten erstellen, eine Domain umfasst alle Sub-Domains.

    — Translated with Google —

    Thank you for your question, the cost of the theme is one price for each domain, and the theme includes all of our demos, so your site can start with the “Coming-Soon” demo and when you are ready to use another demo or just build your site from scratch you can easily change for no cost.
    You can also develop your site offline on your localhost or build a test site on a sub-domain for no additional cost, one domain includes all sub-domains.

    Best regards,
    Mike

    in reply to: How to display date of publication in a portfolio grid #1329201

    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: Masonry empty categories show other categories #1329146

    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: Sucherweiterung anpassen #1329085

    Hi,
    Bitte versuchen Sie, dieses CSS hinzuzufügen, wenn es nicht funktioniert, verlinken Sie bitte auf Ihre Beispielseite, damit wir es untersuchen können

    #top #main .av_ajax_search_entry_view_all {
    	display:none;
    }

    Best regards,
    Mike

    in reply to: Feature Requests doesnt work #1329083

    Hi,
    I’m not sure I understand how the difference would be applied, can you show an example of multiple checkboxes where a series of single checkboxes would not work?

    Best regards,
    Mike

    in reply to: Translation to Portuguese #1328989

    Hi,
    Sorry I don’t use the plugin Loco translate so I don’t know it’s settings, I thought you were making a language set pt_PT.po & pt_PT.mo for your site to be used by WordPress, such as in the WordPress site language that will include the Enfold text For this the answer above is correct.
    I logged into your site but I don’t see the message you note, but I see that the Enfold theme options are in English so I assume that you didn’t add these to your pt_PT.po & pt_PT.mo files.
    If you can read Portuguese Brazil (sorry I don’t know the difference) then I recommend modifying the language terms in the pt_BR.po file with Poedit and saving it as pt_PT.po this will help you get all of the theme and element words changed to your language.
    I’m not sure if this will help with Loco translate or any kind of configuration.

    Best regards,
    Mike

    in reply to: Widget Enfold Facebook Likebox don't working in footer #1328983

    Hi,
    Thanks for the link to your site I tested on Windows 10 in Chrome, Firefox, & Edge and your footer FB Likebox shows on all, please see the screenshot in the Private Content area.
    But I do note that on my Firefox I had to disable the tracking blocker for it to show, so if your browser is blocking ads or trackers & scripts it might be why you can see the likebox.

    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: Adjust the column width of Mega Menu #1328978

    Hey frankeee,
    Can you link to the menu so we can examine.

    Best regards,
    Mike

    in reply to: Translation to Portuguese #1328977

    Hey dorass,
    Try uploading to \wp-content\themes\enfold\lang\ as files pt_PT.po & pt_PT.mo
    you have to upload both files, I assume you are using Poedit

    Best regards,
    Mike

    Hey dorass,
    Thank you for the link to your site the reason you were having the white background color on your transparent logo and the logo was not changing on scroll was a conflict with the plugin Contact Widgets By GoDaddy this plugin was removed by WordPress, I recommend not using it.
    2021-11-14_018.jpg
    please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I have submitted this request to the Dev Team for their review, perhaps in the future it will be added as an option, thank you for using Enfold.

    Best regards,
    Mike

    in reply to: icon list #1328971

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

    #top.home #av_section_3 .av_iconlist_title {
    	 min-width: 406px;
    }
    #top.home #av_section_3 .avia-icon-list .iconlist_content_wrap {
        overflow: visible;
    }
    #top.home #av_section_3 .avia-icon-list-container {
    	justify-content: center;
    	display: flex;
    }

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

    Best regards,
    Mike

Viewing 30 posts - 13,861 through 13,890 (of 35,289 total)