Viewing 30 results - 2,341 through 2,370 (of 11,206 total)
  • Author
    Search Results
  • #1226785
    goch
    Participant

    Hi,

    I’m using easy digital downloads, and I always have a weird flickering on my purchase buttons which are created from a shortcode.
    You can see it at the attached url for instance: on page load, the button is like doubled for a short moment.
    And when I edit the page, the button is also “doubled” in the preview area! cf screenshot here : https://ibb.co/HrG1kp7
    I contacted easyDigitalDownload about it, and here is their answer :

    I see what you’re describing and it’s not anything specific to EDD, it’s just the way your theme/coding is handling the “button” element. More than likely there is a default “button” style and then when it loads, another style is being called in so you see the “flicker”.
    I would recommend talking to your theme developer about this if you’d like

    So what’s your view on that? Is that an Enfold bug? Do you have any pointers about how I can fix that?

    Thanks,
    Charles

    #1226759
    Skotbord
    Participant

    Hi,

    I’ve got a problem with (what I think is) a conflict between Enfold and the Yoast SEO plugin on a site that I’m supporting.
    The problem occurs when I try to make changes in Yoast on a page in WordPress. When I click the ”Update” button the button deactivates and the ”save circle” begin to spin besides but then nothing happens. It never continues forward and the changes are not saved.

    I’ve run the site in Troubleshooting Mode and I first tried to activate just the Yoast plugin (without Enfold activated), and then it worked fine to save the changes. I then activated the other plugins one at a time and tried to save the changes after every plugin I activated, and it worked fine all the time. It wasn’t until I activated Enfold that the problem occured and that’s why I think it is a conflict between Enfold and Yoast.

    I’ve got the latest versions of WordPress, Enfold and Yoast installed.

    Do you have any idea what causes the problem and how to solve it?

    Kind regards, Isak

    #1226568
    cd2s
    Participant

    Hello Kriesi Support Team

    We are using the Social Share button element on a custom layout blog post and for some reason it is not displaying all share icons on mobile view, only 2 are displayed. It is showing it if I resize the screen to mobile size on the desktop but not if I view it on my iphone / safari / latest iOS and release. All up to date and I did empty the cache.

    Here how it displays on mobile:
    https://www.dropbox.com/s/zkluh56efshnkxe/IMG_2845.PNG.png?dl=0

    Here the settings in Enfold:
    https://www.dropbox.com/s/ejty7xbkynl638e/Screenshot%202020-06-29%2019.56.00.png?dl=0

    Any help is appreciated. Thanks so much.
    Corina

    rob2701
    Participant

    Found this little trick , and it is working well. Just sharing if someone wants to use it too.

    Credit goes to:
    https://medium.com/hackernoon/removing-that-ugly-focus-ring-and-keeping-it-too-6c8727fefcd2

    Put a file named “my_custom_scripts.js” in child theme js folder.
    See https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/

    Contents:

    (function($)
    {
        "use strict";
    
    // function to see if the user is using tab navigation instead of mouse function 
    handleFirstTab(e) {
        if (e.keyCode === 9) { // the "I am a keyboard user" key
            document.body.classList.add('user-is-tabbing');
            window.removeEventListener('keydown', handleFirstTab);
        }
    }
    window.addEventListener('keydown', handleFirstTab);
    
    // Add more functions here
    
    }(jQuery));

    Now you can hide the dotted outline and/or background for everyone except the users that have hit the “I am a keyboard user” key (tab).

    CSS example:

    /* Accessibility focus with lightblue background and dotted outline */
    .user-is-tabbing a:focus,
    .user-is-tabbing button:focus,
    .user-is-tabbing input:focus,
    .user-is-tabbing select:focus,
    .user-is-tabbing textarea:focus {
      background-color: lightcyan !important;
      outline: dotted !important;
    }
    /* hide the lightblue background for everyone except tab navigation users */
    body:not(.user-is-tabbing) a:focus,
    body:not(.user-is-tabbing) select:focus,
    body:not(.user-is-tabbing) textarea:focus {
    /*  background-color: transparent; */ /* optional */
    /*  outline: none; */ /* optional */
    }
    • This topic was modified 5 years, 8 months ago by rob2701. Reason: fixed small typo (missing enter)
    #1226372

    In reply to: Couple of final tweaks

    Hi,

    1- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    #top .avia_cart_buttons .button {
        padding: 15px;
        background-color: #970000 !important;
        color: #ffffff !important;
    }
    
    

    2- Please delete following code from your custom CSS

    .woocommerce-Price-currencySymbol {
        display: none !important;
    }

    If you need assistance, please create temporary admin logins and post them here privately :)

    Best regards,
    Yigit

    #1226177

    Hey NoraGTS,

    Thanks for the login details. I’m getting a 403 error on the login page though, how can we access your site?

    Maybe you could add your button to a widget in the header? https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Rikard

    #1226020
    byBuko
    Participant

    I’ve been using Enfold for some time now. I just got a new copy for another client to spruce up the look of their website I have put the theme on a subdomain and the main site. the tinyMCE buttons are not showing on the main site but are visible on the Archive site. they are also visible on the the original site I created using Enfold. I can’t figure out what is different and why they are not showing up.

    What do I need to do or install to make them show up?

    I’m using the most current version of Enfold 4.7.5 and Enfold child theme. WP is 5.4.2 I have the classic editor installed

    Buko

    • This topic was modified 5 years, 8 months ago by byBuko.
    #1225958

    the “come into viewport” is correlated to the waypoint script i think. You can set a trigger point that has to be passed before the animation starts.
    F.e. an offset of 50% ( means if the element passes the half of the viewport height – the animation starts. But in the consequence – if there is not enough content under the element to observe – the trigger can not be passed.

    For example: because waypoint script is allready implemented in enfold – we can use it for those scroll induced events
    on this page here – look what happens to the green div when the footer comes 20% to viewport (80% offsetTop)
    https://webers-testseite.de/pureinstall/brodes/

    This is a combination of animate.css ( Link ) hinge.
    If you see my custom script:

    function scroll_up_down_change() {
    if(is_page( array( 630))) {
    ?>
    <script>
    (function($) {
    	$('#kontaktbutton').addClass('animated');
    	var element_to_observe = $('#footer');
        element_to_observe.waypoint(function(direction) {
            if (direction == 'up') { $('#kontaktbutton').addClass('hinge'); }
            else { $('#kontaktbutton').removeClass('hinge'); }
            $('#kontaktbutton').toggleClass('hinge');
          	}, 
    		{ offset: '80%' });
    })(jQuery);
    </script>
    <?php
    }
    }
    add_action('wp_footer', 'scroll_up_down_change', 30);
    

    the observe element is: #footer – and the element to animate is : in this case that #kontaktbutton
    So maybe we can influence the enfold script in a way that the trigger point is not at a low offset but on a higher one.

    #1225836

    Hey clairemartindigital,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top .avia_ajax_form textarea::placeholder,
    .main_color input[type='submit'] {
      font-family: 'brandon_grotesquebold', Fallback, sans-serif !important;
    }
    

    If you need further assistance please let us know.

    https://www.jotform.com/help/118-How-to-Customize-the-Submit-Button-with-CSS

    Best regards,
    Victoria

    #1225793

    see here an example where it is usefull to have two custom classes on a given element.
    i have created a glassy 3D looking styling for Enfold Buttons. The one custom-class is for the styling option ( glass ) the other custom-class is for the color effects ( green , blue, red etc. pp )
    When i want to style now an Enfold Button ( light-transparent ) i only had to set these two classes to the button element.
    Input field is than on custom-class: glass blue
    https://webers-testseite.de/buttons/

    #1225772
    Vital
    Participant

    Hi,

    I have a custom JS module and need to call a custom function by pressing Enfold button. So on click I need to call Module.customFunction(‘foo’);

    How can I handle it?

    Thanks,
    Regards, Vital

    #1225683
    leahmessina
    Participant

    We bought a new enfold and started designing on a domain hosted by wordpress.com. I’m having very weird experiences with Text blocks, Images, Special headers, and buttons appearing properly in a color box with a background image. I’m using the enfold lawyer demo.

    Items completely disappear to the user, but are visible on the source code when inspected with a developer tool. Other than jetpack, there’s not much in the way of plugins that can have conflicts like this. There are no caching plugins installed either

    Any advice is greatly appreciated – we use enfold on every site and have never seen this sort of issue.

    Hallöchen zusammen,

    mir geht es ebenso, hab versucht es mit dem neusten update hinzubekommen, aber Vergeblich.
    Wenn ich das mit modalmwindow auswähle dreht sich egal auf welchem button alles im kreis. und nur mit text bar und alle drei buttons, klappt woocommerce nicht mehr. Hab es jetzt kurzfristig komplett deaktiviert.

    Wäre supi liebes Enfold-Team ihr würdet da noch ein bissel “pimpen” würdet, so dass die Optik “verführerischer” ist.
    Siehe Beispiel bei https://www.ecco-verde.de oder https://www.100percentpure.de/
    lieben Gruß
    Sirpa

    #1225558
    jannnnnneke
    Participant

    I’m using the button row shortcode which is perfect:

    But how can I change the icon? There is an icon=’4′, icon=’5′ and icon=’6′ in the shortcode. But I want LinkedIn, Facebook and Instagram. How do I know the number of those icons? Where can I find it?

    Thanks a lot!

    PS. I want the social media icons in an iconbox, that’s why I need to use the shortcode. When I use icon shortcode in text block, I can’t center 3 icons next to eachother. Whit the button row I can!

    If there is another way, let me know. Thanks!

    #1225445

    In reply to: Logo left, menu below

    you can read in the documentation on that in detail: https://kriesi.at/documentation/enfold/header/#header-widget-position

    see here first to add a header widget area: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
    ( PS dear MODS – this ID is not unique on that page ! )
    so logo left – menu below – read: Customization

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( 'header' );
    }

    little tip : if you activate the shortcode function for widget area by this in your child-theme functions.php:
    add_filter('widget_text', 'do_shortcode');
    you can then insert avia shortcodes to a widget area – so prepare your buttons and that graphic in a post – and copy the shortcode for all that and insert it into that header widget area.

    if you need further help let us know

    rlhinirv57
    Participant

    Hello Enfold Team,

    As the topic states, the bundled version just quit working after the theme update. I am using a child theme, did not add new plugins, etc. After the update, I can’t even rebuild the existing sliders – clicking a button anywhere inside the Layerslider plugin has no effect; maybe the theme update got botched somehow but I am unable to re-upload a zipped theme file. Example, if I try to click the “Add New Slider” button, nothing happens.

    As this is a live site, your timely help is much appreciated.

    For now, I have added a static banner using the full-width banner element so that I don’t have a blank area where the layerslider is supposed to be.

    • This topic was modified 5 years, 8 months ago by rlhinirv57. Reason: Added information on viewing error
    #1225318

    Hey,

    Please add following code to Quick CSS in Enfold theme options > General Styling and adjust the value as needed

    #top #wrap_all #header.header_color .av-menu-button-colored > a .avia-menu-text {
        font-size: 20px;
    }

    Regards,
    Yigit

    #1225228

    Hey,

    Please go to Appearance > Menus and click on your menu item and choose to display “Button Style” in “Menu Style” – https://imgur.com/a/xS1qQrt.

    You can then go to Enfold theme options > Advanced Styling and edit “Menu Item Button” as needed. You are currently using Enfold 4.5.7, so Advanced Styling might not work correctly. If it does not, please update Enfold to the latest version 4.7.5 – https://kriesi.at/documentation/enfold/theme-update/ :)

    Best regards,
    Yigit

    #1225045

    Hey MyMedicalShopper,

    You can do this a few ways:

    1 You can add a widget area to the header and then add the button to the widget.

    2. You can add a menu link and then give it a custom url. You can simply style and position the text link to look like a button.

    Best regards,
    Jordan Shannon

    #1224925
    MyMedicalShopper
    Participant

    Hi, we want to add a “Get a Demo” button to our navigation, and make it appear larger and in bold so it stands out from the rest of our menu navigation items. I’m new to Enfold and WordPress site management, so a complete novice here.

    #1224918

    In reply to: Ad spotify social icon

    Hi,


    @dbravo02
    You can refer to this post – https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options. If you need our assistance, please start a new thread under Enfold sub forum and attach temporary admin logins in private content field. If you post them here, they will be visible to creator of this thread as well :)

    Best regards,
    Yigit

    #1224559
    ArkenPrint
    Participant

    Hi,

    I liked to place (automatically) a call to action button under every blogpost (or only under posts of a specific category …). Is there a way to do this with enfold? Or is there any plugin which can do this?

    e.g. like in this blog
    https://www.trafficdesign.de/knowhow/social-media/facebook-kampagnenplanung-struktur
    There is a cta at the end of the blogpost – and after the author box. It says “Brauchen Sie Unterstützung bei diesem Thema?”

    I am looking for a solution which enables me to change the cta at one place for all my blogposts.

    Thanks in advance!!!!

    Chris

    #1224503
    Dreirad-Studios
    Participant

    Hi,
    When i activate the twentytwenty theme it works and i get directed to paypal, but when i activate ebfold again, i click on the button, get a short loading and then i am back on the event page like nothing happened…

    This is my follow-up thread to https://kriesi.at/support/topic/event-tickets-not-workting-with-enfold/#post-1224496
    See the privtae messages for login credentials.
    Thanks!

    #1224403
    mtesch
    Participant

    Hallo,
    wir verwenden Enfold (4.7.5) in Kombination mit “Woocommerce” und “WooCommerce Dynamic Pricing & Discounts”.
    In der Topnavigation haben wir einen LogIn Button.
    Ist ein User angemeldet, wird dort der eingeloggte User angezeigt. Der LogIn Button nicht mehr.
    Jeder User hat spezielle Preise welche mit Dynamic Pricing zugeordnet werden und diese werden auch auf der Produktseite angezeigt.
    So weit so gut. So sollte es ja auch sein.

    Jetzt haben wir aber das Problem dass der eingeloggte User nicht auf allen Produktseiten als eingeloggt dargestellt wird.
    D.h. in der Navigation oben steht “LogIn” und auf den Produktseiten wird der Listenpreis und nicht der Userpreis angezeigt.
    Klickt man auf einer Seite wo der User nicht angezeigt wird auf LogIn, erscheint die normale Woocommerce Benutzer Konto Seite mit seinen Kundendaten und Bestellungen.
    Wechselt man wieder auf eine andere Produktseite wird alles normal angezeigt.

    Legt der User auf einer Seite wo seine Preise nicht angezeigt werden ein Produkt in den Warenkorb, wird es dort dann mit dem richtigen Userpreis angezeigt.
    Auf der Produktseite aber mit den Listenpreis.
    Das verwirrt natürlich die Benutzer.

    Habe mich schon an Dynamic Pricing gewand, die meinen aber dass das ein Problem des Themes ist da ja auch in der Navigation der tatsächlich eingeloggte User nicht angezeigt wird.

    Hoffe ihr könnt mir da weiterhelfen.

    • This topic was modified 5 years, 8 months ago by mtesch.
    rob2701
    Participant

    Hi Team,

    I added this to my child theme functions.php to create a different blog page template:

    // Different template for static Blog page (News) in Enfold instead of archive style
    // The archive pages don’t support an “Advanced Layout” blog template but you can select a different
    // static blog template if you don’t like the archive page layout.
    add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2);
    function avia_change_archive_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2);
    function avia_change_category_blog_layout($layout, $context){
      if($context == 'archive') $layout = 'blog-grid';
      return $layout;
    }

    The page (built with ALB) has the “Blog Posts” element added to it from “Content Elements”.

    It has the following config:
    – Display blog posts
    – Category = Blog
    – Grid Layout
    – Title+Excerpt+ReadMore (<<<<< Note: Read More never works/shows…)
    – Deactivate offset
    – Always display the element
    Styling:
    – if I set pagination to Yes it never shows pagination…

    So there are two issues:
    1) Read More button never ever shows up
    2) Pagination does not want to activate

    Is there any way to fix this? Thanks in advance for your help!

    Regards,
    Rob

    Details in private

    Added info 2020-06-24: child theme archive.php contains:

                            if(!empty($post_ids))
                            {
                                $atts   = array(
                                    'type' => 'grid',
                                    'items' => get_option('posts_per_page'),
                                    'columns' => 3,
    				'contents' => 'excerpt_read_more',
                                    'class' => 'avia-builder-el-no-sibling',
                                    'paginate' => 'yes',
                                    'use_main_query_pagination' => 'yes',
                                    'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() )
                                );
    • This topic was modified 5 years, 8 months ago by rob2701.
    kayzelmoo
    Participant

    Hi Kriesi Team,
    I was wondering if you can improve on the code I used to make the image full width. Currently it’s almost ‘full-width’. Or any amendments to the settings that I can configure. The image I referred to is donation package image with different tiers of donation pricing available for doners.

    But also can the settings/code recommended take care of mobile site as well because it looks off? Ty

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

    The following may be out of scope from Enfold. But I was wondering if your can assist me on it?
    Furthermore, I was wondering if your can assist me to increase the spacing between the donation options

    Third: Change color button of donation plugin

    /* Change button of donation button to EBA138 */
    .give-submit-button-wrap give-clearfix .give-submit give-btn {
    background-color: #EBA138 !important;
    color: #EBA138 !important;
    }

    Best,
    MM

    • This topic was modified 5 years, 8 months ago by kayzelmoo.
    #1224077

    Hi,
    Thanks for the link to the element you would like to recreate in Enfold. Here is a screenshot (click to view gif) of the element before and on mouse-over (hover) so everyone can follow along.
    3buttoncaptured.gif
    For this example, I recommend the Icon Grid element using the “flip box” option,
    2020-06-19_085305.png
    I set up 3 Icon Grid items with the appropriate icons and text, and for the arrow below each icon I added this link in the Grid Item Sub-Title field: <a href="#true-next" title="" rel="nofollow"></a>
    2020-06-19_090252.png
    and in the flip back content:
    2020-06-19_090154.png
    Please note that the “scroll to next” arrow link above anchors to #true-next, please adjust to suit and then add a manual link to each icon box to the anchors you wish:
    2020-06-19_091441.png
    I know that you asked not to use any css, but the “scroll to next” arrow link is white by default, so for this example I added this css to make the arrow your blue color, and I also applied the blue to your icons. If your icon box background is darker then a white arrow would be good, or you can use just a HTML arrow character instead of the animated “scroll to next” arrow and not use this css.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #main .avia-icongrid-flipbox .scroll-down-link,#top .avia-icongrid-flipbox span.icongrid-char:before {
        color: #4691a9 !important;
    }
    #top .avia-icongrid-flipbox h4.av_icongrid_title {
    	font-size: 32px !important;
    }
    #top .main_color a.avia-icongrid-wrapper {
    color: transparent !important;
    }

    Here is the final result (click to view gif):
    3buttoncaptured-final.gif

    Best regards,
    Mike

    #1224017

    I would strongly recommend to install a child theme for Enfold.
    You could of course place it in the functions.php of the parent theme, but these entries would be lost with the next update.
    So you have exactly one place for such snippets – the child-theme functions.php.

    See here some info and donwload a predefined child-theme: https://kriesi.at/documentation/enfold/child-theme/

    I do that from the beginning of all my installations – but Enfold offers some tools to take over the parent-theme settings.
    On Enfold – Import/Export there are some buttons that could help you.

    My experience and the reading here on board show that the following procedure is probably the most successful:

    • Parent Theme active : export theme settings file
    • Child Theme activate then : import that file.

    for responsive case maybe you decide to shrink a bit or to remove parts of the content:

    @media only screen and (max-width: 767px) {
      .page-id-37941 .add-in-slider {
        transform-origin: left top;
        transform: scale(0.6);
        transition: all 0.7s ease
      }
    }
    
    @media only screen and (max-width: 480px) {
      .page-id-37941 .add-in-slider img,
      .page-id-37941 .add-in-slider .hr-short{
        display: none
      }
    }

    As Rikard said – you had to adjust it to your page-id

    #1223682

    Hey Sheree,

    We have already fixed that issue and I cannot see it now. Maybe it was cache related. Only warning I am seeing is “Deprecated: media_buttons_context is deprecated since version 3.5.0! Use media_buttons instead.” which is not related to theme as we are not using “media_buttons_context” hook in Enfold :)

    Regards,
    Yigit

    #1223646
    Riseleap
    Participant

    Hi.
    I just had a problem I could solve myself, just want to share it with you.
    I wanted to change the style of the menue element button in “adnvanced styles” but the background- and boder colors did not show in the frontend. I found the corresponding code in themes/enfold/includes/admin/register-backend-advanced-styles.php, lines 340ff and changed them to this:

                'color' => "color: %color%;",
                'background_color' => "background-color: %background_color%;",
                'border_color' => "border-color: %border_color%;",
                'border_radius' => "border-radius: %border_radius%;",
    

    This works for me.

Viewing 30 results - 2,341 through 2,370 (of 11,206 total)