Forum Replies Created

Viewing 30 posts - 38,431 through 38,460 (of 66,745 total)
  • Author
    Posts
  • in reply to: Contact formular – email adress error #711761

    Hi!

    What specific error are you having in your contact form? I checked the contact page but the form is not there. Did you remove it? The snippet above should fetch the value of the contact form’s email field and use it as the from address. Is that what you’re after?

    Regards,
    Ismael

    in reply to: Full-Width Images on a Page #711522

    Hey!

    Thank you for the update. However, we can’t see the screencast because it creates an error. Anyway, please do the following steps.

    1.) Add a color section then follow this short documentation to make the container full width.
    // http://kriesi.at/documentation/enfold/color-section-with-100-container/

    2.) Inside the color section, insert the “Image” element.

    3.) Go to the Quick CSS field and then add the following css code.

    .avia-image-container avia-image-container-inner, .avia-image-container avia-image-container-inner img {
        width: 100%;
    }

    The image will inherit the width of the browser size.

    Best regards,
    Ismael

    Hi!

    My question to you is: Do I have to copy and paste all the parent theme files to the Child theme using FTP to be able to get the identical Child theme to parent theme?

    Yes, you have to do this if there are modifications or changes added to those files. Did you import the parent theme options after activating the child theme?

    Best regards,
    Ismael

    in reply to: Javascript conflict #711520

    Hi!

    Thank you for the update. Please post the login details here so that we can check the settings. Make sure to provide an administrator account.

    Regards,
    Ismael

    in reply to: Create Extra Text Field #711519

    Hey!

    It is working properly on our installation. Did you add the css code? Please post the login details here so that we can check it.

    2. There is nowhere to edit the content as the extra field does not show in the category editing panel.

    Edit the category then look for the Description field.

    Best regards,
    Ismael

    in reply to: automatic non-breaking spaces #711518

    Hi mansfeld!

    Thank you for using Enfold.

    I’m sorry but this customization is outside the scope of support. Please hire a freelance developer or contact our partner, codeble, to create a custom script or plugin. http://kriesi.at/contact/customization

    Cheers!
    Ismael

    in reply to: Image Animaiton using steps() CSS code #711517

    Hey!

    I played around with the code and I think that the only solution is to have different sizes of the image. And you have to define the background property in the Quick CSS field.

    HTML:

    <div class="team-profile frame5 time7 johndoe"> </div>
    
    <div class="text-profile title">
      NAME
    </div>

    CSS:

    .team-profile {
      width: 400px;
      height: 400px;
      top:0%;
      -webkit-animation-name: play;
      background-position: 0 0;
      animation: revplay 1s steps(15,end) 1 normal forwards;
    }
    
    .johndoe {
       background: url('http://exxatcontent.blob.core.windows.net/exxat-website-public-documents/rakesh%20strip.jpg') left center;
    }
    

    For smaller screens, you have to define the background property again but provide a smaller version of the image.

    @media only screen and (max-width: 767px) {
       .johndoe {
          background: url('http://exxatcontent.blob.core.windows.net/exxat-website-public-documents/rakesh%20strip_smallerversion.jpg') left center;
       }
    }
    

    Regards,
    Ismael

    in reply to: Google Pulling Date From Portfolio!! #711516

    Hey bezziebb!

    Thank you for using Enfold.

    The date is fetch from the Latest News footer widget. You can either disable the widget or we can remove the date function from the widget template.

    Cheers!
    Ismael

    in reply to: ITEM PORTFOLIO ADMIN FILTERS #711513

    Hey!

    Could you please provide a link to the page? Are you using the Portfolio Grid element? The category filter should be added by default as long as the “Sortable?” option is enabled.

    Regards,
    Ismael

    in reply to: 3.8 problems #711512

    Hi!

    Thank you for the info.

    We found an error in the console but we can’t reproduce it on our end.

    avia.js?ver=3:1258 Uncaught TypeError: dropdownItems.find(…).addBack is not a function(…)

    Did you modify any of the theme files? Please download a fresh copy of the theme from your themeforest account then update the installation.

    Best regards,
    Ismael

    in reply to: Adding Google font Alegreya-Sans to Layer Slider #711507

    Hey JantienM!

    Thank you for using Enfold.

    I tried to login to the site but I got the following error:

    Uw WordPress admin is beveiligd door KeurigOnline. Ga naar deze pagina voor meer informatie of ga naar DirectAdmin > WPGuard Gateway om u zelf toegang te verschaffen tot de wp-admin. Heeft u vragen of problemen? Bel dan onze helpdesk.

    Please follow these steps.

    1.) Go to the LayerSlider WP panel then look for the Google Fonts tab.
    2.) Search for the Alegraya font, toggle the font weights then add it.
    3.) In the slider, edit the layer then go to the Styles panel. Set the Font > Family to “Alegreya”.
    4.) If you want to specify the font weight, add it in the Custom CSS field of the Styles panel.

    Cheers!
    Ismael

    in reply to: Mobile menu effect Code Snippet problem #711502

    Hey!

    We modified the css code in the Quick CSS field a bit. Please remove browser cache or hard refresh before testing the page.

    Cheers!
    Ismael

    in reply to: Dateiname soll in Galerie nicht angezeigt werden #711497

    Hey Nicoletta_DUS!

    Thank you for using Enfold.

    1-2.) You can change the title of each image in the Media > Library panel.

    3.) There are plugins for this but we haven’t tested their compatibility with the theme.

    // https://wordpress.org/plugins/enhanced-media-library/
    // https://wordpress.org/plugins/media-library-plus/

    Cheers!
    Ismael

    in reply to: Layer Slider responsive text #711496

    Hi inaudit!

    Thank you for using Enfold.

    Edit the layer and go to the Attribute panel then apply a custom css class or id to it. You can then use this selector inside a css media query to manipulate the style on narrow screens.

    // http://www.w3schools.com/cssref/css3_pr_mediaquery.asp

    Best regards,
    Ismael

    in reply to: Color section background fade in and fade out #711224

    Hey!

    Could you please provide an example of the fade animation? @Nikko’s suggestion is to use an “Image” element inside the advance layout builder. Edit the element, go to the Animation panel and you’ll see different kinds of options. However, I doubt that this is what you’re looking for. Please provide more info.

    Best regards,
    Ismael

    Hey!

    We found the problem in the masonry script. Please edit the config-templatebuilder > avia-shortcodes > av-helper-masonry.php file, look for this code around line 543:

    				//set the html tags. depending on the link settings use either an a tag or a div tag
    				if(!empty($this->atts['container_links']) || !empty($custom_url))
    

    Replace it with:

    				//set the html tags. depending on the link settings use either an a tag or a div tag
    				if(strpos($this->atts['caption_elements'], 'excerpt') === false && !empty($this->atts['container_links']) || !empty($custom_url))

    This is a temporary workaround while we are fixing the issue.

    Regards,
    Ismael

    in reply to: progress bar with link to pop up text #711200

    Hi!

    Please post the login details here so that we can fix the css codes. There’s a missing curly brace in the previous css codes and that’s why it’s not working. Where did you add the tab element?

    Regards,
    Ismael

    in reply to: Avia Layout Editor Loading Forever #711193

    Hey!

    It can be a server issue but the site is working on desktop. It’s a little difficult to debug because we don’t see any errors in the browser console. Please ask your hosting provider for the error logs if there’s any. And post the content of the .htaccess file on pastebin.com. We would like to check if the WP Super Cache’s configurations are still there.

    Best regards,
    Ismael

    in reply to: Random post sorting not working #711190

    Hi!

    I tested the settings on my own installation and it’s working. Please post the FTP details here so that we can inspect the issue carefully.

    Cheers!
    Ismael

    Hi!

    We tried to login to the site but the login credentials are incorrect. We found a lot of jQuery errors in the console. Did you install a cache or minify plugin?

    Best regards,
    Ismael

    in reply to: Problem adding fontello icons on Enfold 3.7 #711179

    Hi!

    I’m sorry but the login credentials are not working. And I also tried the previous one but it’s not an administrator. Please check the info carefully.

    ERROR: The password you entered for the username startupadmin is incorrect. Lost your password?

    Regards,
    Ismael

    in reply to: Masonry Layout Ordering #711156

    Hi!

    I tried to reposition the portfolio items but I can’t get it to work like you wanted to. I’m sorry but I’m not sure if you can manually re-order the portfolio items based on the page attribute value because of the isotope script (http://isotope.metafizzy.co/). This script calculates the position of the masonry items automatically, regardless of the page attribute value. And it actually causes issues to the display order of the masonry items. Unfortunately, we don’t have any solution for it yet.

    Best regards,
    Ismael

    in reply to: Fullscreen Slider on Home Page Does Not Resize for Mobile #711143

    Hi jdannay!

    Thank you for using Enfold.

    1.) Please edit the images in the slider then set the “Image Position” to “Center center”. This is usually the best option for most images. Note the images in the slider is set as background and their background-size property is set to “cover” which means that it will force the image to cover the slider container. However, parts of the images might overflow outside the container in order to keep its aspect ratio.

    2.) Did you install the Woocommerce plugin? It will display automatically if you installed the plugin. You can easily hide it with this css code:

    @media only screen and (max-width: 767px) {
    .responsive #top .cart_dropdown {
        display: none;
    }
    }

    Regards,
    Ismael

    in reply to: insanly high cpu load after uploading enfold theme #711139

    Hi jochems!

    Thank you for using Enfold.

    I’m sorry but we have no idea what’s causing those errors in your installation. Could you give us an example of the errors?

    Cheers!
    Ismael

    in reply to: Appearance on smartphine not right part 2 #711138

    Hi!

    Please look for this code in the Quick CSS field:

    @media only screen and (min-width: 768px) and (max-width: 1024px) {
    .page-id-223 .caption_left .slideshow_caption {
        right: 50px;
        left: auto;
        width:50%;
    }
    }

    Replace it with the following code.

    @media only screen and (max-width: 1200px) and (min-width: 768px) {
    .page-id-223 .caption_left .slideshow_caption {
        right: auto;
        left: 100px;
        width: 50%;
    }
    }

    Regards,
    Ismael

    Hey!

    I got the solution from the SO forum and modified it so that it will only affect the search query.

    // http://stackoverflow.com/questions/19113788/google-disable-certain-querystring-in-robots-txt

    Google may take its time to remove the URLs that you have blocked from the search index. The extra URLs may still be indexed for months. You can speed the process up by using the “Remove URLs” feature in webmaster tools after they have been blocked. But that is a manual process where you have to paste in each individual URL that you want to have removed.

    // https://support.google.com/webmasters/answer/1663419?hl=en

    Best regards,
    Ismael

    in reply to: Slider cut off on mobile #711133

    Hey!

    I just want to remove the green header on the mobile !!

    Do you want to hide the logo on mobile? We added this code in the Quick CSS field.

    @media only screen and (max-width: 767px) {
    .home #wrap_all .av_header_transparency {
        background-color: transaprent !important;
    }
    
    .home #header_meta {
        background-color: #00bfb9 !important;
    }
    
    .home .logo {
        display: none !important;
    }
    
    .home #full_slider_1 {
        margin-top: 0;
    }
    
    .home .av_header_transparency #header_meta {
        border-bottom: 0;
    }
    
    .responsive.html_mobile_menu_tablet .container #advanced_menu_toggle, .responsive.html_mobile_menu_tablet #advanced_menu_hide {
        top: 40px;
    }
    }

    As for the caption on the iPhone 5c screen the caption has been moved to the top I prefer it in the middle however I am able to see the captions fully on the other sides.

    And we adjusted the caption position with this css code.

    @media only screen and (max-width: 767px) {
         .html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
            top: 10px;
        }
    }

    Best regards,
    Ismael

    in reply to: Social Icons on Page and in Widget #711113

    Hey!

    Thank you for the info. Please add this css codes in the Quick CSS field.

    .main_color .sidebar .iconbox_icon {
        color: green;
    }
    
    .main_color .sidebar #text-2 article:nth-child(1):hover .iconbox_icon {
        color: blue !important;
    }
    
    .main_color .sidebar #text-2 article:nth-child(2):hover .iconbox_icon {
        color: black !important;
    }
    
    .main_color .sidebar #text-2 article:nth-child(3):hover .iconbox_icon {
        color: orange !important;
    }
    
    .main_color .sidebar #text-2 article:nth-child(4):hover .iconbox_icon {
        color: red !important;
    }
    

    Please adjust the values as needed.

    Regards,
    Ismael

    in reply to: Easy Slider problem with mobile video / fallback image #711111

    Hey!

    We added a custom script in the functions.php file that removes the href attribute of the link on desktop view. Please remove browser cache or hard refresh before checking the page.

    Regards,
    Ismael

    in reply to: Masonry Gallery default to "All" on loading. #711107

    Hi!

    Portfolio and Team both using Masonry Gallery and want them each to auto populate with “All” before being able to sort by project or specialty.

    All items should be loaded by default before you can sort or filter it by category. I’m sorry but I’m not sure what you’re trying to do here.

    We are able to get one to auto populate with all projects but are unable to make a specialty class for the team pages that won’t effect the projects loading as well.

    How did manage to do it?

    Best regards,
    Ismael

Viewing 30 posts - 38,431 through 38,460 (of 66,745 total)