Viewing 30 results - 1,381 through 1,410 (of 11,220 total)
  • Author
    Search Results
  • #1327290

    Hi,
    thanks but there is no if(isset($avia_config[‘use_child_theme_functions_only’])) return; in the functions.php file.

    Se all the code below:
    <?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.
    *
    * Remove the comments before or around the sample functions and code to use theme.
    * @link http://kriesi.at/documentation/enfold/using-a-child-theme/
    */

    /**
    * Add filter to add or replace Enfold ALB shortcodes with new folder contents
    *
    * Note that the shortcodes must be in the same format as those in
    * enfold/config-templatebuilder/avia-shortcodes
    *
    * @link http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
    */

    add_filter(‘avia_load_shortcodes’, ‘avia_include_shortcode_template’, 15, 1);
    function avia_include_shortcode_template($paths)
    {
    $template_url = get_stylesheet_directory();
    array_unshift($paths, $template_url.’/shortcodes/’);

    return $paths;
    }

    /**
    * Turn on Custom CSS Class field for all Avia Layout Builder elements
    * @link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    */
    //add_theme_support(‘avia_template_builder_custom_css’);

    /**
    * Remove the Import dummy data button from theme options
    * @link http://kriesi.at/documentation/enfold/remove-the-import-dummy-data-button/
    */
    //add_theme_support(‘avia_disable_dummy_import’);

    /**
    * Enable Avia Layout Builder Debug
    * @link http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
    */
    add_action(‘avia_builder_mode’, “builder_set_debug”);
    function builder_set_debug() {
    return “debug”;
    }

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Prata’] = ‘Prata:400’;
    $fonts[‘Francois One’] = ‘Francois One:400’;
    $fonts[‘Open Sans’] = ‘Open Sans:300,400,600,700’;
    $fonts[‘Alegreya’] = ‘Alegreya:400,700’;
    return $fonts;
    }

    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {
    $fonts[‘Prata’] = ‘Prata:400’;
    $fonts[‘Francois One’] = ‘Francois One:400’;
    $fonts[‘Open Sans’] = ‘Open Sans:300,400,600,700’;
    $fonts[‘Alegreya’] = ‘Alegreya:400,700’;
    return $fonts;
    }

    add_filter(“kriesi_backlink”,”new_nolink”);
    function new_nolink(){
    $kriesi_at_backlink = “”;
    return $kriesi_at_backlink;
    }

    add_filter( ‘avf_modify_thumb_size’, ‘enfold_customization_modify_thumb_size’, 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size[‘masonry’] = array(‘width’=>1500, ‘height’=>250);
    $size[‘entry_without_sidebar’] = array(‘width’=>1210, ‘height’=>1210 , ‘crop’ => false);
    return $size;
    }

    function av_title_sc( ){
    $output = “<h1 class=’page-title’>”. get_the_title() .”</h1>”;
    return $output;
    }
    add_shortcode( ‘av_page_title’, ‘av_title_sc’ );

    function av_author_sc(){
    $current_user = wp_get_current_user();
    $output = “<h6 class=’ra-author’>AN ARTICLE BY ” . $current_user->user_firstname . “</h6>”;
    return $output;
    }
    add_shortcode(‘av_author’,’av_author_sc’);

    function av_excerpt( ){
    $excerpt = get_the_excerpt( $post );
    $output = “<span class=’related-excerpt’>”.$excerpt.”</span>”;
    return $output;
    }
    add_shortcode( ‘av_post_exc’, ‘av_excerpt’ );

    function avia_post_created(){
    $output = “<span class=’post-date’>”. get_the_date( $format, $post_id ) .”</span>”;
    return $output;
    }
    add_shortcode( ‘avia_created’, ‘avia_post_created’ );

    add_action( ‘after_setup_theme’, ‘ava_enfold_builder_layout_mod’ );
    function ava_enfold_builder_layout_mod(){
    add_filter(‘avf_builder_elements’, ‘avf_enfold_builder_layout_settings_mod’);
    }

    function avf_enfold_builder_layout_settings_mod($elements)
    {
    $counter = 0;
    foreach($elements as $element)
    {

    // Layout > Header visibility and transparency
    if($element[‘id’] == ‘header_transparency’) {
    /**
    *
    * Available Options
    * No transparency =
    * Transparent Header = ‘header_transparent’
    * Transparent Header with border = ‘header_transparent header_with_border’
    * Transparent & Glassy Header = ‘header_transparent header_glassy ‘
    * Header is invisible and appears once the users scrolls down = ‘header_transparent header_scrolldown ‘
    * Hide Header on this page = ‘header_transparent header_hidden ‘
    * MOD: Set the Layout > Header visibility and transparency settings to “Hide both”Header is invisible and appears once the users scrolls down”
    *
    **/
    $elements[$counter][‘std’] = ‘header_transparent’;
    }

    $counter++;
    }
    return $elements;
    }

    function av_single_fo(){
    ?>
    <script>
    var header = jQuery(“.single-post #main .avia-section .content”);
    jQuery(window).scroll(function() {
    var scroll = jQuery(window).scrollTop();

    if (scroll >= 250) {
    header.addClass(“single-header”);
    } else {
    header.removeClass(“single-header”);
    }
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘av_single_fo’);

    add_filter( ‘style_loader_src’, ‘t5_remove_version’ );
    add_filter( ‘script_loader_src’, ‘t5_remove_version’ );

    function t5_remove_version( $url )
    {
    return remove_query_arg( ‘ver’, $url );
    }

    function raboff_custom_checkbox(){
    ?>
    <script>

    jQuery(window).load(function(){
    jQuery(‘h2.avia-caption-title’).after(‘<p class=”close-caption”> </p>’);
    jQuery( “.close-caption”).click(function() {
    var closeTheCap = jQuery(this).closest(“.slideshow_align_caption”);
    closeTheCap.hide(“slow”);
    });
    });

    jQuery(window).scroll(function(){
    var numberNotChecked = jQuery(‘fieldset.alacarte-form input:checkbox:not(“:checked”)’).length;
    console.log(numberNotChecked, “Hello, world!”);

    if (numberNotChecked >= 16) {
    jQuery(“.one-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.one-day”).removeClass(“p-highlight”);
    }

    if (numberNotChecked <= 15 && numberNotChecked >= 8 ) {
    jQuery(“.two-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.two-day”).removeClass(“p-highlight”);
    }

    if (numberNotChecked <= 7 ) {
    jQuery(“.three-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.three-day”).removeClass(“p-highlight”);
    }

    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘raboff_custom_checkbox’);

    function avia_add_custom_social_icon($icons) {
    $icons[‘Turning Torso’] = ‘turning_torso’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    #1327211

    Hi,
    Thank you for the login, I see that you are using Enfold v4.2, this is quite old and is a pre WordPress v5 release, please update to v4.8.7. Please note that Enfold v4.2 used the old Envato API for licensing which no longer works, so you will need to login to your Theme Forest account and download the latest version of Enfold and manually update by installing the zip file via the WordPress install new theme button, WordPress will ask you if you want to update and then update for you. Here is an example of the message you will see.
    2021-10-31_004.jpg
    I also note that your server is using PHP v7.3.31, WordPress recommends a minimum of v7.4 please ask your webhost to help you update this, please note that WordPress uses PHP for the mail system so please update this.
    After you do this your email should work, if not we will take another look.

    Best regards,
    Mike

    #1327172

    In reply to: Mappress Plugin

    Hi,

    The plugin developer solved the problem. The editor now shows the button:

    Hi,
    I’ve updated the MapPress button, so it will hopefully be compatible with Enfold and other plugins that dynamically create editors.
    It’s installed on your system. Please let me know how it works for you.
    Regards,
    Chris Richardson

    I assume the solution will be incorporated into regular Mappress updates as well.

    Best regards,
    Günter

    #1327051

    In reply to: woocommerc shop page

    Merhaba Yiğit bey hani önceki mesajında bana demiştin ya istediğin sayfaları bana yaz ben yüklerim diye… şimdi aşağıda vereceğim sayfaları şu temaya yükleyip göndermeni rica edeceğim.. istediğim tema bu : https://kriesi.at/themes/enfold/

    ve istediğim sayfalarda bunlar :
    1 – https://kriesi.at/themes/enfold/blog/blog-single-author-big/

    2- https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.79819223.1111176440.1635539736-579929534.1614420003

    3- https://kriesi.at/themes/enfold/shortcodes/buttons/

    4- https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.79819223.1111176440.1635539736-579929534.1614420003

    5- https://kriesi.at/themes/enfold/shortcodes/easy-slider/
    6- https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.79819223.1111176440.1635539736-579929534.1614420003
    7- https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.79819223.1111176440.1635539736-579929534.1614420003
    8- https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.79819223.1111176440.1635539736-579929534.1614420003
    9- https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.79819223.1111176440.1635539736-579929534.1614420003
    10- https://kriesi.at/themes/enfold/shortcodes/post-slider/
    11- https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.79819223.1111176440.1635539736-579929534.1614420003
    12- https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.79819223.1111176440.1635539736-579929534.1614420003
    13 – https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.79819223.1111176440.1635539736-579929534.1614420003
    14- https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.79819223.1111176440.1635539736-579929534.1614420003
    15 – https://kriesi.at/themes/enfold/homepage/home-v2-3-col-images-contact/
    16- https://kriesi.at/themes/enfold/pages/faq/
    17- https://kriesi.at/themes/enfold/pages/help/
    18 – https://kriesi.at/themes/enfold/shortcodes/animated-image/

    #1326775

    Hello Yigit,

    I tried to do so and also tried to change the Enfold theme options, but I can’t see this drop down.

    The buttons are on the “easy slider”, does this make a difference? but I tried also to activate the “nofollow” on a normal button, but it is not working nor on the image element. I’m using the latest Enfoldversion 4.8.6.3

    Can you check this, please?

    Best regards,

    AB

    #1326716

    Hi Nicole,

    Thanks for contacting us!

    Please login to your ThemeForest account that you used to purchase the theme and go to – https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 and click the green “Renew support” button – https://imgur.com/a/dJVJMBa :)

    Best regards,
    Yigit

    #1326455

    In reply to: Mappress Plugin

    Hi Rikard,

    I’ll be more specific: the plugin has been generating maps on portfolio pages for years. The screenshot with the existing button is also from a portfolio page. In the portfolio admin in the metabox “Portfolio Additional Settings” the Mappress button also appears in the editor. https://www.dropbox.com/s/dxcoy5vsfmwvm2f/Portfolio-Additional-Settings.png?dl=0
    The button is only suppressed where I need it, in the Layout Builder editor. Why? How can the problem be solved?

    The plugin developer says:

    MapPress doesn’t restrict the button to any particular editor, so I can’t say why it’s suppressed. You can ask Enfold support if they can make a suggestion.http://mappresspro.com/chris-contact

    https://wordpress.org/support/topic/enfold-theme-7/#post-15005307

    Best regards,
    Günter

    #1326396

    Topic: Mappress Plugin

    in forum Enfold
    günter
    Participant

    The Mappres plugin basically works with the Enfold theme. But now I have to use the Layout Builder for the CPT Portfolio. The Mappres button is missing in this editor.

    https://www.dropbox.com/s/7vdite80c7iw840/button.png?dl=0
    https://www.dropbox.com/s/18w87vdipuoxdih/no-button.png?dl=0

    How can I activate the button for the editor in the Layout Builder?

    Best regards.
    Günter

    #1326119
    Marcos Q.
    Participant

    Good afternoon, I need to insert an icon in the cells of a table (price table). I can put a shortcode that extracts the icon, this is displayed correctly, but from this height of the page, it seems to break the styles of other elements. I have detected that from that point the buttons do not apply custom styles, the columns overlap (in mobile view) and sections and other elements that would have to be hidden on mobile devices do not.

    Is there a “safe” way to insert an icon into a cell without breaking the other styles?

    Enfold 4.8.6.5 Installed

    Thanks

    • This topic was modified 4 years, 6 months ago by Marcos Q.. Reason: Enfold version added
    #1325990

    In reply to: Need Support

    Hey Camp Como,

    Please use this link in order to open a new thread, or click this button in the Enfold sub forum: https://imgur.com/a/AnoSPNb.

    Best regards,
    Rikard

    #1325776
    Eleina_Shinn
    Participant

    Hi,

    In one of my Enfold installations, the Button Row element is not working, I have tried to edit a button row many times, inserted on differnet pages, can sometimes edit, but most times I get a blank pop up with no option of editing and when I do edit something (when it allows me to), the changes don’t seem to stick.. Have tried over and over again. Every other element seems to work, except this one.

    Here’s a screenshot of what the button element looks like when I open it, most typically: screenshot-047f6450c0.nxcli.net-2021.10.20-13_50_58

    #1325588

    In reply to: Missing Style Sheet

    This reply has been marked as private.
    #1325470
    kelem138
    Participant

    Hello,

    I want to add a button to the menu of my site but I want this button to be independent of the menu, with the following function :

    add_filter( 'wp_nav_menu_items', 'add_logo_nav_menu', 10, 2 );
    function add_logo_nav_menu($items, $args){
    $newitems = '<li><a title="logo" href="#">LOGO</a></li>';
        $newitems .= $items;
    return $newitems;
    }

    This function usually works fine, but with Enfold it doesn’t. Do you know how to make it work on Enfold? Thanks

    • This topic was modified 4 years, 6 months ago by kelem138.
    #1325469

    Topic: Buttonrow Fatal Errors

    in forum Enfold
    Peter
    Participant

    Hi,

    We are getting fatal errors when editing pages with buttons:

    An error of type E_ERROR was caused in line 742 of the file /home/xxx/public_html/xxx.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php. Error message: Uncaught Error: Cannot unset string offsets in /home/xxx/public_html/xxx.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php:742

    WordPress version 5.7.2
    PHP version 7.4.24

    The website, theme/plugins are fully updated. Content is not missing after those error crashes. The error is not triggered every time when a page is updating. Our website is too busy to troubleshoot it disabling all plugins for a long time trying to catch those errors. What else I can do to fix it?

    More info below, in the hidden field.

    Thanks.

    #1325460

    Hey,

    Thanks for contacting us!

    You can use – https://wordpress.org/plugins/loco-translate/ plugin to translate it to another language.

    If you would like to change the text on your child theme ( https://kriesi.at/documentation/enfold/child-theme/ ), please copy /enfold/config-templatebuilder/avia-shortcodes/menu/menu.php file to your child theme into /shortcodes/ folder and find

    $mobile_button .=		'<span class="av-current-placeholder">' . __( 'Menu', 'avia_framework' ) . '</span>';

    Then add following code to bottom of Functions.php file of your child theme

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }

    Best regards,
    Yigit

    #1325125

    Hi navindesigns,

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

    .page-id-31 #av_section_2 .flex_column .avia-button-wrap {
        position: absolute;
        bottom: 25px;
    }

    Thanks @guenni007 for helping out :-)

    Best regards,
    Rikard

    #1325007
    PowerBusWay
    Participant

    Hey there,

    So I just want to put one border on a specific Main Menu button. See private content for website link.
    We basically have a similar website layout and they use the Enfold theme as well. How did they, https://www.trystar.com/, get the ‘Request a Quote’ menu to be orange? I’d like that for mine too.

    Thanks in advance!

    #1324874

    In reply to: Changing button text

    Hi,

    Thank you for the inquiry.

    To adjust the button text, you can use this plugin.

    // https://wordpress.org/plugins/say-what/

    Just look for the text that you would like to adjust, then provide the replacement text or translation. You can also adjust the text by editing the template file (enfold/config-woocommerce/config.php line 529) directly.

    	if($product->get_type() == 'variable' && empty($output))
    	{
    		$output = '<a class="add_to_cart_button button product_type_variable" href="'.get_permalink($product->get_id()).'"><span '.av_icon_string("details").'></span> '.__("Select options","avia_framework").'</a>';
    	}
    
    	if(in_array($product->get_type(), array('subscription', 'simple', 'bundle')))
    	{
    		$output .= '<a class="button show_details_button" href="'.get_permalink($product->get_id()).'"><span '.av_icon_string("details").'></span>  '.__("Show Details","avia_framework").'</a>';
    	}
    

    And to adjust the button style, use this css code.

    .avia_cart_buttons {
        padding: 0;
    }
    
    #top .avia_cart_buttons .button {
        padding: 10px;
    }

    Again, you need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css or resave the theme options.

    Best regards,
    Ismael

    #1324775
    Horst Eberhard
    Guest

    Hi,

    I cannot put a request to the support.

    I bought a first Enfold-License in 2018.
    On 28. Sept. 2021 I bought a second license for another project.

    To get support, I have just registered under a now account – an waitetd for more than 2 hours
    I now need support and can’t still find any button on your support-page to start…

    What am I about to do ?

    Best regards,
    Horst

    #1324750

    Hi Justine,

    Thanks for contacting us!

    1- I could reproduce the issue on my iphone and noticed “parallax” class on the color section even though it did not have any background so I temporarily added a background image, set it to scroll, removed background image, saved the element and updated the page and that helped.

    2- I added following code to bottom of Quick CSS field in Enfold theme options > General Styling tab

    @media only screen and (max-width: 1070px) and (min-width: 767px){ 
    .home .slideshow_caption { width: 100%; }}
    
    @media only screen and (max-width: 480px) { 
    .responsive #top.home .slideshow_caption .avia-caption-content { display: none; }}

    First code removes right alignment so buttons show up on tablets and second code hides description so there is enough space on mobile for buttons to show up.

    Please review your website :)

    Best regards,
    Yigit

    #1324549

    Hi Serge,

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    @media only screen and (max-width: 767px) { 
    .responsive .av_promobox .avia-button, .responsive .av_promobox .avia-button-wrap {
        display: inline-block;
    }}
    @media only screen and (max-width: 990px) {
    .avia-promocontent {
        margin-right: 0;
    }
    .av_promobox .avia-button.avia-size-large {
        margin-top: 0;
    }
    #top .av_promobox .avia-button {
        position: unset;
    }
    }
    

    Best regards,
    Yigit

    #1324538
    marscui
    Participant

    Hello, I’ve set up Woocommerce & Enfold theme. On the single product page different variations of shoe sizes are selectable via drop down per default. How to change this to show available shoes sizes immediately at a glance without drop down select e.g. with buttons for each shoe size (best would be to show out of stock items greyed out). Thanks for any idea!

    brouge
    Participant

    hi there, i got a serious problems with the enfold contact form.
    check out this form https://www.metazeit.de/#formular and hit the submit button without entering anything.
    the page will get reloaded and stays on top so you never see the error or sucessful send message.

    how can i make the forms to scroll down to the responsive ajax message?
    i am using wordpress 5.8.1 and enfold 4.8.6.2 as a parent theme – no child is installed.

    accourding to other threads i might have to change /enfold/config-templatebuilder/avia-shortcodes/contact/contact.js
    but i don’t know what exactly.
    thanks for a fast reply
    thomas

    #1323911
    sensiblekaren
    Participant

    Hello

    After a recent Enfold theme update the styling on my buttons for events (using the plugin tribe events) changed to blue with blue writing so people can no longer see the buy now message.

    I want to change the background colour and writing to white so people can see it. How should I do this?

    Link to the event list page is enclosed – see blue buttons on each event.

    #1323676
    GePu
    Participant

    Hey there,
    I really like enfold! for many years i use it and love to work with it. You also where abe to solve all problems i faced until know.
    Hope this one will also be solved.
    I have an almost similar problem as in this post but no solution so far https://kriesi.at/support/topic/advanced-layout-builder-is-spinning-again/
    when i open an existing page and edit just one or two things, hit save changes

      and then

    edit some more of the content (f.e. changing a photo or adding some text) enfold is doing automatic saving and showing the grey blinking cloud save next to the not working / greyed out “save changes” button, also on the right sidebar there is a spinning wheel next to the layout options.
    this is annoying because it lasts for almost ever. I still can make more changes but I can´t save them. When i try to leave the editing page it asks me if i really want to do so becuase unsaved changes will get lost.
    what can i do?

    #1323657

    Hi Mike,

    Thanks for the information.

    I have found 3 CSS errors in Quick CSS field and fixed them and then enabled CSS file merging and compression option and confirmed that layout still looked fine on mobile. I believe the issue was related to broken CSS.

    1- I have added following code to bottom of Quick CSS field to increase the space between the map on mobile

    #top.tribe-theme-enfold.single-tribe_events .secondary .tribe-events-meta-group {
        margin-top: 20px;
    }

    2- However I am unable to reproduce the space issue between the buttons. They look fine on my end. I attached a screenshot in private content field below. If this is not what you meant, could you please post a screenshot and show so we can make sure that we are on the same page? :)

    Best regards,
    Yigit

    #1323533

    Hey, thank you so much for everything. I was able to fix just about everything. Few things:

    1) Going back to your first point at the top, the button that you checked across browser. Even in the image snippet you sent me, you can see that the text is aligned-left, not centered. Like the text is all hitting a wall on the left hand side… while on the right it zig-zags. On mobile, the text in the button is clearly centered though, it baffles me lol.

    2) This goes to the cart on mobile. On desktop its doing it thing, on mobile, the cart button is almost impossible to click on. I moved the burger menu over to the left to make space between them, but the car button is still almost impossible to activate. I have another ecommerce site on enfold: bonjiglass.com/shop … and on there it the cart button is working perfectly. The moment you click on it, it goes to the cart page. Is there a fix for this?

    Thanks,
    -Daniel

    #1323476

    Hi Yigit
    Sorry, for my late answer.
    So, now it is very special.

    When I disable “CSS file merging and compression”, it looks nice on the mobile view… but it looks also nice without your CSS code… how this could be ???

    The only thing that does not looks nice then is the missing space between the two buttons at the bottom of the event (calendar) and the missing space between the map and the event venue.

    When I enable “CSS file merging and compression”, it looks ugly at all, with and without your CSS code…
    So, my questions are:

    • Why I must disable “CSS file merging and compression” for that The Events Calendar looks nice on mobile?
    • Why there is needed CSS code for that The Events Calendar looks nice on mobile? Before the update it looked also nice without CSS code
    • Why there are such troubles with Enfold and The Events Calendar now?
    • Could you add CSS code for having the missing spaces between the buttons, map and event venue as a fix in Enfold?

    In the private content section you find login data and examples.

    Thanks very much.

    Best regards
    Mike

    Hi,
    Thank you for your patience, this can easily be fixed by manually changing the url to “https://&#8221; and click “Save all settings” button at the top of the page.
    2021-10-02_007.png
    you do not have to use the “upload” button, you can manually enter the url to the image.
    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

Viewing 30 results - 1,381 through 1,410 (of 11,220 total)