Forum Replies Created

Viewing 30 posts - 21,781 through 21,810 (of 67,485 total)
  • Author
    Posts
  • in reply to: Widgets vor Content auf Smartphone / Mobiles? #1131906

    Hi,

    Ich dachte, Sie verwenden das Textblockelement. Das tut mir leid. Du konnen bewegen das Widget in einem 1/1 Column Element und anwenden einem Custom CSS Class dazu. Anwenden “only mobile” zum Beispiel und diese css code hinzufugen im die Quick CSS field.

    @media only screen and (min-width: 989px) {
       .only_mobile { display: none; }
    }
    
    @media only screen and (max-width: 987px) {
       .only_mobile { display: block; }
    }

    Das sollte verstecken die Element auf dem Desktop und auf es mobile device anzeigen. Bitte verweisen zu diesi Link fur mehr Info.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Oder geben Sie die Anmeldedaten in das private Feld ein, damit wir sie für Sie hinzufügen können.

    Best regards,
    Ismael

    Hi,

    We don’t really see anything unusual in the search results. What should we be looking for?

    Screenshot: https://imgur.com/a/HYWXTvD

    Thank you for using Enfold.

    Best regards,
    Ismael

    in reply to: Enfold Header/Logo Layout #1131894

    Hi,

    The css code looks redundant. Are you trying to adjust the element’s css property for different screen sizes?

    Do you have the original source file (psd, svg, affinity etc) of the banner? It will be a lot easier if we can extract the logo and the right image from that banner. You can set the logo as logo, add the right image as widget and the banner as the header background.

    Best regards,
    Ismael

    in reply to: Customize contact form #1131893

    Hi,

    Thank you for the update.

    We added the appropriate column class attributes to the form fields to separate them.

    
    <p class="first_form form_element flex_column av_one_third  flex_column_div first">[select* indicatiftel "+33" "+41"]</p>
    <p class=" form_element flex_column av_two_third  flex_column_div">[tel* telephone placeholder "Téléphone*"]</p>
    
    

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    Click the “Individuelle..” or “Custom..” text/button to assign a custom color to the palette. Let us know if that works.

    Best regards,
    Ismael

    Hi,

    The thread has been pushed to the team. Please wait for their response. We are very sorry for inconvenience.

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    Did you add it in a page? If so, try to set the ‘single_only’ parameter to 0. That should enable the widget for pages.

    Best regards,
    Ismael

    in reply to: Custom font for all articles not working #1131883

    Hi,

    Thank you for the update.

    Looks like the main color is set to #e1e1e1. Please check the Enfold > General Styling > Main Content color panel. Adjust the value of the “Main Content font color” field. Did you adjust the style of the element in the Advanced Styling panel?

    Best regards,
    Ismael

    Hi,

    Yes, you may need to use another plugin for this because the blog posts element doesn’t have a category filter by default.

    Have you seen the masonry element? It has a category sort option, but I’m not sure if that would be enough for your requirement.

    Thanks for the update.

    Best regards,
    Ismael

    in reply to: Add predefined password input & validation to contact form #1131855

    Hey adotopanuga,

    Thank you for using Enfold.

    You can use the “avf_sc_contact_form_elements” filter to alter the existing contact form fields or insert additional custom input fields. Usage example of that filter can be found in the following thread.

    // https://kriesi.at/support/topic/get-variable-of-the-url-and-attach-it-on-subject-of-content-form-mail/#post-1010866

    You may need to create additional script to validate the password field.

    Best regards,
    Ismael

    in reply to: Need to replace author name with guest-author if it exists #1131853

    Hi,

    Thank you for the update.

    You have to edit that directly from includes > loop-index.php file. Look for this code around line 317:

    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
    

    We’re not quite sure about your next inquiry though. How do you translate the posts?

    Best regards,
    Ismael

    in reply to: Do not save changes/updates – Enfold Theme #1131850

    Hey MartinSkaarup,

    Thank you for using Enfold.

    We can’t seem to reproduce the issue on our end. The additional content displays immediately when we update the page. You should see a text block at the very bottom of the page.

    Best regards,
    Ismael

    in reply to: after_section elements #1131849

    Hey FeedXL2019,

    Thank you for the update.

    Did you add any lone elements after those sections? The “after_section” will only be created when there are additional elements outside or after a color section.

    Please post the login details in the private field so that we can check the content of the builder.

    Best regards,
    Ismael

    in reply to: Portfolio Gallery Thumbnail Issue #1131847

    Hi,

    UPDATE: I was looking at the main product image and didn’t notice the thumbnails below. Please try this css code.

    .avia_transform .avia-gallery-thumb img {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    Best regards,
    Ismael

    in reply to: Portfolio Gallery Thumbnail Issue #1131846

    Hey clairemartindigital,

    Thank you using Enfold.

    The thumbnail doesn’t look transparent. Is it fixed? We checked it on Firefox Windows 10. Please try to remove the browser’s cache or check it on incognito mode.

    Best regards,
    Ismael

    in reply to: Form not sending mails – What might be the cause? #1131844

    Hey mynick,

    Thank you for the update.

    Did you check your spam folder? Looks like the contact form is sending the emails properly, so this is more likely an issue with your email configuration or something else. (see private field)

    Have you tried this plugin?

    // https://wordpress.org/plugins/easy-wp-smtp/

    Best regards,
    Ismael

    in reply to: How to update your Enfold Themes now? #1131842

    Hi,

    We are very sorry for the inconvenience. Glad to hear that you’ve found the help that you need. The previous automatic update no longer works because Envato closed their old API and so those who are still using versions older than 4.4.1 will have to update the theme manually via FTP. After that, you can do the automatic update again as long as you have a valid token from Envato. You can read more info about that in the link that @Rikard provided above.

    Please make it a habit to update WordPress and the theme regularly. This is very important specially when your business depends on it.

    Best regards,
    Ismael

    in reply to: Activate Burger Menu on screens below 680px #1131840

    Hi,

    Thank you for the update.

    You can set the mobile menu to display when the screen width is less than 989px. The option is located in Enfold > Main Menu > General panel. Look for the “Menu Items for mobile” settings. You can also use this css to adjust the font size of the menu items and the space between them.

    @media only screen and (max-width: 1024px) {
      #top #header .av-main-nav > li > a {
        font-size: 13px;
        padding: 0 7px;
      }
    }
    
    

    Best regards,
    Ismael

    in reply to: Youtube slider problem and website otimization #1131837

    Hi,

    Thank you for the update.

    There is a filter called “avf_customize_heading_settings” that you can use to adjust the heading tag from h2 to h1. Usage example can be found in the following thread.

    // https://kriesi.at/support/topic/how-do-i-create-h1-tag-from-the-caption-title-in-fullscreen-slider-element/#post-1122101

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Do you want the left part of the image or background to display? You can adjust the position of the background in the container. Try this css code.

    @media only screen and (max-width: 767px) {
    .avia-fullscreen-slider .avia-slideshow > ul > li {
    	background-position: left center !important;
    }
    }

    You may need to toggle or disable the Performance > File Compression settings.

    Best regards,
    Ismael

    in reply to: Layerslider Layers On Mobile #1131816

    Hi,

    Thank you for the update.

    We disabled the “Start slideshow in viewport” option for the mobile slider. It takes a while but the slider loads eventually.

    Best regards,
    Ismael

    in reply to: Woo Commerce formatting #1131814

    Hi,

    Thank you for the update.

    We tried to login, but the info is incorrect. For starters, you can move the product image inside a 1/3 column instead of 1/2, then move the product content inside a 2/3 column so that the ratio will look almost the same as the default product page layout. You have to move the tab inside the 2/3 column as well.

    Best regards,
    Ismael

    Hey Sirpa,

    Thank you for using Enfold.

    We would like to check the pages, but the login credentials above are invalid. Please check the info or provide another account.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    1.) There is a grid in that page named “signup”, so the theme detects the “Newsletter” sub menu item, which is inside the “Info” menu item, as active.

    2.) There are html files for pinterest and google in the child theme folder. Does the site work when you remove those and activate the child theme? We don’t really see anything unusual with the child theme setup.

    Best regards,
    Ismael

    Hey aynest,

    Thank you for using Enfold.

    You can add different sets of menu using the wp_nav_menu function wrapped in an is_page conditional function. Add it directly in the includes > helper-main-menu.php template.

    // https://developer.wordpress.org/reference/functions/wp_nav_menu/
    // https://developer.wordpress.org/reference/functions/is_page/

    Altering the default sub menu will require more modification in comparison with the above method.

    Best regards,
    Ismael

    in reply to: Importing Startup business demo #1131802

    Hi,

    Sorry for the delay. We would like to help you import the demo, but there are custom content in the site already. The content and the theme options might get lost if we try to import the demo. Would you like to proceed?

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Social Icons in Big Footer #1131801

    Hi,

    Thank you for the update.

    The icons in the footer are displaying properly. We checked it on Firefox Windows 10. Is this fixed? Please try to remove the cache or check the page on incognito mode.

    Best regards,
    Ismael

    in reply to: Updating Enfold #1131800

    Hi,

    Thank you for the update.

    We are able to access the file server, but we didn’t see the latest version there. Please upload the latest version in the wp-content > themes folder, but rename it to “enfold_latest” so that we’ll have the old and latest copy. We’ll try to debug the issue afterwards.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Have you tried setting the Enfold > Header > Menu and Logo Position to “Logo center, Menu below”? This should move the menu below the header.

    Best regards,
    Ismael

    in reply to: Widgets vor Content auf Smartphone / Mobiles? #1131661

    Hi,

    Sehr gut – wie mache ich das?

    Bearbeiten sie das TextBlock Element mit den Widgets und suche die Screen Options tab. Du wirst finden Optionen zum Umschalten dem Element Visibility für die mobile view.

    Danke fur das Update.

    Best regards,
    Ismael

Viewing 30 posts - 21,781 through 21,810 (of 67,485 total)