Forum Replies Created

Viewing 30 posts - 7,261 through 7,290 (of 34,891 total)
  • Author
    Posts
  • in reply to: WPML -> Footer -> Copyright (Global Layout) #1408827

    Hey PopCut,
    The Enfold Options panel is language specific for WPML. You can see that in the upper left corner there are flags indicating the language for the Enfold Options
    Enfold_Support_2165.jpeg
    select the language and then change the copyright text and save the theme options, then repeat for each language.
    Then clear your browser cache and any cache plugin, and check.
    If you are using a CDN or server cache you may need to also clear these.

    Best regards,
    Mike

    in reply to: Post Link Format not directly linking #1408826

    Hi,
    Here is your thread from last time with links to two solutions from Ismael.

    Best regards,
    Mike

    in reply to: Reoccuring problems with styles.css in child-theme #1408824

    Hi,
    We will leave this open to hear back from you.

    Best regards,
    Mike

    in reply to: change line-height in list element #1408823

    Hi,
    Thank you for the link to your site, I see that you have already added the line height to the list items on these three pages, if you are going to add more pages I would recommend adding the custom class custom-list-height to any text elements that will contain these list items and then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .custom-list-height li {
    line-height: 120%;
    }

    After applying the css, please clear your browser cache and check.

    But if I misunderstood you and you want to change these text elements to a different line-height, then you will first need to remove the inline css style="line-height: 120%;" from each list item by opening the text element and view in the Text tab and remove the code. Then add the custom class to the element and the css to your Quick CSS
    Enfold_Support_2163.jpeg

    Best regards,
    Mike

    in reply to: Issue Updating Site #1408819

    Hi,
    As for your comment about PHP v8, please do not use v8 until after you usdate the theme, your version of the theme doesn’t support it.
    As for your webhost, I’m supprised that they will not enable PHP ZipArchive Extension for you, this is a standard setting for PHP and it is typically enabled by default.
    You are going to need this enabled on your site so I guess you will need to hire someone to do this for you, until then you could try uploading the new theme version via FTP, see our documentation here.
    But please note to not try to overwrite the theme files via FTP as this will leave old files behind and cause errors, you will need to first delete the theme files at /wp-content/themes/enfold/ and then upload the new directory /enfold/ if you are using a child theme you can just leave those there as you will still use those.
    While this is easy to do uploading via FTP can be a slow process, if you are using a cPanel in your webhost it my be faster to use their “file manager” instead.
    I recommend making a full backup of the files and the database using your webhost backup feature, just in case.

    Best regards,
    Mike

    in reply to: Post Link Format not directly linking #1408817

    Hi,
    Thank you for the link to your post, I assume that you are asking how to get your News Widget in the sidebar to link to the post type “link”. Unfortunately for the News Widget you would need to edit the core files and make these changes with each update because it can not be added to your child theme, see this thread.
    I recommend using the Magazine element instead without the first image large as it looks the same in the sidebar:
    Enfold_Support_2157.jpeg
    To do this open an empty post with the Classic Editor and use the shortcode wand for the magazine element:
    Enfold_Support_2159.jpeg
    and then copy the shortcode to a Custom HTML widget in your sidebar, here is the shortcode I used in this example:

    [av_magazine link='category' thumbnails='aviaTBthumbnails' heading='' date_filter='' date_filter_start='' date_filter_end='' date_filter_format='yy/mm/dd' period_filter_unit_1='1' period_filter_unit_2='year' page_element_filter='' first_big_pos='top' image_big='magazine' items='10' paginate='' offset='0' heading_color='theme-color' heading_custom_color='#ffffff' heading_tag='' heading_class='' heading_link='' link_target='' img_scrset='' lazy_loading='disabled' alb_description='' id='' custom_class='' template_class='' element_template='' one_element_template='' av_uid='' sc_version='1.0' admin_preview_bg='']

    I assume that you would like to hide the excerpts and the border between each item, so try this css:

    .sidebar .custom-html-widget .av-magazine-content {
    	display: none;
    }
    .sidebar .custom-html-widget .av-magazine-content-wrap {
    	border: none;
    }

    For this expected result:
    Enfold_Support_2161.jpeg

    Best regards,
    Mike

    in reply to: Issue Updating Site #1408810

    Hi,
    Please keep using PHP v7.4, the error the link you followed has expired is typically due to the PHP ZipArchive Extension on your web server is not enabled, please ask your web host to enable it.

    Best regards,
    Mike

    in reply to: Comment fundtion on normal page doesn’t work #1408805

    Hi,
    Thanks for the feedback but you didn’t remove all of it, you only removed one little part, I removed all of it for you and now the comments show.
    For reference this was the full function:

    // **********************************************************************//
    // * DISABLE COMMENTS                                                    */
    // **********************************************************************//
    
    
    // Disable support for comments and trackbacks in post types
    function df_disable_comments_post_types_support() {
    	$post_types = get_post_types();
    	foreach ($post_types as $post_type) {
    		if(post_type_supports($post_type, 'comments')) {
    			remove_post_type_support($post_type, 'comments');
    			remove_post_type_support($post_type, 'trackbacks');
    		}
    	}
    }
    add_action('admin_init', 'df_disable_comments_post_types_support');
    // Close comments on the front-end
    function df_disable_comments_status() {
    	return false;
    }
    add_filter('comments_open', 'df_disable_comments_status', 20, 2);
    add_filter('pings_open', 'df_disable_comments_status', 20, 2);
    // Hide existing comments
    function df_disable_comments_hide_existing_comments($comments) {
    	$comments = array();
    	return $comments;
    }
    add_filter('comments_array', 'df_disable_comments_hide_existing_comments', 10, 2);
    // Remove comments page in menu
    function df_disable_comments_admin_menu() {
    	remove_menu_page('edit-comments.php');
    }
    add_action('admin_menu', 'df_disable_comments_admin_menu');
    // Redirect any user trying to access comments page
    function df_disable_comments_admin_menu_redirect() {
    	global $pagenow;
    	if ($pagenow === 'edit-comments.php') {
    		wp_redirect(admin_url()); exit;
    	}
    }
    add_action('admin_init', 'df_disable_comments_admin_menu_redirect');
    // Remove comments metabox from dashboard
    function df_disable_comments_dashboard() {
    	remove_meta_box('dashboard_recent_comments', 'dashboard', 'normal');
    }
    add_action('admin_init', 'df_disable_comments_dashboard');
    // Remove comments links from admin bar
    function df_disable_comments_admin_bar() {
    	if (is_admin_bar_showing()) {
    		remove_action('admin_bar_menu', 'wp_admin_bar_comments_menu', 60);
    	}
    }
    add_action('init', 'df_disable_comments_admin_bar');
    
    // **********************************************************************//
    // * Deaktivate Comments from Admin Bar                                        */
    // **********************************************************************//
    
    add_action( 'admin_bar_menu', 'clean_admin_bar', 999 );
    function clean_admin_bar( $wp_admin_bar ) {
        $wp_admin_bar->remove_node( 'comments' );
    }
    

    please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    A ALB text element gets it height from the text in it:
    Enfold_Support_2150.jpeg
    so I assume the height you are referring to the P tag margin
    Enfold_Support_2153.jpeg
    to do this with a custom class, and the custom class remove-p-tag-margin to your text element and this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .remove-p-tag-margin p {
    	margin: 0;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: change line-height in list element #1408797

    Hey Manfred,
    Typically you could add a custom class to the element that contains your list item and then use css like this in your Quick CSS:

    .custom-class li {
    line-height: 120px;
    }

    but it would be easier to help if we could see the page and list items.
    Let us know it you want to use this everywhere on your site or only in specific situations as it could help us offer a better solution.

    Best regards,
    Mike

    in reply to: Comment fundtion on normal page doesn’t work #1408796

    Hi,
    Please remove the group of functions in your child theme functions.php under the heading DISABLE COMMENTS then you should see the option in Nikko’s screenshot to enable the comments on your page.

    Best regards,
    Mike

    in reply to: Partner Logo Element #1408794

    Hey Stefan,
    Please duplicate the element and use the Element Visibility to show your current element on desktops and tablets, then change the column setting in the duplicated element to show only one and use the Element Visibility to show only on mobile.

    Best regards,
    Mike

    in reply to: Reoccuring problems with styles.css in child-theme #1408793

    Hi,
    Perhaps your child theme stylesheet has errors try ching with CSS LINT
    Also try disabling your Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enabling Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and if the child theme stylesheet then works enable the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression again and clear your browser cache.
    Please note that testing with iPads & 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.

    Best regards,
    Mike

    in reply to: Issue Updating Site #1408791

    Hey ewebbdesigns,
    Thank you for the link to your site, I see that you are using Enfold v3.5.1 this doesn’t support WordPress v5+ or PHP v8
    Before updating I recommend making a full backup of your site.
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Masonry gallery Text mobil #1408790

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

    @media only screen and (max-width: 767px) {
    #top #wrap_all .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block!important;
        height: auto;
        width: auto;
        background: #fff;
    }
    #top #wrap_all .main_color .container .av-masonry-entry.av-masonry-item-with-image .avia-arrow {
        background-color: transparent;
    }
    }
    

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Event Manager Plugin – Display of sidebar widget #1408789

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

    .sidebar .em.em-events-widget .em-item-image .em-item-image-placeholder div.date {
        min-width: 70px;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Video background #1408785

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

    #main .mejs-overlay-loading-bg-img {
    	display: none;
    }

    After applying the css, please clear your browser cache and check.
    Please note that testing with iPads & 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.

    Best regards,
    Mike

    in reply to: Can’t remove top padding in main menu container #1408783

    Hey Gary,
    Thank you for the link to your site and the screenshot, please note the height of the menu item links:

    .av_minimal_header .main_menu ul:first-child > li a {
        height: 90px;
        line-height: 90px;
    }

    Enfold_Support_2148.jpeg
    Try this css for desktop:

    #header.av_minimal_header .main_menu ul:first-child > li a {
        height: 30px;
        line-height: 30px;
    }
    #top #header.av_minimal_header #header_main .av-main-nav .sub-menu {
        margin-top: 0px;
    }
    @media only screen and (min-width: 1015px){
    #top #header #header_main .inner-container .main_menu {
        top: 150px;
    }
    }

    and model and adjust to suit for other devices

    Best regards,
    Mike

    in reply to: Press on Burger menu main side jumps to subside #1408781

    Hey alliansohog,
    Thanks for your patience, I see that you have Enfold Theme Options ▸ Main Menu ▸ Burger/Mobile Menu ▸ Clone title menu items to submenu enabled but this menu item doesn’t seem to have a clone and I don’t see any custom javascript on your site to remove the clone. Did you add any custom javascript to you site?
    When I add more menu items to your mobile menu and create a sub-menu the cloned menu item is added, but it also seems that a custom mouse-down event has been added to the menu, please see my demo site linked below and the “about” menu item, it opens smoothly on click, now compare to your site “Interna SIdor” but try only doing a mouse-down on the menu item, not a click and you will see the sub-menu open on your site and not my demo.
    If you didn’t add any custom javascript then it could be a plugin conflict, try disabling all of your plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: When updatign emoji's get lost #1408777

    Hi,
    Glad to hear that this helped, unfortunately this is a browser issue so there is not anything we can do for this. If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Thank you I found that disabling all of your plugins solved the issue, I re-enabled them for you.
    Please try disabling all of your plugins and then enable your plugins one at a time and test your site, clearing your browser cache after each test until you find the one or combination of plugins causing this issue.

    Best regards,
    Mike

    in reply to: Woocommerce VAT-suffix #1408697

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Text transform & social media icon #1408696

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Lightbox #1408695

    Hi,
    Glad to hear that you have this sorted out, shall we close this thread topic then?

    Best regards,
    Mike

    Hi,
    The Dev Team replied to try adding a copy of our file (\config-layerslider\config.php) in child theme and remove these lines from the bottom:

    function Avia_Config_LayerSlider( $class_name = '' )
    {
    	return Avia_Config_LayerSlider::instance( $class_name );
    }
    
    
    /**
     * Initialise class and hooks
     */
    Avia_Config_LayerSlider();

    Make the modifications you want to make in the child theme file, at end of functions.php of child theme include this file.
    When the original file is loaded by the theme functions.php it recongnizes that the class already exists and only executes the lines at the bottom,

    Best regards,
    Mike

    in reply to: Lightbox #1408666

    Hi,
    I have checked your homepage and the three boat images that open the lightboxes do work, but they are slow this is expected when using a iframe to open such a large page as yours, this is not seen in the example pages because those pages are light and fit in the iframe popup without scrolling, as pointed out earlier iframe popups work best with a medium amount of information.
    The button in your slider Scopri Venticinque doesn’t open a popup, it is opening a new page. Try adding ?iframe=true to your button link to open in a popup.

    Best regards,
    Mike

    in reply to: Adding Script to Code Block does not work #1408664

    Hi,
    I took a look at your page /who-we-are/ but I don’t see any Job Description at the bottom of the page and the login doesn’t work for me, please check.
    I tested your script on my test site in a code block element and it seems to work, please see the link below.

    Best regards,
    Mike

    Hi,
    I’m not sure so I have asked the rest of the team for advice, thank you for your patience.

    Best regards,
    Mike

    in reply to: Admin-Seite wählt Hauptmenü nicht an #1408660

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

    #top #wrap_all #main .av-social-link-mail:hover a, #top #wrap_all #main .av-social-link-mail a:focus {
        color: #fff;
        background-color: #9fae37;
    }

    and change the background color to suit.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Customize animated countdown #1408568

    Hey enfold,
    Thanks for the link to your page, please note in your css above the custom class my-custom-countdown you should add this to your element in the Advanced tab under Developer Settings for the css to work.
    Or you could remove this class from your css if you don’t mind it applying to all of your countdown elements on your site.

    Best regards,
    Mike

Viewing 30 posts - 7,261 through 7,290 (of 34,891 total)