Viewing 30 results - 5,221 through 5,250 (of 244,015 total)
  • Author
    Search Results
  • #1468992

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:hover,
    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:focus,
    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:hover .avia-menu-text,
    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:focus .avia-menu-text,
    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:hover .avia-menu-subtext,
    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:focus .avia-menu-subtext,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:hover,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:focus,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:hover .avia-menu-text,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:focus .avia-menu-text,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:hover .avia-menu-subtext,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:focus .avia-menu-subtext {
    	color: green;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1468989

    Hi,
    The code is not CSS, it is PHP. If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the code and save.

    Best regards,
    Mike

    #1468987
    jakubc15
    Participant

    Hi all,
    I need to order posts in the Woocommerce Slider integrated in Enfold by a custom meta, which happens a date.
    I am not sure I understand the filter capability, but I tried the short plugin below, with no effect. The custom ordering is not appearing in the dropdown menu. I am overiding the priority of Enfold ordering by a priority, but I would be more than happy to use more elegant solution if possible, and this does not work anyway…

    <?php
    
    // Add custom sorting option to Enfold's sorting dropdown
    add_filter( 'avf_wc_product_order_dropdown_frontend', 'add_custom_sorting_option' );
    
    function add_custom_sorting_option( $product_order ) {
        $product_order['course_date'] = __( 'Sort by course date', 'woocommerce-course-date-sorting' );
        return $product_order;
    }
    
    // Modify the ordering arguments after Enfold's modifications
    add_filter( 'woocommerce_get_catalog_ordering_args', 'custom_catalog_ordering_args', 30 );
    
    function custom_catalog_ordering_args( $args ) {
        if ( isset( $_GET['product_order'] ) && 'course_date' === $_GET['product_order'] ) {
            $order = isset( $_GET['product_sort'] ) ? strtoupper( $_GET['product_sort'] ) : 'ASC';
            $args['orderby'] = 'meta_value';
            $args['order'] = $order;
            $args['meta_key'] = '_course_date';
            $args['meta_type'] = 'DATE';
        }
        return $args;
    }
    
    // Modify the product query to include only products with '_course_date' meta key
    add_action( 'woocommerce_product_query', 'custom_woocommerce_product_query' );
    
    function custom_woocommerce_product_query( $query ) {
        if ( ! is_admin() && $query->is_main_query() && is_shop() ) {
            if ( isset( $_GET['product_order'] ) && 'course_date' === $_GET['product_order'] ) {
                $meta_query = $query->get( 'meta_query' );
                if ( ! is_array( $meta_query ) ) {
                    $meta_query = array();
                }
                $meta_query[] = array(
                    'key'     => '_course_date',
                    'compare' => 'EXISTS',
                );
                $query->set( 'meta_query', $meta_query );
            }
        }
    }
    

    Can you please guide me on how to tackle this properly? Thanks, Jakub

    Hi,
    I tried enabling “Delay Java Script” and changed your mobile menu to “Display submenu items on click” and tested in Safari with Responsive Design Mode to emulate a iPhone and in Chrome as a mobile device on a Mac but found no issues after more than six clicks.
    I see that your “Excluded JavaScript Files” has one file “menu.js” so perhaps you have not cleared your iPhone cache. Please note that testing with iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    But note that the recommended “Excluded JavaScript Files” are more than your one file.

    /jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js
    /jquery-migrate(.min)?.js
    /dynamic_avia/avia-footer-scripts-(.*).js
    var avia_is_mobile
    /enfold/js/avia.js
    /enfold/js/shortcodes.js
    /enfold/config-templatebuilder/avia-shortcodes/
    /enfold/js/avia-compat.js

    Also note that the plugin offers a “One-click exclusions” option for the theme:
    Screen Shot 2024 10 12 at 9.30.17 AM
    but I’m not able to reproduce the error on your site now, so I assume that it is a cache issue on your device, please check.

    Best regards,
    Mike

    Rikard, I know what it is. It’s a permission (and possibly a folder ownership) issue.

    When I set manually 777 permission to wp-content/uploads/*folders then I don’t have errors any more.
    As soon as I come back to 755, errors come back too.

    I have 2 thoughts and no anwsers
    1) Using FileZilla to upgrade enfold version, I don’t understand why WP is not able to allow permission automatically during the process of swapping folder-V.5.6.12 into folder-V.6.0.5 !
    2) On top of that, it seems I have different owners inside my wp-content/upload folder and sub-folders. I think (but I’m not sure) this is where comes from the problem and I have no clue how to fix that.

    ownership in upload folder

    I hope it gives you ideas to help me to get out of this blocking situation.

    PS. I’m aware about my late php version too, I need to take care about that some day. Thx for the reminder.

    • This reply was modified 1 year, 3 months ago by rvga.
    • This reply was modified 1 year, 3 months ago by rvga.
    • This reply was modified 1 year, 3 months ago by rvga.
    • This reply was modified 1 year, 3 months ago by rvga.

    Hi Rikard,
    I’m glad to see you study my case, thanks for that.

    I have just switched between the 5.6.12 version and the 6.0.5 one and here are the 3 errors I had:
    (hope it helps)

    Warning: fopen(/volume4/web/cserp/wp-content/uploads/dynamic_avia/avia-merged-styles-18ecd38336cb985ece6556faf31d6e7a—670a5d4bd6c89.css):
    failed to open stream: Permission denied in /volume4/web/cserp/wp-content/themes/enfold/framework/php/function-set-avia-backend.php on line 984 Call Stack: 0.0001 368624
    1. {main}() /volume4/web/cserp/index.php:0 0.0001 368904
    2. require(‘/volume4/web/cserp/wp-blog-header.php’) /volume4/web/cserp/index.php:17 3.4384 57892464
    3. require_once(‘/volume4/web/cserp/wp-includes/template-loader.php’) /volume4/web/cserp/wp-blog-header.php:19 3.5285 60283368
    4. include(‘/volume4/web/cserp/wp-content/themes/enfold/template-builder.php’) /volume4/web/cserp/wp-includes/template-loader.php:106 3.5286 60283368
    5. get_header() /volume4/web/cserp/wp-content/themes/enfold/template-builder.php:15 3.5379 60349904
    6. locate_template() /volume4/web/cserp/wp-includes/general-template.php:48 3.5380 60349984
    7. load_template() /volume4/web/cserp/wp-includes/template.php:745 3.5475 60378328
    8. require_once(‘/volume4/web/cserp/wp-content/themes/enfold/header.php’) /volume4/web/cserp/wp-includes/template.php:810 3.5925 60385800
    9. wp_head() /volume4/web/cserp/wp-content/themes/enfold/header.php:228 3.5925 60385800
    10. do_action() /volume4/web/cserp/wp-includes/general-template.php:3065 3.5925 60386176
    11. WP_Hook->do_action() /volume4/web/cserp/wp-includes/plugin.php:517 3.5925 60386176
    12. WP_Hook->apply_filters() /volume4/web/cserp/wp-includes/class-wp-hook.php:348 3.6548 60390136
    13. wp_enqueue_scripts() /volume4/web/cserp/wp-includes/class-wp-hook.php:324 3.6548 60390136
    14. do_action() /volume4/web/cserp/wp-includes/script-loader.php:2263 3.6548 60390512
    15. WP_Hook->do_action() /volume4/web/cserp/wp-includes/plugin.php:517 3.6548 60390512
    16. WP_Hook->apply_filters() /volume4/web/cserp/wp-includes/class-wp-hook.php:348 3.7716 60756224
    17. aviaAssetManager->try_minifying_scripts() /volume4/web/cserp/wp-includes/class-wp-hook.php:324 3.7716 60756224
    18. aviaAssetManager->merge() /volume4/web/cserp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-asset-manager.php:243 3.7812 61881584
    19. aviaAssetManager->generate_file() /volume4/web/cserp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-asset-manager.php:358 3.7820 62667408
    20. avia_backend_create_file() /volume4/web/cserp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-asset-manager.php:810 3.7820 62667408
    21. fopen() /volume4/web/cserp/wp-content/themes/enfold/framework/php/function-set-avia-backend.php:984

    Warning: fopen(/volume4/web/cserp/wp-content/uploads/dynamic_avia/avia-head-scripts-388e3ec585846faac3926658720b7d69—670a5d4bd887a.js):
    failed to open stream: Permission denied in /volume4/web/cserp/wp-content/themes/enfold/framework/php/function-set-avia-backend.php on line 984 Call Stack: 0.0001 368624
    1. {main}() /volume4/web/cserp/index.php:0 0.0001 368904
    2. require(‘/volume4/web/cserp/wp-blog-header.php’) /volume4/web/cserp/index.php:17 3.4384 57892464
    3. require_once(‘/volume4/web/cserp/wp-includes/template-loader.php’) /volume4/web/cserp/wp-blog-header.php:19 3.5285 60283368
    4. include(‘/volume4/web/cserp/wp-content/themes/enfold/template-builder.php’) /volume4/web/cserp/wp-includes/template-loader.php:106 3.5286 60283368
    5. get_header() /volume4/web/cserp/wp-content/themes/enfold/template-builder.php:15 3.5379 60349904
    6. locate_template() /volume4/web/cserp/wp-includes/general-template.php:48 3.5380 60349984
    7. load_template() /volume4/web/cserp/wp-includes/template.php:745 3.5475 60378328
    8. require_once(‘/volume4/web/cserp/wp-content/themes/enfold/header.php’) /volume4/web/cserp/wp-includes/template.php:810 3.5925 60385800
    9. wp_head() /volume4/web/cserp/wp-content/themes/enfold/header.php:228 3.5925 60385800
    10. do_action() /volume4/web/cserp/wp-includes/general-template.php:3065 3.5925 60386176
    11. WP_Hook->do_action() /volume4/web/cserp/wp-includes/plugin.php:517 3.5925 60386176
    12. WP_Hook->apply_filters() /volume4/web/cserp/wp-includes/class-wp-hook.php:348 3.6548 60390136
    13. wp_enqueue_scripts() /volume4/web/cserp/wp-includes/class-wp-hook.php:324 3.6548 60390136
    14. do_action() /volume4/web/cserp/wp-includes/script-loader.php:2263 3.6548 60390512
    15. WP_Hook->do_action() /volume4/web/cserp/wp-includes/plugin.php:517 3.6548 60390512
    16. WP_Hook->apply_filters() /volume4/web/cserp/wp-includes/class-wp-hook.php:348 3.7716 60756224
    17. aviaAssetManager->try_minifying_scripts() /volume4/web/cserp/wp-includes/class-wp-hook.php:324 3.7835 61854080
    18. aviaAssetManager->merge() /volume4/web/cserp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-asset-manager.php:246 3.7883 61905560
    19. aviaAssetManager->generate_file() /volume4/web/cserp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-asset-manager.php:358 3.7887 62218048
    20. avia_backend_create_file() /volume4/web/cserp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-asset-manager.php:810 3.7887 62218048
    21. fopen() /volume4/web/cserp/wp-content/themes/enfold/framework/php/function-set-avia-backend.php:984

    Warning: fopen(/volume4/web/cserp/wp-content/uploads/dynamic_avia/avia_posts_css/post-2.css):
    failed to open stream: Permission denied in /volume4/web/cserp/wp-content/themes/enfold/framework/php/function-set-avia-backend.php on line 984 Call Stack: 0.0001 368624
    1. {main}() /volume4/web/cserp/index.php:0 0.0001 368904
    2. require(‘/volume4/web/cserp/wp-blog-header.php’) /volume4/web/cserp/index.php:17 3.4384 57892464
    3. require_once(‘/volume4/web/cserp/wp-includes/template-loader.php’) /volume4/web/cserp/wp-blog-header.php:19 3.5285 60283368
    4. include(‘/volume4/web/cserp/wp-content/themes/enfold/template-builder.php’) /volume4/web/cserp/wp-includes/template-loader.php:106 3.5286 60283368
    5. get_header() /volume4/web/cserp/wp-content/themes/enfold/template-builder.php:15 3.5379 60349904
    6. locate_template() /volume4/web/cserp/wp-includes/general-template.php:48 3.5380 60349984
    7. load_template() /volume4/web/cserp/wp-includes/template.php:745 3.5475 60378328
    8. require_once(‘/volume4/web/cserp/wp-content/themes/enfold/header.php’) /volume4/web/cserp/wp-includes/template.php:810 3.5925 60385800
    9. wp_head() /volume4/web/cserp/wp-content/themes/enfold/header.php:228 3.5925 60385800
    10. do_action() /volume4/web/cserp/wp-includes/general-template.php:3065 3.5925 60386176
    11. WP_Hook->do_action() /volume4/web/cserp/wp-includes/plugin.php:517 3.5925 60386176
    12. WP_Hook->apply_filters() /volume4/web/cserp/wp-includes/class-wp-hook.php:348 3.6548 60390136
    13. wp_enqueue_scripts() /volume4/web/cserp/wp-includes/class-wp-hook.php:324 3.6548 60390136
    14. do_action() /volume4/web/cserp/wp-includes/script-loader.php:2263 3.6548 60390512
    15. WP_Hook->do_action() /volume4/web/cserp/wp-includes/plugin.php:517 3.6548 60390512
    16. WP_Hook->apply_filters() /volume4/web/cserp/wp-includes/class-wp-hook.php:348 3.7901 61904376
    17. aviaPostCssManagement->handler_enqueue_post_styles() /volume4/web/cserp/wp-includes/class-wp-hook.php:324 3.7902 61904376
    18. aviaPostCssManagement->check_create_file() /volume4/web/cserp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-post-css-management.php:205 3.8737 61743384
    19. aviaPostCssManagement->create_file() /volume4/web/cserp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-post-css-management.php:275 3.8743 61751896
    20. avia_backend_create_file() /volume4/web/cserp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-post-css-management.php:1064 3.8743 61751896
    21. fopen() /volume4/web/cserp/wp-content/themes/enfold/framework/php/function-set-avia-backend.php:984

    Surprisingly, these erros are not listed in my PHP error log window maintained by the Error Log Monitor WP plugin?

    #1468974

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1468973

    Hey Ben,

    Those error messages are because you haven’t configured a token yet, please follow the guide step by step: https://kriesi.at/documentation/enfold/theme-registration/

    The registration on our site is only to use the support forum, if you have already registered then you can simply login.

    Best regards,
    Rikard

    #1468972
    Ben
    Guest

    Non of these are a solution below. I have clicked on both of these and nothing is working, keeps telling me that –

    Last time we checked the token we were not able to connected to Envato:

    Purchases could not be accessed
    Username could not be accessed (needed for your information only)
    E-Mail could not be accessed (needed for your information only)

    Following errors occurred:

    Purchases: Your private token is invalid.
    username Your private token is invalid.
    email Your private token is invalid.
    Purchases: A problem occurred accessing your purchases. Unable to check for updates.

    so, instead of closing off tickets and fobbing off people, why can’t you fix these issues.?

    If you don’t want me to use your theme can you let me know ASAP so I can go elsewhere like most people seam to be doing because of the terrible support and resolve.

    Hey Ben,

    What exactly are you using it for? If you are looking to get updates, then please follow this: https://kriesi.at/documentation/enfold/theme-registration/. If you are looking to register on our support forum, then you can do so here: https://kriesi.at/support/register/

    Best regards,
    Rikard

    How do I get my purchase code to work.?

    On going issues with this.

    Thank you

    #1468967

    Hey whdsolutions,

    Please try the following in Quick CSS under Enfold->General Styling:

    #js_sort_items a {
      border: 1px solid #eee;
    }

    Best regards,
    Rikard

    #1468964

    Hi,

    Great, I’m glad that we could help. We’ll close this thread for now then, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    rvga
    Participant

    Hi everyone,
    For some reasons, I’m stucked with that old version of Enfold for a couple of years now.
    I mean I can update Enfold with the lastest vesion like the 6.0.5 but then, the entire interface of both the back and front offices would be fulfill of error messages.
    And I just don’t know all what it means. I’m not techee enough to understand what’s going on.
    I really need support to solve that so I can enjoy all the new functionnalities arisen these past years.
    Maybe the best thing is I give you credentials through private message?
    Let me know…

    • This topic was modified 1 year, 3 months ago by rvga. Reason: mispelling correction
    #1468959

    Hey Ben,

    What exactly are you using it for? If you are looking to get updates, then please follow this: https://kriesi.at/documentation/enfold/theme-registration/. If you are looking to register on our support forum, then you can do so here: https://kriesi.at/support/register/

    Best regards,
    Rikard

    #1468955
    Yamil
    Guest

    Hello,

    I would like to ask if a discount is possible when purchasing several Enfold themes (approx. 15-25).

    Best regards

    Yamil Omar Gimenez

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .single-tribe_events #tribe-events-footer {
    	display: none;
    }

    Best regards,
    Mike

    #1468940

    Hey Tanja,
    I believe that you are referring to this section:
    *removed*
    To hide cell 15 use the Edit Cell ▸ Advanced ▸ Responsive ▸ Mobile display and change to Hide on Mobile
    Enfold Support 6497
    For 6,7,8,9 you can change the position with the Edit Cell ▸ Advanced ▸ Responsive ▸ Mobile Breakpoint Position option:
    Enfold Support 6499
    Note that this is for this one grid row, so the numbers are a little different, but you can’t move from row to row. So to move 5 to 10 I recommend cloning all three sections and organize them the way you want for mobile and set the Grid Row ▸ Advanced ▸ Responsive ▸ Element Visibility to hide on desktop:
    Enfold Support 6501
    and change your original sections to hide on mobile.

    Best regards,
    Mike

    • This reply was modified 1 year, 3 months ago by Rikard.
    #1468939
    MysticMimi
    Participant

    Hello,
    I am using the Enfold theme, and I don’t know how to get rid of the huge empty space under the boxes that move just under the top photo. I’d attach a picture, but I don’t know how… but if you scroll down slighly from the top of the home space, after the boxes, and before the video, there is a huge space.

    How can I control this?

    #1468935
    Sandy
    Participant

    I need to change the order of cells when the cells move to single column, for example, when viewed on mobile. I need cell 5 to move to position 10, and cell 6 to move to position 7, cell 7 to move to position 6, cell 8 to move to position 9, cell 9 to move to position 8, and cell 15 to disappear. How can this be achieved?

    If possible, I’d also like the images to stretch to fit (fully fill the cell—and only the cell—regardless of browser width).

    #1468929

    In reply to: Customize the theme

    Hey maryenvato,

    Thanks for the kind words and for using Enfold :-)

    We don’t provide customisation like that unfortunately, but I’m not sure I fully understand what you are looking to achieve? Do you mean that you want to replicate layouts from other themes or sites?

    Best regards,
    Rikard

    Ida
    Guest

    Hi,

    I am currently using the Enfold theme with the Advanced Layout Builder to manage content on my website. I would like to inquire if it is possible to schedule changes in posts and pages while using the Advanced Layout Builder. Specifically, I’m looking for a way to edit existing content and set a future date and time for those changes to go live automatically.

    Additionally, could you let me know if Enfold’s Advanced Layout Builder is compatible with any third-party plugins that support scheduled content updates? If so, I would appreciate any recommendations or guidance on how to implement this feature.

    Thank you for your assistance, and I look forward to your response.

    Best regards,
    Ida

    #1468913

    Go to Enfold Options Page – Header – Tab: Extra Elements

    for the first two settings Header Social Icons and Header Secondary Menu these content had to be set – if they should be shown on that header_meta (top-bar).
    For secondary menue – you had to declare a menu as secondary menue on appearance – menus :

    For Social icons – go to Enfold Option – Social Profiles.

    For Phone Number – you had on the right side an input field for that content ( tags are allowed here)
    you might have something like:

    <a href="domain/kontakt/#av_gmap_0"><span class="map">Location</span></a><a href="domain/kontakt/"><span class="contact">Contact</span></a><a href="tel:+492281234567"><span class="tel">Phone</span></a>
    

    #1468901
    Dimitris73
    Participant

    Hello.
    No matter how much I search, I can’t seem to find how to make the top bar appear (Like the grey-blue one at https://kriesi.at/themes/enfold-shop/ with the “Give us a call now” text), or how to edit it’s content. Can you please let me know?
    Thank you

    #1468899

    In reply to: font color in cart

    Thanks now it’s perfect but why this time it was necessary to act on the css and I can’t modify it directly from the enfold options?

    #1468896

    Hi,

    Thank you for the update.

    Have you tried adding this code in the functions.php file as @Guenni007 suggested in the previous thread?

    function admin_head_mod() {
    echo '<style type="text/css">
    	#postbox-container-2 { clear: left; }
    	.index-php #postbox-container-2 { clear: none; }
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');
    

    Thread; https://kriesi.at/support/topic/enfold-back-end-not-working-in-safari-on-sequoia/#post-1468431

    Best regards,
    Ismael

    #1468878

    Hello everyone,
    For those who are interested, you can download the latest version of the Italian language

    Download here
    Translation: Italian language
    Version: Enfold 6.0.5
    Released on: 10th October 2024
    Strings: 6549
    All translations are synchronised with the source files

    Regards
    Luigi

    #1468875

    what is that wpo minifiy ? maybe this is not working correct.

    i got 35 error listiings in dev console.
    f.e.: Uncaught ReferenceError: jQuery is not defined

    try to deactivate your WP Super Minify clear cachings and have a look if enfold works as expected.

    #1468866

    Hi,

    Thanks for that, it’s still working when the parent theme is activate though. You could try using a clean child theme insted: https://kriesi.at/documentation/enfold/child-theme/. There’s no need to use plugins for that.

    Best regards,
    Rikard

    ariane1001
    Participant

    Hi,
    After migrating to the new events calendar …. on single events the sidebar moved to the bottom.
    I am using Enfold on this website. I use your theme and The events plugin for years now. So I really appreciate a solution for this.
    Thank you in advance and looking forward to your reply.
    Cheers, Ariane

    #1468839

    In reply to: Mega menu (2)

    Hi,
    Please see our documentation: Add Images to mega menu
    and create a new column in the mega menu with the image.

    Best regards,
    Mike

    #1468825

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Thanks @guenni007 for helping out :-)

    Best regards,
    Rikard

Viewing 30 results - 5,221 through 5,250 (of 244,015 total)