Viewing 30 results - 2,071 through 2,100 (of 11,206 total)
  • Author
    Search Results
  • Any thoughts here? I’m having the same issue. Since update, the Enfold theme menu in WP admin area does not display. Works fine on my local, but not on production. DB’s are identical, as are plugins.

    Looks like issue with JQuery.

    Errors in console:

    Uncaught TypeError: createElementButton.live is not a function
    /wp-content/themes/enfold/framework/js/avia_dynamic_templates.js?ver=5.0:52

    Uncaught TypeError: s is undefined
    /wp-includes/js/wp-auth-check.min.js?ver=5.5.1:2

    Hi Bernhard,

    Actually, I don’t see anything wrong with your method, you just don’t need to update the child theme, only the parent theme.
    Also .DS_Store is not important (it’s generated by Mac), you can skip it.
    This is what I did:
    Login to ThemeForest and download the Enfold theme.
    1. Right-click over the downloaded zip file and extract/unzip it.
    2. It should generate a new folder, open it and look for the enfold folder
    3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    4. Log in to WordPress as and Admin.
    5. Install and activate a maintenance plugin and put your site in Maintenance mode.
    6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
    7. Click on the ADD NEW button.
    8. Click on the UPLOAD THEME button.
    9. Click BROWSE and choose enfold.zip file
    10. Click the INSTALL NOW button and switch to Enfold or your child theme.
    11. Remove the maintenance mode then deactivate and remove the maintenance plugin.

    Best regards,
    Nikko

    Hi ClimbingSocks,

    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 form.cart .button:hover {
        background-color: rgb(26, 108, 26) !important;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    Hey Verena Trestl,

    Thank you for your interest in Enfold.

    Enfold does not have a booking system, you can add that via a plugin.

    Yes, you can add Google maps full-width above the footer.

    You can style buttons as you like, we can help you with the CSS for that.

    After you purchase the license, you can use the purchase key to register at the forum and report any issues that you need help with.

    The parallax effect is available in the color sections, it’s not working on mobile though.

    Here are the docs for you:

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1254025

    Hi Snerp,

    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 .av-custom-form-color .button:hover {
        background-color: #e216c2;
        border-color: #07141e1a;
        color: #fff !important;
    } 
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1253916

    In reply to: Licence Reset

    Hi D,

    Thanks for giving us admin access, your server info seems fine.
    Can you try to install it this way?

    1. Login to ThemeForest and download the Enfold theme.
    2. Right-click over the downloaded zip file and extract/unzip it.
    3. It should generate a new folder, open it and look for the enfold folder
    4. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    5. Log in to WordPress as and Admin.
    6. Go to Appearance > Themes
    7. Click on the ADD NEW button.
    8. Click on the UPLOAD THEME button.
    9. Click BROWSE and choose enfold.zip file
    10. Click the INSTALL NOW button and activate Enfold

    Best regards,
    Nikko

    Hi,
    thanks a lot for your answer. I added the CSS Code in the Quick CSS field under “General Styling” in my Enfold Theme. You can find the pages, where I would like to change the hover color of the “In den Warenkorb”-Button in the private content.

    Thanks for further support.
    Best regards,
    Magnus

    #1253659

    Hey Eefke,

    You can use a full-width slider and add a button to it.

    Here are the docs for you:

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1253619

    Hey flipper1960,
    Sorry for the late reply, and thanks for the login and test page, so I have not used the Meow Lightbox plugin before so in my research I found the plugin was giving the same error as reported here to the plugin author, the solution for this error is to remove this from the “lightbox.js” script:
    //# sourceMappingURL=lightbox.js.map
    This may have not been necessary, but I wanted to rule it out. Anyways, I wanted to isolate the behavior of the Meow plugin & the Magnific Popup lightbox which is the default lightbox, typically other lightbox scripts use a similar script for the lightbox. So I first tried using the “exclude” function in the Magnific Popup lightbox, which is in the file \wp-content\themes\enfold\js\avia-snippet-lightbox.js on line 211, with the lightbox option in the theme set to disabled, but with this setting the Meow Lightbox plugin fires first and loads, but then is redirected to the image file. If you watch very closely you will see that the plugin is working but I believe the Magnific Popup lightbox is embedded deeper than it seems.
    So as a workaround, I enabled the Magnific Popup lightbox in the theme options and added this script in your functions.php file:

    function custom_script(){
      ?>
      <script>
    (function($){
      $('body').on("click", ".lightbox", function () {
    	  setTimeout(function(){
    	  $('button.mfp-close').trigger('click');
    		  }, 200);
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    I also replaced your Meow Lightbox plugin “Selector” classes with “.avia-gallery a” to target this one element, I understand you want to add more, but if we can get this one element to work first then we can move forward on the other elements.
    So now on your test page, the “avia-gallery” is working for the Meow Lightbox plugin, please clear your browser cache and check.

    Best regards,
    Mike

    ClimbingSocks
    Participant

    Hi,
    according to this thread I changed the color of the add to cart button in my woocommerce shop using quick CSS under general styling of my enfold theme successfully with this code:

    .single .cart .button { background-color: #6786a1!important; text-shadow: none!important; box-shadow:0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 -1px 0 rgba(0, 0, 0, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.2)!important; color: white!important; }
    

    So now I have the question, how can I specify the color for hovering over the button?

    Thanks a lot!

    • This topic was modified 5 years, 4 months ago by ClimbingSocks.
    Verena Trestl
    Guest

    Hi Kriesi Enfold Team,

    I would like to purchase your theme and I have some questions before I really do it and start working with it. I would appreciate if you could come back to me on follwing issues:

    1. BOOKING/RESERVATION for RESTAURANTS: Do you provide only the booking form with table view as shown on your DEMO VERSION RESTAURANT? Or do you offer more versions on booking systems? If not (and if yes too), how would the booking system work out? Do we get the option to manage bookings in the backend and will the customer receive a confirmation mail etc. So how does a booking system work with enfold? Is it available in GERMAN? And in case I would like to install a plugin from another developer on this issue would it be possible?

    2. GOOGLE MAPS: Can we put google maps fullwidth e.g. above the footer ?

    3. BUTTONS: do I always have to fill the buttons with a colour or can I just use coloured frames too? Which kind of options do I have in general with the buttons (colour, frames, size, font adn font size)

    4. PRELOADER: Can I create a preloader on my own e.g. with my logo?

    5. BLOG BOXES: Which kind of blog designs do you offer? I would prefer having a picture or video above and text below in a box. Is this possible? Is it possible to add a shadow to the boxes?

    6. PARALLAX: Can the parallax effect be put anywhere I want to the page? Or is it just possible above the footer (as in your demo).

    7. FORMS: Can I set different types of forms for different issues?

    8. MAILCHIMP / GDPR: Can I include NL request and Privacy Terms right to the forms and booking tool?

    9. SUPPORT: How does the support work out once I purchased the theme? How can I get in touch with you and how often can I ask you something?

    10. NO CSS SKILLS: Since I am a complete beginner with CSS (I have not even started with tutorials but I am planning on it as soon as my time allows it) I would appreciate if I could set up the wp-site with drag&drop as much as possible. So if I do not import the demo site, do I have to deal with CSS and building everything on my own or do I have still the possibility to build it with drag&drop as I want it to be?

    Well that’s it for now and i would appreciate a response as soon as possible because I would like to start soooon 😊

    Thanks for your support

    Regards Verena

    #1253321
    shedoesitcoaching
    Participant

    Hi Enfold Team!

    I have added a new picture at the top of my ‘about page’ (see private content).
    How I can I make it full width?

    Is it possible to add a button on a picture?

    Many Thanks.

    #1253320
    J P
    Participant

    Hi,

    I am having consistent issues with using the button row. It works perfectly on desktops, but when you visit the site on a mobile phone (i only have ios), some buttons don’t work. In the sample below the “activities” and “giving” buttons do nothing on the moble but work perfectly on the desktop. Any insight as to why this may be happening?

    I am using WordPress 4.5.2 and Enfold 4.7.6.3
    This has been happening since the initial install. Not sure if it is an ios issue or an Enfold issue. I added a link to one of the samples where we are having the issue

    #1253238
    mcbaile
    Participant

    Before the latest update we have an issue where by when we scrolled down the page elements wouldn’t load, such as buttons or images or galleries, or would be slow to load. Resizing the browser always fixed the issue but obviously this wasn’t ideal.

    We fixed the issue by removing a Fullwidth Easy Slider and after this no more problems… until we updated to the latest version of Enfold and now every page on the site is effected and elements are slow to load or just don’t load at all unless we resize the browser manually and then they appear.

    Any help would be appreciated as our developers are stuck too.

    another information if it helps: I was at wordpress 5.5.1 and last Enfold release. I downgrade everything to dicember 2019, so wordpress 5.3.2 and enfold (4.6.3.1) bur the error appears: Failed to load plugin url: https://scuoladellinfanziasantantonio.it/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/js/avia-tinymce-buttons-4.js

    dradoering
    Participant

    Hi,

    is there a slider element in Enfold that features a background image, a headline, a description text and a button?

    Unfortunately I could not find one that features all of the items.

    Thanks!

    Best regards
    Caro

    #1253030

    In reply to: Only essential cookies

    Hey Severin,

    Thanks for contacting us and sorry for the late reply!

    You can read more about cookie options here – https://kriesi.at/documentation/enfold/privacy-cookies/#default-cookie-and-services-option-settings.
    You are currently using “User must accept and must opt in, only essential cookies selected” option so you can simply go to Enfold theme options > Privacy & Cookies > Cookie Handling > Buttons and add a new button below “OK, Weiter” and choose “Do not accept and hide notification” for button action :)

    If you are planning to install WooCommerce, we would recommend you to use “Essential cookies are accepted on first page load, user must opt in” instead so cart would not be reset if cookies were accepted/rejected after adding items to cart.

    Best regards,
    Yigit

    #1252919
    eustaskor
    Participant

    Hi! I have Enfold and LayerSlider installed here (see private content)
    Sometimes the page shows blank space instead of the slider. The issue gets fixed if I hit “Update” button on the page in wp-admin, however the problem comes back in a couple of days. Could you please help solving this?

    Finsand
    Participant

    I have tried enfold-child/config-woocommerce/config.php, enfold-child/woocommerce/config-woocommerce/config.php and enfold-child/woocommerce/config.php but the site still refers to enfold/config-woocommerce/config.php.

    Alternatively, how do I edit the “Show details” button as I need to replace it with a dynamic custom dropdown menu.

    #1252813
    Rob Kosinski
    Guest

    I inherited admin duties for a WordPress website set up in 2015. It’s running the Enfold theme 4.3.2. The website appears to work but the backend of the Enfold menu is broken and I can’t change anything. They few options Enfold is showing me do nothing when clicked or changed. Save button stays grayed out.

    Do you have any suggestions or options for me regarding this install. I don’t even know who purchased it for the website. The website running it is in the Private Content box.

    Thanks.

    #1252729

    That plugin is if you want to have more than this line-break button – because now Enfold ( or maybe it is a new thing from WP ) shows a button on visible mode:
    can you see this:

    if you click : Enfold will insert the tags itself ( <br class=”avia-permanent-lb” /> ); switch to text mode then you will see what i mean

    #1252633
    leonardamartinez
    Participant

    Message: Guten Tag Wie kann ich den Standardtext im \”Volle Breite Menü\” für Smartphone ändern (Burger-Menü-Button), in Deutsch erscheint \”Menü\” und ich möchte ihn in eine andere Sprache ändern.

    #1252587
    dlrms
    Participant

    Is there a way to get any ajax load more third party plugins to actually work with Enfold? Need this for category and tag pages with hundreds of posts. Have tried at least 4 different plugins and all failures lead to the theme as actual cause. The respective plugin authors have all redirected me to theme author(s) so hopefully YOU can help.
    So, what selectors does the theme actually use? .pagination clearly fails, not sure where to go or how to resolve this. And just to be more clear, I do not want to show all posts at once because – I have hundreds of posts per category and/or tag. A load more button at end of category/tag page would be more efficient and better for SEO….
    Please advise.
    Thanks!

    #1252559
    angereichert
    Participant

    Hello,
    since the new update of Enfold /Wordpress and woocommerce I get the error message
    “Failed to initialize plugin: avia_builder_button” when creating a new product.
    I know, that it is also due to a plugin “Woocommerce Product Colorizer” which is not updated any more, but vital to our homepage.
    on the console I get an error Tiny mce menu field noch available.
    Our programmer said the incompatibility might be due to a missing update with Java Script / jquery.
    Is there anything you could do to enable me to create new products. (which is vital for the shop before Christmas)
    Cheers

    #1252484

    if you add those tags with custom class they will not be removed!
    <br class="noclear"/>
    same with p-tags

    On Enfold 4.7.6.4 the permanent linebreak seems to exists as a button in the tool-bar
    and it inserts : <br class="avia-permanent-lb" />

    i use for some “extras” this little plugin: https://kriesi.at/support/topic/line-break-not-working-in-front-end/#post-1146117

    #1252478

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 1380px) {
    .page-id-5571 .avia-builder-el-11 .avia-button.avia-size-medium {
        padding: 13px 20px 12px;
    }
    }

    If you need more specific CSS then please try assigning a class to the right column in the element options.

    Best regards,
    Rikard

    So where in the child theme does config-woocommerce/config.php go? I have tried enfold-child/config-woocommerce/config.php, enfold-child/woocommerce/config-woocommerce/config.php and enfold-child/woocommerce/config.php but the site still refers to enfold/config-woocommerce/config.php. Alternatively how do I edit the “Show details” button as I need to replace it with a dynamic custom dropdown menu.

    #1252128

    Hi,

    Please change your code in Functions.php file to following one

    <?php
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    function enqueue_parent_theme_style() {
          wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
    }
    add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style');
    
    /* Proper way to enqueue styles and scripts
     */
    function theme_name_scripts() {
    	wp_enqueue_style( 'style-name', get_stylesheet_uri() );
    }
    add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
    
    function change_cf_from() {
        return " (Email address hidden if logged out) ";
    }
    add_filter('avf_form_from', 'change_cf_from', 10);
    
    /* Activate Avia debug mode */
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    	return "debug";
    }
    add_filter('avf_title_args', 'avf_title_args_mod', 99, 2);
    function avf_title_args_mod($args,$id)
    {
         if ( $args['title'] == 'Calendar of Events' ) 
         {
            $args['title'] = 'Veranstaltungskalender';
         }
        return $args;
    }
    add_action('tribe_events_single_event_after_the_content', 'tribe_events_single_event_after_the_content_mod');
    function tribe_events_single_event_after_the_content_mod() {
    	echo "";
    	echo do_shortcode("[av_social_share title='Teile diese Veranstaltung' style='' buttons='' custom_class='shareva']");
    }
    add_theme_support('avia_template_builder_custom_css');
    add_filter( 'wc_gzd_revocation_admin_mail', 'my_child_set_revocation_admin_mail', 10, 1 );
    function my_child_set_revocation_admin_mail( $mail ) {
       return  (Email address hidden if logged out) ';
    }
       add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if (is_single)
    {
    $args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    $args['heading'] = 'h1';
    }
    
    return $args;
    }
    /* Code zum Loeschen von Veranstaltungen 
    $allposts= get_posts( array('post_type'=>'tribe_events','numberposts'=>-1) );
        foreach ($allposts as $eachpost) {
          wp_delete_post( $eachpost->ID, true );
        }
    	
    	 $allposts= get_posts( array('post_type'=>'tribe_organizer','numberposts'=>-1) );
        foreach ($allposts as $eachpost) {
          wp_delete_post( $eachpost->ID, true );
        }
    	
    	 $allposts= get_posts( array('post_type'=>'tribe_venue','numberposts'=>-1) );
        foreach ($allposts as $eachpost) {
          wp_delete_post( $eachpost->ID, true );
        }    */

    If that does not help, please go to Enfold theme options > Performance tab and toggle “Responsive Images” option and check if that helps.
    As Nikko mentioned, certain image sizes are loading fine but certain are not loading so I believe it might be related to responsive images setting.

    Best regards,
    Yigit

    #1252075
    studiocelsius77
    Participant

    Hey Team – I am wanting to use an Enfold Child Theme to customize the Enfold Theme. I have numerous Enfold Theme settings that I was able to export. As a test I clicked the import button in the Enfold theme settings page and nothing happens. I need to be able to import the Enfold theme settings into the Child theme once it is activated. Any thoughts on what the issue might be? -Paul

    #1252032
    aaravg
    Participant

    Hi,
    I want to create a simple form with name and an upload file.
    Once the file is uploaded then the submit button will be a “Pay” button which will redirect users to payment gateway.
    Is it possible to create such flow with enfold. Once the payment is done then the users will get a mail notification.

Viewing 30 results - 2,071 through 2,100 (of 11,206 total)