Viewing 30 results - 7,591 through 7,620 (of 11,220 total)
  • Author
    Search Results
  • #583148

    Hey philee!

    Thank you for using Enfold.

    1.) Add this in the Quick CSS field:

    .av-siteloader {
        animation: none;
        background: url('http://philee.xyz/design/wp-content/uploads/2016/02/pre02j.gif');
        border: 0 !important;
        width: 89px;
        height: 94px;
    }
    

    2.) There’s a lot of css tutorial or snippets about rounded buttons. Example: http://jsfiddle.net/josedvq/Jyjjx/45/

    Best regards,
    Ismael

    #582963
    Schuns
    Participant

    Hi there,
    I’ve managed to do some adjustments to use the Advanced Layout Editor with custom post types like ‘lesson’ and ‘course’. Also I did some content wrapper adjustments, so the lay out is not broken anymore (which was the case when I first used Sensei and Enfold).

    However I’m still experiencing one problem. As soon as I start using the advanced lay out builder on a course of lesson page the Sensei generated content won’t be displayed. For instance the ‘complete lesson’ or ‘next lesson’ and ‘previous lesson’ buttons and stuff like that.

    I know you guys don’t really support Sensei but maybe there’s a quick solution?

    Regards,
    Schuns

    #582947

    du meinst die Sachen, die in die quick.css kommen.
    Gespeichert wird im wp-content/uploads ordner unter dynamic_avia –

    Aber du kannst die Enfold Optionen die du einstelltest auch via Daten Import/Export “Export Theme Settings File”

    Click the button to generate and download a config file which contains the theme settings. You can use the config file to import the theme settings on another sever.

    Meines Erachtens sind da alle Enfold Optionen (auch die Quick Css Einstellungen mit drin.

    PS ich sichere meine ganze WP Installation mittels Duplicator rück.
    Der generiert genau zwei Files (installer.php und ein zip-File)
    Im Falle eines Server Umzuges oder bei Absturz oder Viren-Befall lädt man nur noch 2 Files auf den leeren Ordner hoch und führt die installer.php aus.

    #582755
    Fionadee
    Participant

    Hi,
    I have a small adjustment to make to the header, I have tried several solutions but without success.
    My customer would like a “make a donation” button added the header. I have used the following php in my child theme:

    `add_action( ‘ava_main_header’, ‘enfold_customization_add_to_header’ );
    function enfold_customization_add_to_header() {
    echo do_shortcode(“[av_button label='Make a Donation' link='manually,http://www.google.com' link_target='' size='small' position='right' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='']“);
    }

    I would like to adjust the styling of the button – background colour, font and position (so that it aligns on the right with the social icons and moves down 20px)

    It would be great if you could advise which elements I need to target.

    Fiona

    #582655

    Hi!

    As Ismale mentioned to hide and display elements please follow the post link

    If you need more control on ALB elements enable custom css class support and add custom class and target them via css http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    To push the button a little below so it won’t overlap the logo please add the below code to Enfold > General Styling > Quick CSS

    
    @media only screen and (max-width: 768px) {
    #header .widget {
        padding-top: 140px;
    }
    }
    

    Cheers!
    Vinay Kashyap

    #582588

    I’m fiddling around with enhanced link attribution as well. Based on the way Enfold is coded the menu items in the header do not have unique element ids, but, the <li> does.

    `id=”menu-item-5123″ class=”menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-mega-parent menu-item-top-level menu-item-top-level-2″>
    <a href=”http://www.xxxxx.com/products/”><span class=”avia-bullet”></span><span class=”avia-menu-text”>Products</span><span class=”avia-menu-fx”><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></span>`

    Button classes however do not appear to have element ids as shown below:

    `<div class=”avia-button-wrap avia-button-center avia-builder-el-22 avia-builder-el-no-sibling “>
    <a href=”http://www.xxxxx.com/products/cps/”><span class=”avia_button_icon avia_button_icon_left ” aria-hidden=”true” data-av_icon=”” data-av_iconfont=”fontello”></span><span class=”avia_iconbox_title”>Browse Products</span>
    </a>
    </div>`

    I have only checked these two elements. But if there’s no unique element for things like buttons, and, if for the header all I will get in my GA report is something like menu-item-5123 (I suspect) then it doesn’t seem all that useful. I’m wondering if it’s even worth implementing.

    Thoughts?

    • This reply was modified 10 years, 2 months ago by Frank.
    #582468

    In reply to: blog post page

    Hi Yigit,

    thanks for your answer.
    With translation I mean, I would like to translate footer headlines, menues, etc. for my page because my page is in german and some standard enfold headlines, buttons are in english…

    thanks,
    Silver

    #582439

    Hey 1039 Online!

    Please turn on debugging mode – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/ and then create your form and copy its shortcode from the field below ALB. Add Code Block element to your page and then add following code inside it

    <a href="#test-popup" class="open-popup-link">Click this button to open form in lightbox</a>
    
    <div id="test-popup" class="white-popup mfp-hide">
    YOUR SHORTCODE GOES HERE
    </div>

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

    .white-popup {
      position: relative;
      background: #FFF;
      padding: 20px;
      width: auto;
      max-width: 500px;
      margin: 20px auto;
    }

    and finally, add following code to Functions.php file in Appearance > Editor

    function add_custom_script(){
    ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
    	jQuery('.open-popup-link').magnificPopup({
    	  type:'inline',
    	  midClick: true
    	});
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Cheers!
    Yigit

    • This reply was modified 10 years, 2 months ago by Yigit.
    #582435
    1039 Online
    Participant

    I’d llke to have a button that opens a lightbox containing a mailchimp form. I like Enfold’s native Mailchimp form, and I have it on the page. However, for design purposes, I want to also be able to open a form by clicking on a button. That could open either the native enfold mailchimp form or one of mailchimp’s general or embedded forms. Is there a way to do this?

    I saw the post https://kriesi.at/support/topic/using-button-shortcode-to-open-a-video-in-a-lightbox/ and tried using <span class=”avia”>Youtube</span> (substituting the real form url, of course. And I just left in the Youtube words during testing.) However, this didn’t open the form. Additionally, I’d prefer the button to look like http://snag.gy/IMozm.jpg

    #582285

    Hey dodo8!

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

    #top div .av-light-form .input-text, #top div .av-light-form input[type='text'], #top div .av-light-form input[type='input'], #top div .av-light-form input[type='password'], #top div .av-light-form input[type='email'], #top div .av-light-form input[type='number'], #top div .av-light-form input[type='url'], #top div .av-light-form input[type='tel'], #top div .av-light-form input[type='search'], #top div .av-light-form textarea, #top div .av-light-form select, div div .av-light-form .button {
        border-color: #F5F5F0!important;
    }

    Best regards,
    Yigit

    #582127

    Hi TheElear!

    Thank you for using Enfold.

    If you need the share buttons in the single post page, the theme has its own share section. If you want to add a share button in the blog overview page, you will have to use a third party plugin such as AddThis or ShareThis.

    Cheers!
    Ismael

    #581961

    Hey!

    Once you add social sharing info in Enfold Options > Social Profiles you can control on which page footer it show by going to the Footer Settings in the sidebar

    Another way is to show using the shortcode. Click on default editor and on the right side of the edit options select the magic wand > Content Elements > Social share buttons

    Best regards,
    Vinay Kashyap

    #581831
    Loic84
    Participant

    Hi guys!

    I´m having some trouble when editing products with the Custom Product 1 template. As it is shown in your demo, inside the product purchase button box you can see the price ( http://kriesi.at/themes/enfold-shop/product/red-velvet/ ), but in my shop I couldn´t figure out how to do this (you cant edit settings in the purchase button box). Now, clients would have to add the product to his cart and then check the cart to see the price. In addition, the related products at the bottom are not showing, and instead there is a sidebar I don´t know how to remove.

    Can you help me, please?
    Thank you!!

    #581487

    In reply to: Social Share problems

    Hi eviang!

    Thank you for using Enfold.

    The social share section has its own sharing pattern and the plugin’s settings won’t affect it. You can use the following filter in the functions.php file:

    // modify social share args
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args) {
    	$args['twitter']['pattern'] = 'https://twitter.com/share?text=[title]%20@something&url=[shortlink]';
    	return $args;
    }

    EDIT: You have to modify the text query: “?text=[title]%20@something”

    The “[title]” is the title of the current post or page, the %20 is a space and the @something is the twitter handle if you want to include it or add any other text.

    Usage examples:

    https://kriesi.at/support/topic/share-button-twitter-handle-not-showing-when-people-are-sharing/#post-578267
    https://kriesi.at/support/topic/changing-words-on-share-function/#post-481864

    Cheers!
    Ismael

    #581485

    In reply to: Form questions

    Hi gooseflight!

    Thank you for using Enfold.

    1.) Please use this css declaration:

    .avia_ajax_form h3 {
     // style here
    }

    2.) Yes, you can adjust the width using css. This is the default style:

    .avia_ajax_form .button {
        margin: 0;
        padding: 16px 20px;
        border-radius: 2px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        font-weight: normal;
        font-size: 0.92em;
        min-width: 142px;
        outline: none;
    }

    3.) I’m not sure what you mean by this but you can add a custom script via functions.php file. Example here: https://kriesi.at/support/topic/insert-java-scripts-in-body/#post-579587

    Cheers!
    Ismael

    #581474

    Hi mcraig77!

    Thank you for using Enfold.

    I think its better if you hide the button on mobile view and then add it somewhere else. Maybe, below the slider? Will that work? You can toggle the display of the elements by using css media queries. Example here: https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263

    Regards,
    Ismael

    BeeCee
    Participant

    Hi,

    please take a look at this demo here:
    http://kriesi.at/themes/enfold-lifestyle-blog/

    and then at my screenshot:
    http://screencloud.net/v/3r0V

    IMHO it seems that the meta infos (date, author …) are belonging to the post below.
    So how can I change it, so that the “read more” button of the “elegant blog design” comes after the meta infos?

    Thank you.

    #581311
    mw75
    Participant

    Hi Enfold support,

    today I noticed that google maps and the contact form on a client side are gone.
    from the contact form there was only the send button left.
    Google Maps is missing completely.

    Removing the respective items and putting them back into place did not help.

    Caching is disabled.

    Wordpress is on 4.4.2
    Enfold on 2.9.2 – unfortunately I can not update because I have changes in css and php without child theme

    Please help !

    Thank you very much
    Marc

    • This topic was modified 10 years, 2 months ago by mw75.
    #581190
    TheElear
    Participant

    Hi All,

    What is the best way to put share/like buttons in Enfold?
    Is this a built in feature?
    Or do I need to use a plugin?

    many thanks

    #581167
    seriouschicken
    Participant

    Theme: Enfold, Version 2.7.1
    WP: 4.4.2

    Since a WP/plugin update I performed in December I cannot edit the text in the containers any more: Once I choose a page from the menu a circular “loading” icon appears and that’s it. Strangely, when I right-click on the “Edit” button and choose the option “open the link in a new window” I can edit the content again (that’s why I postponed my request). Since a few days, I also lost the LayerSlider WP plugin that seems to have come with the theme and which is used to show the banner om the frontpage. That is: I can access and edit the Slider but it is neglected by the theme and not displayed in the page any more. Any idea?

    #580776

    Hi krzysztofkosz!

    Thank you for using Enfold.

    Once you activated the global caption, you should add a button instead of applying the link to the image.

    If you really want the image link, you have to add this in the Quick CSS field:

    .av_slideshow_full .container.caption_container, .caption_fullwidth {
        width: 10%;
        height: 10% !important;
        position: absolute;
        bottom: 0;
        top: auto;
        z-index: 0;
    }

    The problem is that the whole caption container covers the slider link.

    Regards,
    Ismael

    #580730
    ploughon
    Participant

    Hi – I know this is a plugin related issue but as it relates to several that use a similar approach I wonder if you could might shed some light on it / help me to fix it.

    I have a clean WP/Enfold install demonstrating the problem with details & admin account in Private Content below.

    These opt in / content locker apps all work similarly but I have tested this on two popular ones so far – Bloom from Elegant and Opt In Content Locker from C canyon.

    Content to be hidden is wrapped in a shortcode and an opt in form is presented in its place. When submitted the “hidden” content is revealed.

    This functionality appears to work as it should. However if a full width content element is placed anywhere outside a container after it the preceding and subsequent section containers (color sections in this case) seem to fail to close properly breaking the layout.

    For example (see site) inserting a full width button (or contact form etc) that is not in a container (eg color section) anywhere below the locked content causes the problem. If it is in a container there is no problem.

    So you can solve the problem by ensuring all your content elements are contained but without knowing that, it could be easy to break the site so I thought I’d look for a more robust solution / flag this. Many thanks for any advice.

    #580674
    wtony
    Participant

    Hi How is this done? I just purchased the enfold theme so I’m kinda new to this. thx

    http://postimg.org/image/7vgop76hx/

    1. I can’t seem to find a option where you can put the back transparent background behind the text.
    2. How can i adjust the spacing between the two buttons.

    Tony

    • This topic was modified 10 years, 2 months ago by wtony.
    #580296

    Hi MindSpark!

    Thank you for using Enfold.

    We can hide the buttons on that specific page using css. Please provide the url to the page. Or use this in the Quick CSS field:

    .avia_cart_buttons {
        display: none;
    }

    We can append the page id to the selector if you want to hide the buttons on a particular page.

    Cheers!
    Ismael

    #580240

    Yes, we installed a fresh copy of Enfold from our ThemeForest account. When we click the button the table popup appears. After we remove 'av_button' from the above mentioned code, the button popup appears as expected.

    Did you find the nested shortcode config we mentioned in our previous post?

    #579553
    Sigmund
    Participant

    Hi at Kriesi,
    in the http://kriesi.at/themes/enfold-photography/ demo the social media buttons in the sidebar are disappearing on mobile. Can I remove that functions, so that they are shown?

    Thanks!

    Regards
    Sigmund

    #579132

    In reply to: Custom title

    Hey koraytastan!

    Thank you for using Enfold.

    1.) Are you referring to the social share links or the social media icons in the top bar? If it is the latter, you can modify the includes > helper-social-media.php file. Look for this code around line 83 which contains the social media icon markup including the title attribute:

    	$html .= "<a {$blank} href='".$icon['social_icon_link']."' ".av_icon_string($icon['social_icon'])." title='".ucfirst($icon['social_icon'])."'><span class='avia_hidden_link_text'>".ucfirst($icon['social_icon'])."</span></a>";
    

    If it is the social share section in the posts, use the “avia_social_share_link_arguments” filter. Example here: https://kriesi.at/support/topic/share-button-twitter-handle-not-showing-when-people-are-sharing/#post-578267

    2.) Use the “avia_social_share_link_arguments” in order to change the share section pattern. https://kriesi.at/support/topic/share-button-twitter-handle-not-showing-when-people-are-sharing/#post-578267

    Regards,
    Ismael

    #579128

    Hi Jarnis82!

    Thank you for using Enfold.

    I was able to reproduce the issue on your installation on IE8. However, this is not happening on our test installation so it’s probably cause by a third party plugin or a custom modification on your end. The sort button should filter the items without the animation on IE. Please try to deactivate all plugins or remove any js modifications that might be related to the issue then test the page again.

    Best regards,
    Ismael

    #579122
    bowmandesign
    Participant

    The enfold team added a great fix for the main mobile menu on iOS, ensuring the correct triangle bullet.
    https://kriesi.at/support/topic/avia-bullet-in-mobile-menu-changes-to-undesirable-icon-on-ios-9-0-2/

    Here is the original fix,
    #mobile-advanced li > a:before, .html_header_mobile_behavior #mobile-advanced span > a:before, #mobile-advanced .mega_menu_title:before {
    content: “\25BA”;
    }

    However, the same problem happens on the mobile menu version of the Fullwidth Sub Menu. What is the fix for this?

    When a user leverages the Fullwidth Sub Menu and selects, ‘Display a button to open menu (works best for menus with a lot of menu items)’ and also check the box, ‘Hide Mobile Menu Submenu Items: By default all menu items of the mobile menu are visible. If you activate this option they will be hidden and a user needs to click on the parent menu item to display the submenus’ the triangle goes away on mobile and displays a strange version of it.

    I’m sure the fix is the same, but I need to know the classes to apply it to and the secret order?

    Thanks,

    #578915

    Hi Soldomus!

    You can style the menu links in Dashboard > Enfold > Advanced Styling.

    For the different backgrounds navigate to Dashboard > Appearance > Menus and then click on the dropdown arrow for each of your menu link and you can see there is an option there for changing the menu style. You can set it to the button style.

    Best regards,
    Elliott

Viewing 30 results - 7,591 through 7,620 (of 11,220 total)