Viewing 30 results - 1,921 through 1,950 (of 244,161 total)
  • Author
    Search Results
  • #1485850
    tonyiatridis
    Participant

    I find the side arrows for the navigation are working in reverse order here:

    https://anthonyi34.sg-host.com/portfolio-item/boulder-garden/

    I don;t need them to loop but te order is reveresd.

    I see this in my chid themes functions php now, how can i get the order to be correct? thanks:

    <?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.
    */

    add_filter( ‘avia_post_nav_entries’, ‘enfold_customization_postnav’, 10, 2);
    function enfold_customization_postnav($entries, $settings)
    {
    if($settings[‘type’] == ‘portfolio’)
    {
    $settings[‘same_category’] = true;

    $entries[‘prev’] = get_previous_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
    $entries[‘next’] = get_next_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
    }

    return $entries;
    }

    function remove_title_attr(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery(‘#wrap_all a’).removeAttr(‘title’);
    jQuery(‘#wrap_all img’).removeAttr(‘title’);
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘remove_title_attr’);

    #1485836

    In reply to: Burger Menu

    see here an example page ( only with a color-section on that page that represents the footer-page )

    https://webers-web.info/navigation/

    for that menu item in the main nav i gave a custom-class to that menu-item: pseudoburger and used the label :
    <span class="av-hamburger custom-burger av-hamburger--spin"><span class="av-hamburger-box"><span class="av-hamburger-inner"></span></span></span> – this is exactly the usage of the enfold burger icon – plus a custom-class (custom-burger).

    the color-section got the ID: pseudoburger. (#pseudoburger)
    ( or if you use the footer-page for that – then you had to adjust all to that ID : #footer-page )

    i placed now a snipptet to my child-theme functions.php:

    function a_pseudo_burger_menu(){
    ?>
    <script type="text/javascript">
    	(function($) {
    		$('body').on('click', '.pseudoburger > a',  function() {
    			$('#pseudoburger').toggleClass('visible-page');
    			$('.custom-burger').toggleClass('is-active');
    		});
    	})(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'a_pseudo_burger_menu');

    and on quick css:

    #top #pseudoburger {
      position: fixed;
      top: var(--enfold-header-height);
      left: 0;
      z-index: 50;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease;
    }
    
    #top #pseudoburger.visible-page {
      opacity: 1;
      visibility: visible;
      transition: opacity 1s ease;
    }
    
    #top .header_color .custom-burger.is-active .av-hamburger-inner, 
    #top .header_color .custom-burger.is-active .av-hamburger-inner::before, 
    #top .header_color .custom-burger.is-active .av-hamburger-inner::after {
      background-color: darkblue !important;
    }
    #1485835

    In reply to: Burger Menu

    to get a “footer-page” with dynamically feed menues – you can use the menu shortcode :

    
    function custom_named_menu_shortcode( $atts ) {
        extract( shortcode_atts( array(
            'name'  => '', // Default to an empty menu name
            'class' => 'custom-menu', // Default CSS class
            'depth' => 0, // Default depth (0 for unlimited)
            'title' => '', // New: Default to an empty title
            'title_tag' => 'h2', // New: Default title HTML tag
            'title_class' => 'menu-title', // New: Default title CSS class
        ), $atts ) );
    
        $output = ''; // Initialize output variable
    
        // If a title is provided, add it to the output
        if ( ! empty( $title ) ) {
            $output .= '<' . esc_attr( $title_tag ) . ' class="' . esc_attr( $title_class ) . '">' . esc_html( $title ) . '</' . esc_attr( $title_tag ) . '>';
        }
    
        if ( ! empty( $name ) ) {
            $output .= wp_nav_menu( array(
                'menu'            => $name,
                'menu_class'      => $class,
                'container'       => 'nav', // You can change this to 'div', false, etc.
                'container_class' => $class . '-container',
                'echo'            => false, // Important: returns the menu HTML instead of printing it
                'depth'           => $depth,
            ) );
        }
        return $output; // Return the accumulated output
    }
    add_shortcode( 'named_menu', 'custom_named_menu_shortcode' );

    it is used like this:
    [named_menu name="your-menu-name" class="my-custom-menu" depth="2" title="Our Main Menu"]

    then you can setup your layout with codeblock elements – each of them represents a menu ( or different shortcode – f.e. social-media )

    but for that i wouldn’t use the enfold burger icon – instead i would place a custom Button – perhaps a fixed button to toggle a class to hide/show this page.

    #1485828

    In reply to: Burger Menu

    Look to your example page of thedive.com – its footer is exactly the burger content ;)
    so maybe styling a footer-page and redeclare the hamburger icon with a different event that brings that footer to fullscreen and to fixed position ( left: 0 ; top: var(–enfold-header-height) ) is a possible solution. ( no automatic menü – but that way you like to have it)

    #1485814

    Hi,

    Thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1485807

    Hey Soulshakin,

    Please refer to thisw: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1485802

    In reply to: New license required?

    Hey Alex,

    You can still use the same license. If you want to receive updates on the backend, then please refer to this: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1485801

    In reply to: New license reqired?

    Hey Alex,

    You can still use the same license. If you want to receive updates on the backend, then please refer to this: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1485797
    Alex
    Guest

    Hi, I moved my webpage to a new webhosting and decided to rebuild the page from scratch for a cleaner setup. It is the identical project though, the other installation has been deleted. Unfortunately, my enfold-license doesn’t work anymore. Is there a chance I can still use the license?

    Thanks in advance!

    #1485796
    Alex
    Participant

    Hi, I moved my webpage to a new webhosting and decided to rebuild the page from scratch for a cleaner setup. It is the identical project though, the other installation has been deleted. Unfortunately, my enfold-license doesn’t work anymore. Is there a chance I can still use the license?

    Thanks in advance!

    #1485792

    Topic: MySql version

    in forum Enfold
    gustococco
    Participant

    Hi! I m not be able to install the Enfold theme. Are any special server parameters required? What mysql version is required?

    #1485789

    Hey agus,

    Thank you for the inquiry.

    There is no element that exactly matches the layout of the page in the private field, but you might be able to recreate it with some modifications using the Magazine or Blog Posts element set to Grid Layout. Please check the links below for reference.

    https://kriesi.at/themes/enfold-2017/elements/magazine/
    https://kriesi.at/themes/enfold-2017/elements/blog-posts/

    Best regards,
    Ismael

    #1485787
    agus
    Guest

    Hi,

    just check your enfold demos, and when i check the blog sections i dont find layout that i want to use.

    is it possible to have blog layout like the link below or i need to hire a freelance to customize the enfold theme?

    many thanks

    #1485786

    Hey jkos,

    Thank you for the inquiry.

    You can configure the Main Menu > Main Menu Links in the Enfold > Advanced Styling panel. Please check the screenshot below.

    View post on imgur.com

    Best regards,
    Ismael

    #1485777

    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

    #1485772

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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

    #1485769

    In reply to: Content width

    have you refreshed all cachings (maybe you got a caching/optimization plugin) – did you “Delete Old CSS And JS Files?” on Enfold – Performance?

    Next Hint:
    These settings are nearly the last that are loaded – even after quick css – so if you got a mistake on quick css ( missing closing brackets , komma instead of semicolon etc. they will be not loaded. So check your quick css.

    If you got a link to that page – we can check what happens.

    #1485760

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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

    #1485755

    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

    #1485753

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

    .page-id-4128 #after_section_1 {
    	 padding-top: 50px;
    }

    adjust to suit.

    Best regards,
    Mike

    #1485751

    Hey Ernst Grubbauer,
    Thank you for the login, please note that your version 4.1.2 is not compatible with PHP 8+, and it can not be updated in the theme, due to how Envato (Theme Forest) changed from a API key to a Token. Unfortunately this occurs when a old “developer” buys the theme in their Envato account and doesn’t create an account for the customer. Envato will not transfer the license nor issue a new license.
    Due to our exclusive contract with Envato we can not issue licenses.
    Your customer should create an account with Envato and purchase a new license The upside to this is that by purchasing a new license you will also get 6 months of support on our forum to help with any issues. I recommend upgrading to a full year of support for just a little more, as the cost of the theme and a full year of support costs the same as a single hour of support from many developers. 2022-12-04_001.jpeg.
    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
    Please note that using the contact form is not appropriate for support questions, please log in to the support forum and open a new thread if you need further assistance.
    After you purchase a new license you can register for the support forum and post your questions.

    Best regards,
    Mike

    #1485747

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

    #top #main .avia-gallery.av-mb6m8z6a-b9f99ac9fd31fe48d94c453aabd891f1 .avia-gallery-thumb a {
        width: 50%;
    }

    Then disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression
    and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files
    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    Ernst Grubbauer
    Guest

    Ich habe vor einigen Jahren die Betreuung der Website su-hartpurgstall.at übernommen. Zum Käufer und ursprünglichen Administrator von Enfold zur Website, Sonja Winkelbauer, gibt es keinen Kontakt mehr. Die Website ist bei Easyname registriert. Nun soll ein Upgrade der PHP-Version auf 8.x erfolgen. Dazu wird die aktuelle Version des Themes benötigt, laut Beschreibung https://kriesi.at/support/topic/fatal-error-unparenthesized-a-b-c-d-e/ !
    Wo und wie erhalte ich die neue Version?
    Müssen wir eine neue Lizenz erwerben?
    Für das Kriesi-Supportteam wurde ein temporärer WordPress-User angelegt.
    MfG Ernst Grubbauer
    Rückmeldungen an (Email address hidden if logged out) – +43 664 4051545

    bemodesign
    Participant

    I own a web design company and do Enfold theme sites. Do you guys have freelancer connections I could hire to create and update Enfold themed sites?

    thanks

    #1485729
    mulder4301
    Participant

    Guten Abend.
    Jetzt ist der Tag bald rum und ich wende mich an die Profis in dieser Runde :-)

    Ich habe eine einfache Seite mit Enfold.
    Aufbau:
    Farbsektion bestehend aus zwei Spalten mit unterschiedlich langem Content.
    In der linken Spalte sind Überschrift und Bild.
    In der rechten Spalte ist ein längerer Text, der gescrollt wird.

    Gewünschte Funktionsweise:
    Beim Scrollen soll die linke Spalte am oberen Fensterrand unter dem Navi andocken und warten bis der Content der rechten Spalte durchgerollt ist (sticky). Erst dann darf auch die linke Spalte mit dem Abschluss der rechten Spalte weiter scrollen. Ich habe mir schon diese Seite angeschaut, https://webers-testseite.de/sticky-elements/ Genau das versuche ich zu realisieren.

    Aber es funktioniert nicht. :-/ Es dockt nichts an. Was übersehe ich? Hat jemand eine Idee?

    Als Zugabe wäre die Option super, wenn man zwei solcher Farbsektionen mit der gewünschten sticky-Spalte untereinander hinbekäme.

    Ich danke euch im Voraus für die Tipps und Tricks!

    Mulder

    Hi Ismael,
    Sure. Below is a link to a page that displays thumbnails/links for the custom posts. If you edit the page and look under the “LAS VEGAS” and “OAHU” headers, you will see the blog post element from Enfold. But when viewing the page, nothing displays for either of those. For both of those, all I did was make a change to the blog posts element and saved it. After that, they no longer displayed any posts.

    for the one under “OAHU”, I just copied the one below it on the page, opened the eminent and clicked save without making any changes. Now it doesn’t display any posts.

    The custom post type for these posts in the left menu of the WordPress dashboard is “Hotels & Resorts” and a link for that is provided below.

    Ryan

    #1485722

    Hi,

    Great, I’m glad that Ismael could help you out. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1485719

    Hi,

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

    @media only screen and (max-width: 767px) {
    #top .avia-gallery.av-mb6m8z6a-b9f99ac9fd31fe48d94c453aabd891f1 .avia-gallery-thumb a {
      width: 50%;
    }
    }

    Best regards,
    Rikard

    #1485717
    kalla77
    Participant

    Hi
    as you see here the navigation controls for the gallery are “far out”.
    Image:
    https://gwup.org/temporaer/enfold-navi-bug.jpg

    Live:

    They are supposed to be IN the gallery and not miles above.
    This bug can be reproduced.
    Please tell me how to fix it (and fix it in your next update!)

    Here is the shortcode to reproduce it:
    [av_section min_height='100' min_height_pc='25' min_height_px='500px' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' padding='default' margin='aviaTBmargin' custom_margin='0' custom_margin_sync='true' av-desktop-custom_margin='' av-desktop-custom_margin_sync='true' av-medium-custom_margin='' av-medium-custom_margin_sync='true' av-small-custom_margin='' av-small-custom_margin_sync='true' av-mini-custom_margin='' av-mini-custom_margin_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' fold_type='' fold_height='' fold_more='Weiterlesen' fold_less='Read less' fold_text_style='' fold_btn_align='' color='main_color' background='bg_color' custom_bg='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' src_dynamic='' attach='scroll' position='top left' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='1' overlay_color='#003833' overlay_pattern='{{AVIA_BASE_URL}}images/background-images/diagonal-thin-dark.png' overlay_custom_pattern='' custom_arrow_bg='' fold_overlay_color='' fold_text_color='' fold_btn_color='theme-color' fold_btn_bg_color='' fold_btn_font_color='' size-btn-text='' av-desktop-font-size-btn-text='' av-medium-font-size-btn-text='' av-small-font-size-btn-text='' av-mini-font-size-btn-text='' fold_timer='' z_index_fold='' css_position_z_index='' av-desktop-css_position_z_index='' av-medium-css_position_z_index='' av-small-css_position_z_index='' av-mini-css_position_z_index='' id='' custom_class='backgroundvilla' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-fhey3j' sc_version='1.0']
    [av_icon_box icon='ue80b' font='entypo-fontello' title='Lorem Ipsum' position='top' icon_style='' boxed='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='' custom_title_size='' av-desktop-font-size-title='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' custom_content_size='' av-desktop-font-size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' heading_tag='div' heading_class='biszu' link='' link_dynamic='' linktarget='' title_attr='' linkelement='' id='' custom_class='' template_class='' av_uid='av-c6iolb' sc_version='1.0' admin_preview_bg='']
    <h1>Lorem Ipsum dolor sid amend dolores</h1>
    Weit hinten, hinter den Wortbergen, fern der Länder Vokalien und Konsonantien leben die Blindtexte. Abgeschieden wohnen sie in Buchstabhausen an der Küste des Semantik, eines großen Sprachozeans. Ein kleines Bächlein namens Duden fließt durch ihren Ort und versorgt sie mit den nötigen Regelialien. Es ist ein paradiesmatisches Land, in dem einem gebratene Satzteile in den Mund fliegen. Nicht einmal von der allmächtigen Interpunktion werden die Blindtexte beherrscht – ein geradezu unorthographisches Leben. Eines Tages aber beschloß eine kleine Zeile Blindtext, ihr Name war Lorem Ipsum, hinaus zu gehen in die weite Grammatik.
    [/av_icon_box]

    [av_gallery ids='12076,12077,12078,12079,12080' ids_dynamic='' style='big_thumb lightbox_gallery' preview_size='no scaling' crop_big_preview_thumbnail='avia-gallery-big-crop-thumb' thumb_size='medium' columns='12' thumbs_hover='' control_layout='av-control-default' slider_navigation='av-navigate-arrows' nav_visibility_desktop='av-nav-arrows-visible' nav_arrow_color='' nav_arrow_bg_color='' imagelink='lightbox' link_dest='' lightbox_text='no_text' lazyload='avia_lazyload' img_scrset='' html_lazy_loading='disabled' alb_description='' id='' custom_class='' template_class='' av_uid='av-mb5at8df' sc_version='1.0' admin_preview_bg='']
    [/av_section]

    kind regards
    Andrè

    lara666
    Participant

    Hi Enfold Team,

    I’ve added an embedded map to this page using the WP Maps plugin:

    After embedding the map, I noticed that the H1 font on the page becomes much bolder.

    For reference, please see the H1 styling on this page, which is the desired appearance:

    Could you please advise how to resolve this styling conflict and restore the correct H1 font weight?

    Thank you so much!

Viewing 30 results - 1,921 through 1,950 (of 244,161 total)