Viewing 30 results - 217,891 through 217,920 (of 243,565 total)
  • Author
    Search Results
  • #284040

    Hi Sal!

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

    @media only screen and (max-width: 768px) {
    .phone-no {
    display: block;
    position: fixed!important;
    left: 60%!important;
    }}

    Regards,
    Yigit

    #284037

    Hi sineadh!

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

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    max-width: 85%;
    height: auto !important; }}

    Cheers!
    Yigit

    #284032

    Hi!

    You can turn on custom CSS class field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and give your element a unique class and add following code to Quick CSS in Enfold theme options under General Styling tab to move your arrows down

    .your-custom-class { padding-top: 20px; }

    Best regards,
    Yigit

    #284025

    Hey!

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

    .footer_color { background-size: cover; }

    Best regards,
    Yigit

    #284012

    Hey MeisDesign!

    Seems like you have already figured it out but if you would like to change the header size, please go to Enfold theme options > Header Layout > Header Layout > Header Size = Custom Pixel Value > Header Custom Height and adjust as needed

    Regards,
    Yigit

    #284010

    In reply to: main menu

    Hi Finlando!

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

    .header-scrolled #header_main_alternate {
    border-bottom: 1px solid black;
    }

    Regards,
    Yigit

    #283999

    Hi remix1998!

    Thank you for using our theme.

    If you want to remove the featured image from the archive page, you need to use enfold-child theme and it needs some modifications to the php source.

    If you want to do this, i can send you the modified files.

    Best regards,
    Günter

    #283998
    Justin
    Participant

    What would you recommend as best practice for having a homepage slider that rotates various “action items” with a side column of text similar to what’s seen here with Builder: http://html.orange-idea.com/builder/home-page-3-example/

    I’ve taken note as well, that the awa page refuses to respond to full-page layout with the events calendar even though the enfold theme settings for SIDEBAR LAYOUT has “No Sidebars” set, and the actual page itself that has the calendar has the default selected with “No sidebars”. Any particular reason why it won’t respond?

    Thanks

    schlafstatt
    Participant

    Hallo auch,

    wir haben eine Webseite für einen unserer Kunden geupdatet (Plugins, WordPress und Enfold) aber jetzt werden die Bilder vom Portfolio nicht mehr angezeigt:

    http://backuptest.icosmedia-projekte.de/?page_id=2602&preview=true

    Die Bilder existieren in der Mediathek und werden auch korrekt angezeigt wenn man die leeren Kästen anklickt und zur einzelnen Portfolio-Seite geschickt wird, aber bei der Übersicht ist eben nichts weiße Kästen mit dem namen des Portfolios zu sehen.

    #283981

    Topic: Enfold Form

    in forum Enfold
    ajosecorrea
    Participant

    Hello,

    I changed hosting, everything works great, except the contact form.

    I’ve updated to the latest version Enfold.

    The form does not give me error. I just do not receive the mail.

    Someone can help me? where I can look.

    Thank you!

    This reply has been marked as private.
    #283970

    In reply to: Tabular Table Issues

    Hi Peter,

    Thank you! As a matter of fact I’ve been using the tablepress plugin on my other site that runs on Genesis but to display a different type of data. The tablepress plugin is the best currently available to display a large number of columns on tablet screens but it doesn’t really work on the smaller smartphone screens when you also need to display more than 10 rows as the headings on the top rows get lost when scrolling down.

    The Enfold theme’s table element is the best that I found to display large number of rows on smartphones but it doesn’t work on tablet screens when you also have a large number of columns. :(

    Oh well! I hope that Kriesi will consider making it work on both screens sometime in the near future!

    Thank you,
    George

    #283967

    Hi Josue,

    actually, now that i’ve tried other things, including removing all custom CSS, reinstalling enfold, the problem still exist. it’s fine, until the page loads completely.

    • This reply was modified 11 years, 5 months ago by vin8tan.
    #283964

    Topic: Problem with Main Menu

    in forum Enfold
    andersjung
    Participant

    Hi.
    I`m using Enfold 2.8.1 with WordPress 3.9.1. It´s a great theme.
    Now I have a big problem with the Main Menu. My customer uses a lot of items in the menu. After he added the last, the menu looked destroyed. The checkbox Enfold Main Menu for position in the theme under design / menu was unchecked after that. It was not possible to check it again. After he removed the menu item everything was alright again.
    I checked it and first set the WP_MEMORY_LIMIT up to 128M. Nothing happened. I disabled all widgets. Nothing happened. Then I checked the source in both conditions and found that des DIV Class around the menu thats normally claas=”avia-menu av-main-nav-wrap” is now claas=”fallback_menu av-main-nav-wrap”
    How can I solve this problem?

    Hey Lorenzo!

    Open up enfold/js/avia.js and replace:

    
    elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
    

    with

    
    elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:true, default_width: ww, default_height: wh });
    

    Regards,
    Peter

    Hi!

    Ich habe mir die Sache nun angesehen und der “Default” Wert bezieht sich nicht auf das “Masonry Grid” Element (welches ja auch für Artikel oder Produkte verwendet werden kann), sonder auf das “Portfolio” Element. Die “Default” Einstellung hat daher beim Masonry Grid grundsätzlich keine Bedeutung. Es gibt daher zwei Lösungsansätze:

    1) Man fügt in das Custom Link Feld die Bildurl ein.

    2) Man kann mit diesem Code:

    
    add_filter('avf_masonry_loop_prepare','avia_change_default_link', 10, 2);
    function avia_change_default_link($loop, $entries)
    {
        foreach($entries->posts as $key => $entry)
        {
            if($entry->post_type == "portfolio")
            {
                $id = $entry->ID;
                
                if(!post_password_required($id))
                {
                    $custom_link = get_post_meta($id ,'_portfolio_custom_link', true) != "" ? get_post_meta($id ,'_portfolio_custom_link_url', true) : false;
                    if($custom_link)
                    {
                        $loop[$key]['url'] = $custom_link;
                    }
                    else
                    {
                        $url = wp_get_attachment_url(get_post_thumbnail_id($id));
                        if($url) $loop[$key]['url'] = $url;
                    }
                }
            }
        }
    
        return $loop;
    }
    
    

    die Bild-URL als Standard-URL setzen. Der Code kann in die child theme functions.php eingefügt werden (dann ist er auch nach einer Aktualisierung des Enfold Themes noch aktiv), oder (falls kein Child Theme verwendet wird) fge diesen Code in enfold/functions.php ein.

    Regards,
    Peter

    #283944
    This reply has been marked as private.
    #283936
    rseybold
    Participant

    Encountered an Enfold-Problem with WPML. WPML has some problems with different themes, like SOHO Hotel as well.

    Problem is: When editing an article the english version gets lost. Standard of article goes to automatic translation via WPML which is stupid.
    Only solution is to get an older revision of the english version and work it over.

    Affects Permalinks
    Affects Menu

    Here is my open task at WPML:
    http://wpml.org/de/forums/topic/wpml-uebersetzt-englische-uebersetzung-zurueck-auf-deutsch/

    They will come after you, surely.

    Please help me.

    #283920

    Hi xpoveda!

    No, unfortunately not. I checked the code and the problem is that the plugin loads the old isotope 1.5 version and we use the new 2.0 version for Enfold (which is the most recent and stable version: http://isotope.metafizzy.co/ ). Unfortunately the 1.5 version is not fully compatible with 2.0 and thus the plugin code triggers an error (i.e. it calls a method with the name ‘reLayout’ which is called ‘layout’ since 2.0). There’s no easy way to fix this. You can suggest the plugin author to update to the new isotope script version but if they don’t want to the Social Stream plugin is incompatible with Enfold 2.8.x.

    Regards,
    Peter

    #283915

    Topic: Tables

    in forum Enfold
    rpl_admin
    Participant

    Hi there,
    We’re using a WP paid membership plugin. The plugin (PaidMembershipPro) has another plug-in which is supposed to edit the “prices” page table to make them look nice. It seems that it calls the tabular table rather than the pricing table in Enfold. Can you help at all?

    #283911
    Haycreations
    Participant

    Hi,

    After uploading a new image to the Easy Slider, the following code is showing on screen in Preview Mode

    [av_slide_full slide_type='image' id='8268' attachment=',' video='' mobile_image='' video_format='' video_ratio='' title='' caption_pos='caption_right caption_right_framed caption_framed' link_apply='' link='lightbox' link_target='' button_label='' button_color='light' link1='' link_target1='' button_label2='' button_color2='light' link2='' link_target2='' video_controls='' video_mute='' video_loop='' video_autoplay='']

    My other slider images which have been there for months are not displaying this code.

    I have the latest Enfold update & have tried de-activating all plugins – but it hasn’t solved the problem.

    Please advise.

    Thanks

    #283899

    Hey!

    Try adding this code to the Quick CSS:

    .ls-playvideo {
        background-image: url(https://www.joanrosefoundation.com/newsite/wp-content/themes/enfold/config-layerslider/LayerSlider/static/skins/fullwidth/skin.png) !important;
    }

    Cheers! 
    Josue

    #283884

    Thanks Josue, Yigit sorted my login page for wordpress but its the enter password page for protected pages that I want to change so it looks like better i.e. has my logo on the page to log in

    This is what Yigit did for me which is great http://i.imgur.com/mVuJqq0.png

    but what i am trying to do is get this kind of look when you click on a password protected page on my site. Don’t need the user name just my logo and the enter password field. Do you know if this plugin does that?

    So what it is for is I am a photographer and put up password protected pages with the clients images from say an event for them to view and purchase images. When they click on their page link it comes up with the default wordpress or enfold This page is protected and they need to enter a password not a user name. I would like this page to look nicer with my logo above the field to input the password

    Thanks again for the quick response and help

    Richard

    • This reply was modified 11 years, 5 months ago by rbulley.
    #283881

    Thank you for the tips Yigit.

    Cleared my cache, and tried another browser, neither worked. I can switch to the default WordPress editor, add content, and save the changes, but when I switch back to the Avia Layout Builder, it just never loads. Keep seeing the spinny loading wheel in the editor area.

    I have no active plugins and I’m seeing the issue using Enfold, as well as when I use a child theme based on Enfold.

    Let me know if you’d like access to the site to see for yourself.

    Chris

    #283869

    Thanks. Well I did neaer the bottom of the theme’s function.php file (located at ‘wp-content’ > ‘enfold’ > root) but the site fails to then load with the error: “Parse error: syntax error, unexpected ‘function’ (T_FUNCTION) in /usr/www/users/freelan/newsite/wp-content/themes/enfold/functions.php on line 433”

    Please advise further.

    #283865

    In reply to: Mobile Menu

    Hey!

    Thank you for the heads up!

    I’ll ask Kriesi and Dude to take a look. For the meantime, please go to Enfold > Header Layout > Mobile Menu panel. Deselect or deactivate the Hide Mobile Menu Submenu Items option.

    Cheers!
    Ismael

    Hi billlon!

    Thank you for visiting the support forum!

    Add this on Quick CSS or custom.css:

    .tribe-theme-parent-enfold main.template-page.content.nine.alpha.units {
    width: 100%;
    }

    Best regards,
    Ismael

    Hi damian24!

    Before anything else you should update your theme to the most recent version since your current version isn’t compatible with WordPress 3.9.

    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    As for performance you can try using a plugin like WP Super Cache or w3tc which are typically the best single step you can do to increase performance.

    For the WordPress error, deactivate *all* plugins and then try doing the same thing again. If it still happens try switching to one of the default themes (twenty fourteen etc) and then try it again.

    Best regards,
    Devin

    Hey!

    Yes, I would only suggest having a single instance of the enfold theme on the server but you can download the others as a backup locally.

    When you updated, what did you update from (version)?

    Regards,
    Devin

    #283845

    Hi!

    I just added a comment on the enfold Quick CSS field and changed the body background from 333 to 2e2e2e and both are showing on the live site now: http://reithlambert-podcreative.co.uk/wp-content/uploads/dynamic_avia/enfold.css

    What are you not able to change from the styling options?

    Regards,
    Devin

Viewing 30 results - 217,891 through 217,920 (of 243,565 total)