Forum Replies Created

Viewing 30 posts - 13,141 through 13,170 (of 34,581 total)
  • Author
    Posts
  • in reply to: Columns changes no mobile screen #1329808

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

    @media only screen and (min-width: 767px) and (max-width: 1368px) { 
    #top.home #av_section_2 .flex_column_table_cell {
    	padding: 30px 10px!important;
    }
    #top.home #av_section_2 .flex_column_table_cell .avia-button.avia-size-x-large {
    	min-width: 180px;
    }
    }

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

    Best regards,
    Mike

    in reply to: image stick to bottom (again!) #1329806

    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: open-popup-modal on mobile #1329802

    Hi,
    Try preventing the page from scrolling with the lightbox popup by trying this solution

    Best regards,
    Mike

    in reply to: Remove white space below slider #1329799

    Hi,
    Glad to hear that you have this sorted 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

    in reply to: Contact Form push engine down #1329795

    Hi,
    Glad we were able to help with the original questions, and thanks for sharing your spam attack solution, 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: Fullwidth slider causes content load delay #1329786

    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: How can I add a link next to the burger menu #1329785

    Hi,
    Ok, assuming that this will be a link that only shows on mobile, you can add a custom menu item to the bottom of your main menu and adjust this css so the menu ID in the rule matches your menu item:

    @media only screen and (max-width: 767px) { 
    	.responsive #top .av-main-nav #menu-item-3178.menu-item {
    	display:block;
    }
    }
    @media only screen and (min-width: 768px) { 
    	.responsive #top .av-main-nav #menu-item-3178.menu-item {
    	display:none;
    }
    }
    

    2021-11-20_001.jpg

    Best regards,
    Mike

    in reply to: How can I add a link next to the burger menu #1329780

    Hi,
    Ok, your screenshot looks like a language selector, are these two links or one? are the links shown on the desktop site? Can we see your site?

    Best regards,
    Mike

    in reply to: Troubleshooting transparent/shrinking header #1329779

    Hey jaimemerz,
    For your homepage I would recommend using an image element to show your giant 1/2 page logo in the center of the screen and then hide it on scroll.
    What are your plans for tablets and mobile?
    Try setting up your logo below the menu like you would have it and adding the “logo” image in the center of the screen, and include an admin login so we can assist with hiding on scroll, your staging site doesn’t have any interior pages linked in the menu, please add.

    Best regards,
    Mike

    in reply to: Possible To Display Current Date in Text Block? #1329777

    Hi,
    Glad Yigit 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: How can I add a link next to the burger menu #1329775

    Hey koraytastan,
    If the link is a language selector can you tell us which plugin you are using and link to your site so we can see where it is currently showing?

    Best regards,
    Mike

    in reply to: grid row cells not lined up #1329754

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

    #av-layout-grid-1 .avia-content-slider .slide-entry-wrap,
    #av-layout-grid-1 .avia-content-slider .slide-entry-wrap a.slide-image {
        margin-bottom: 0;
        padding-right: 15px;
    }
    #av-layout-grid-1 .flex_cell.avia-builder-el-first {
    	padding: 0;
    }
    

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area for the expected results.

    Best regards,
    Mike

    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

Viewing 30 posts - 13,141 through 13,170 (of 34,581 total)