Viewing 30 results - 213,841 through 213,870 (of 244,478 total)
  • Author
    Search Results
  • #315256

    In reply to: Problems with 4.0

    Hi Peter,

    Again I de-activated all the plugins and it keeps showing nothing.

    Also this is te file that is failing to upload: MKD /var/www/html/wp-content/themes/enfold/config-layerslider/LayerSlider/static/scss/.sass-cache/dcdbb31ab373124dcb7a9ab31d24df8e7fe5bbb4

    If I updated from 2.6 to 2.9.2, does that matter?

    I really need a solution and sorry put if I didn’t updated wordpress and the theme I would now being having this errors.

    Thanks and sorry for bothering!!!

    #315244

    Ok I tried the deleting of the enfold_child.css and regenerating it…it worked! The Child theme is back displaying as expected.

    Thanks for the help.

    websitegurus
    Participant

    Two questions are highlighted below.

    I am hosting a Gallery inserted from the ALB on a page without a header, footer, sidebar, or any other elements on the page. No keylines, borders, or anything else. Nada, zip, zilch. Just the Gallery. It does not have a parent Div container. Zilch. That Gallery is Fixed Positioned to the upper left corner of the browser window at coordinates left:0 top:0
    It has a max-width property set to 100% so it completely fills the browser window. It works a treat and looks grand.

    Now, I want to serve this gallery in an Iframe inside another page so she will scale up and down. That also works grand. But with one big caveat: The white background doesn’t match the host page holding the Iframe.

    Q. What CSS properties are controlling the underlying Iframe page to appear white and how do I make that property transparent?

    I am not asking you how to make a transparent Iframe. I know how to do this and have done it countless times with self-authored web pages using straightforward HTML, CSS and not using a CMS. Read my question above. It is very specific. What CSS property is controlling the page color and how do I make that underlying property transparent? If it requires !important on a CSS property, let me know that. I do not use the short code editors for anything, so this is not an attractive solution. I use a separate style.css sheet for modifications inside the child-theme folder.

    Is the property HTML? .html_stretched? .responsive? This is the top level CSS tree that I see when analyzing the CSS on the page.

    Traditionally, this is how you handle making a transparent underlying IFrame:
    1. The BODY tag on the Iframe page needs: background-color:transparent
    2. The host HTML page that holds the Iframe inside it requires ALLOWTRANSPARENCY=”true” attribute on the Iframe tag

    This is not cutting the mustard and doesn’t work. Something white appears to be overlaying the BODY tag.

    Q2. And finally, ideally, I would like to only have this Iframe page with background-color:transparent, leaving all other pages with the default properties. So can you include the correct syntax for
    including it on .page-id-3343 ?

    Thanks for any input you can offer.

    • This topic was modified 11 years, 6 months ago by Josue.

    Hey!

    We use ajax to query the next set of images when the user scrolls down. The image query can be found in wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php (function called “query_entries_by_id”).

    Regards,
    Peter

    #315225

    Hi stevemulisa!

    1) Please update WPML to the latest version. You’re using version 3.1.5 with is not compatible with WP3.9 or WP 4.0.

    2) Please update all other plugins too, including WooCommerce

    3) Update the theme to Enfold 3.9.2

    4) Update WordPress to 4.0.

    Then try to re-create the pages with WooCommerce and check the results.

    Best regards,
    Peter

    #315223
    This reply has been marked as private.
    #315222

    Hey tgdigitalsolutions!

    You (or someone else) modified the enfold/js/avia.js file somehow. We don’t support customized code thus I replaced it with the original code and the slider works now. I made a backup of your custom code – you can download/view it here: http://pastebin.com/XdrUKrpA

    Best regards,
    Peter

    #315214

    Hi!

    Dann füge bitte diesen Code in die enfold/functions.php oder child theme functions.php ein:

    
    function avia_custom_taxonomy_in_body_class( $classes )
    {
      if(is_single() && get_post_type(get_the_ID()) == "portfolio")
      {
        $custom_terms = get_the_terms(get_the_ID(), 'portfolio_entries');
        if($custom_terms)
        {
          foreach ($custom_terms as $custom_term)
          {
            $classes[] = 'portfolio_cat_' . $custom_term->slug;
          }
        }
      }
      return $classes;
    }
    
    add_filter( 'body_class', 'avia_custom_taxonomy_in_body_class' );
    

    Dieser fügt zu den Body Klassen noch die Portfolio Kategorie hinzu (bzw besser gesagt den Slug der Kategorie). ZB für Produkte wird der Slug vermutlich “produkte” sein, sodass der Code wie folgt aussieht:

    
    .single-portfolio.portfolio_cat_produkte .header_color .main_menu ul:first-child > li#menu-item-134 > a {
    color: #333333;
    }
    
    .single-portfolio.portfolio_cat_produkte  #menu-item-134 a .avia-menu-fx, .single-portfolio.portfolio_cat_produkte #menu-item-134 a .avia-menu-fx {
    visibility: visible;
    opacity: 1;
    }
    

    Für Referenzen gibt es eine andere Menu Item ID und Slug:

    
    .single-portfolio.portfolio_cat_referenzen  .header_color .main_menu ul:first-child > li#menu-item-132 > a {
    color: #333333;
    }
    
    .single-portfolio.portfolio_cat_referenzen #menu-item-132 a .avia-menu-fx, .single-portfolio.portfolio_cat_referenzen  #menu-item-132 a .avia-menu-fx {
    visibility: visible;
    opacity: 1;
    }
    

    Cheers!
    Peter

    #315207

    In reply to: Theme errors

    I’m currently seeing an issue with the images and using the fade in options and also the circle options as well no longer displays on my site.. I’ve disabled the plugins and also re-installed the new updated version of enfold…

    #315206

    Hi!

    If you add this code to enfold/functions.php a theme update will overwrite it – yes. However you can create/use a child theme if you don’t want that the custom functions.php file is affected by a theme update. Just create a file inside the child theme folder, call it “functions.php” and add your code into it. You can also download the sample child theme here: http://kriesi.at/documentation/enfold/using-a-child-theme/

    Cheers!
    Peter

    #315203

    In reply to: Theme errors

    Hey!

    Version 2.9.2 was released on 28th of August. Please try updating the theme via FTP – http://vimeo.com/67209750
    None of the users currently having compatibility issues with WordPress 4.0 and Enfold 2.9.2. Theme needs to be updated.

    Cheers!
    Yigit

    #315201

    In reply to: Theme errors

    This reply has been marked as private.
    #315193
    computereze
    Participant

    Hi,
    I am using the Enfold theme and must say its great, however, since the update to WP4, the accordion content element that i am using on 2 pages on my site (the one that allows you to have a drop down menu etc) has decided to have issues with the (+) icon. The icon is distorted across the entire title of that menu, which has resulted in the line of text to look like it has a line through it all.

    I have disabled plugins, ensured that i have the most current updated theme (2.9.2), but i cannot rectify this issue. The page is The page is at http://www.cornwalladvanced.co.uk/faqs/

    Can you help?

    Kind regards

    Toby

    #315192

    Hey CoolPenguinSays!

    Can you please firstly update Enfold to the latest version 2.9.2 via FTP – http://vimeo.com/67209750
    then try de-activating all active plugins and check if that helps?

    Best regards,
    Yigit

    #315186

    Hi!

    You are currently using an older version of the theme. Please update Enfold to the latest version 2.9.2 via FTP – http://vimeo.com/67209750

    Cheers!
    Yigit

    #315182

    Hey Gurify!

    Please update Enfold to the latest version 2.9.2 which is compatible with WordPress 4.0 – http://vimeo.com/67209750
    That should solve the issues, if not, let us know!

    Regards,
    Yigit

    #315180

    Hi MadRhino!

    Have you tried using transparent glass option for the header? You can see an example here – http://kriesi.at/themes/enfold/shortcodes/images-with-hotspots/
    You can find a short introduction video here – http://kriesi.at/documentation/enfold/portfolio-item/intro-to-the-header-configurator/
    Regards,
    Yigit

    #315179

    Hey James!

    Currently maintenance mode is active on your website so i could not check Enfold version you are using. Please make sure that you are using the latest version of the theme which is 2.9.2 and fully compatible with WordPress 4.0.
    Please see – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Yigit

    #315178
    dognwolf
    Participant

    Hello,

    Can you advise if it is OK to upgrade to WordPress v4 when using the Enfold theme?

    Thank you in advance.

    James.

    #315174

    Thanks Ishmael,

    I removed the flags.
    You’re right, it’s actually the WPML switcher that is in the menu. I don’t like the format of it but because it’s in the Enfold menu I can’t seem to figure out how to change it.

    #315173

    In reply to: Color of the icons

    Hi wpstarter!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .avia-icon-list .iconlist_icon {
    background-color: red!important;
    }
    .iconbox_top .iconbox_icon {
    background-color: red!important;
    }

    If that does not work, please post the link to your website and point out the icon you would like to adjust

    Best regards,
    Yigit

    Hi Alex!

    Yes, that is correct. Links that are user defined are not automatically changed. You would need to change them when moving the data. See: http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/

    Regards,
    Devin

    #315171

    Hi,

    I have a problem with child theme. When I click ‘Enfold Child’ at left WordPress menu it shows like this image: https://drive.google.com/file/d/0B89QUyIFnsEWR3l4WWZtUUk0U2M/edit?usp=sharing

    And don’t show the left ‘enfold menu’. What is the problem?

    orangeamps
    Participant

    Hi,

    We updated to the Enfold 2.9.2 and to WordPress 4.0. All is well except that video’s with playlists are now shrunk in size on our web pages and only expand to the correct size after clicking back and forth on the video links on the playlist. Any ideas? I’ve included website link to a sample post with the issue in the private content area.

    thanks in advance,
    Charlie

    #315156

    Hunter74… it’s possible that Günter was correct at the time but all I know is that I am able to simply save sidebar.php from the parent theme in my child theme folder and I can comment out or delete

    //             avia_dummy_widget(2);
    //             avia_dummy_widget(3);
    //             avia_dummy_widget(4);

    in my child theme’s sidebar.php file to suppress the dummy widgets. If it matters I’m using Enfold 2.9.2

    #315155

    Hi lizybloom!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (min-width: 1800px) {
    .responsive.html_stretched .av-masonry-entry {
    width: 25%;
    }}

    Regards,
    Yigit

    #315145

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab
    1-

    .main_color { background-size: cover; }

    2-

    .main_color .av-masonry {
    background-image: url(https://www.ivantirtiaux.com/wp-content/uploads/2014/08/background-IvanTirtiaux-texte1.jpg);
    background-size: cover;
    }
    @media only screen and (min-width: 1800px) {
    .responsive.html_stretched .av-masonry-entry {
    width: 13%;
    }}

    You may need to adjust width value

    Regards,
    Yigit

    #315143

    Hi!


    @cinzlewis
    Please login on ThemeForest with the account you have purchased Enfold and go to Downloads section to download the latest version and update the theme via FTP – http://vimeo.com/67209750

    @eurekastudios
    Thank you for helping :)

    Regards,
    Yigit

    #315142

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 480px) { 
    .ls-wp-fullwidth-container {
    display: none !important;
    }}

    Cheers!
    Yigit

    Make sure you are using Enfold version 2.9.2 and all plugins are either deactivated or have been updated to work with WordPress 4.0.

Viewing 30 results - 213,841 through 213,870 (of 244,478 total)