Viewing 30 results - 6,151 through 6,180 (of 244,025 total)
  • Author
    Search Results
  • #1464261

    Thank you so much! I’m not sure were to insert that code into php.

    Please see a copy of the 1st lines of code in there now. Could you tell me where to insert?

    <?php
    if( ! defined( ‘ABSPATH’ ) ) { die(); }

    global $avia_config;

    if( ! is_array( $avia_config ) )
    {
    $avia_config = array();
    }

    /**
    * With WP 5.8 block editor was introduced to widget page. This is not supported by Enfold.
    * Based on https://wordpress.org/plugins/classic-widgets/ we disable this feature.
    *
    * For users who need to use it we updated our widgets but preview is not supported properly.
    *
    * ACTIVATING THIS FEATURE IS NOT SUPPORTED and in trial beta !!
    * =============================================================
    *
    * @since 4.9 started to update widgets to support Block Widget editor – but this is only in trial BETA and preview is not supported properly !!
    */
    if( ! current_theme_supports( ‘avia_enable_widgets_block_editor’ ) )
    {
    // Disables the block editor from managing widgets in the Gutenberg plugin.
    add_filter( ‘gutenberg_use_widgets_block_editor’, ‘__return_false’ );

    // Disables the block editor from managing widgets.
    add_filter( ‘use_widgets_block_editor’, ‘__return_false’ );
    }

    /*
    * if you run a child theme and don’t want to load the default functions.php file
    * set the global var below in you childthemes function.php to true:
    *
    * example:
    *
    * global $avia_config;
    * $avia_config[‘use_child_theme_functions_only’] = true;
    *
    *
    * The default functions.php file will then no longer be loaded. You need to make sure then
    * to include framework and functions that you want to use by yourself.
    *
    * This is only recommended for advanced users
    */
    if( isset( $avia_config[‘use_child_theme_functions_only’] ) )
    {
    return;
    }

    add_filter( ‘wp_nav_menu_args’, ‘my_custom_wp_nav_menu_args’ );

    /**
    * Display Different Menu Based on Page Type
    */
    add_filter(‘wp_nav_menu_args’, ‘my_custom_wp_nav_menu_args’);

    function my_custom_wp_nav_menu_args($args) {
    if (isset($args[‘theme_location’]) && $args[‘theme_location’] === ‘avia’) {
    // List of specific page IDs
    $specific_pages = array(3814, 3827, 3825, 3823, 3821, 3818, 3816);

    if (is_page($specific_pages)) {
    $args[‘menu’] = ‘Lil Audreys menu’;
    } else {
    $args[‘menu’] = ‘Audreys Market Menu’;
    }
    }
    return $args;
    }

    /**
    * Disable loading of non active plugin support
    */
    $checkfile = trailingslashit( pathinfo( __FILE__, PATHINFO_DIRNAME ) ) . ‘config-include.php’;
    if( file_exists( $checkfile ) )
    {
    require_once $checkfile;
    }

    /*
    * create a global var which stores the ids of all posts which are displayed on the current page. It will help us to filter duplicate posts

    #1464260

    In reply to: Plugin file editor

    Hey Ad-Min747,

    Enfold does not hide that alternative, maybe it’s done by your hosting provider?

    Best regards,
    Rikard

    Hi,

    Thanks for letting us know, 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

    #1464254

    In reply to: underline menu

    Hi,

    Thanks for the update, and a nice weekend to you too. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1464248

    Topic: Plugin file editor

    in forum Enfold
    Ad-Min747
    Participant

    Hi,
    probably a question not on your side but…does Enfold hide deactivate the “plugin file editor”?
    I have to use it but…just can’t find him (??).
    Something miss in the Enfold settings which hide it?
    Any idea?

    Sorry to ask. I expect it’s not on your side but in case of.
    Best

    Hey Ad-Min747,

    Did you check your settings under Enfold->General Styling->Typography?

    Best regards,
    Rikard

    #1464239

    In reply to: bug

    Hey aschierl,

    Does the same problem occur if you update to the latest version (6.0.2) of the theme? https://kriesi.at/documentation/enfold/theme-update/

    Best regards,
    Rikard

    #1464236

    In reply to: underline menu

    Hey rixi,

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

    .avia-menu-fx {
      height: 5px;
    }

    Best regards,
    Rikard

    Hi,

    Thanks for that. Please follow this to create a token: https://kriesi.at/documentation/enfold/theme-registration/

    If you should need further help, then please let us know on which page we can see the problem that you are having.

    Best regards,
    Rikard

    #1464228

    Topic: bug

    in forum Enfold
    AlexW22
    Participant

    Hello,
    i had problems editing my page.
    I got someone to fix it with a patch. however the patch will not work when updated next.
    Please check the info and try to fix it for future updates.
    Looking forward to your reply!

    here is the problem:

    Regarding the issue, the currently installed Enfold theme (Version: 5.6.10 ) Child (Version: 1.0.0 ) isn’t prepared when a table’s row doesn’t have a “row_style” attribute. So when the “row_style” is empty, it’s causing the critical error. For now, I’ve patched the Enfold theme so it will work, even when the “row_style” is empty. Below is the path to the file I patched:

    wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.php

    I replaced these lines:
    if( strpos( $ul[‘attr’][ $key ][‘row_style’], ‘avia-pricing-row’ ) !== false )
    {
    $content = preg_replace( ‘!(\$|€|¥|£|¢|¤|%|‰|¢|¤|£|¥|€)!’ , ‘<span class=”currency-symbol”>$1</span>’, $content );
    }

    $output .= “<li class='{$ul[‘attr’][$key][‘row_style’]}’>”;

    ==========

    With these lines:
    if ( empty($ul[‘attr’][ $key ][‘row_style’]) ) {
    $output .= “

  • “;
    } else {
    if( strpos( $ul[‘attr’][ $key ][‘row_style’], ‘avia-pricing-row’ ) !== false )
    {
    $content = preg_replace( ‘!(\$|€|¥|£|¢|¤|%|‰|¢|¤|£|¥|€)!’ , ‘<span class=”currency-symbol”>$1</span>’, $content );
    }

    $output .= “<li class='{$ul[‘attr’][$key][‘row_style’]}’>”;
    }

    Might be worth raising this issue to the Enfold theme, so they’ll fix this in future versions. Because as of now, if you update the Enfold theme, this patch will be overwritten.

Bruno
Participant

Hi. I am working on a copy of the site, in staging, updating the theme lost the footer setup.

FOOTER RIGHT site online

in staging it continues to keep the basic settings, as if “my” 3 widgets are not there (as in the online site).

https://ibb.co/0s5CTpx
https://ibb.co/dr2RgXG

I checked in parallel, the configurations of widgets and Enfold panel are the same. From the staging site I tried deleting the widgets but it still keeps the basic settings.

The site in staging is under protection, if you can support me without logging into the backend fine, otherwise I will unblock your accesses. Thank you for your support. Best regards. Bruno

#1464224
Schmidtgrafisk
Participant

Hey Enfold

I am about to design a new frontpage, and hide all the other pages.
How do I hide the pages, are there any know pitfalls doing this.

Thanks
Alan ;)

bemodesign
Participant

Hi, this one is tricky. because all my pages have Transparent Headers, but I need the home page to be different colors if possible.
I have the colors set in Advanced Settings and Transparency Menu Color

Is it possible to change the Home page font colors for the main and rollover only?

thanks

Hey fingarE,

Thank you for the inquiry.

The latest version of the theme is 6.0.2. Please update the theme to the latest version, then toggle or temporarily disable the Enfold > Performance > File Compression settings. Let us know if the issue persists.

Best regards,
Ismael

#1464208

Hey bemodesign,

Thank you for the inquiry.

You can adjust the style of the H4 element in the Enfold > Advanced Styling panel. To adjust the vertical spacing, try adjusting the Line Height property.

Best regards,
Ismael

#1464202

Hey amyncuih,

Thank you for the inquiry.

You may need to edit the enfold/includes/loop-index.php file and add the button below this code, around line 547:

//share links on single post
avia_social_share_links_single_post();

Or use the ava_after_content hook in the functions.php file:

add_action('ava_after_content', function() {
    // add button here
}, 10);

Best regards,
Ismael

#1464191

I am trying to change language from english to spanish in the cookies pop up. But I could change text only. And as you may see at this gyazo (picture from my website):

https://gyazo.com/734601f734df7a1086f9a16b6a8d0195

The checkboxes of every section of the cookies are in english and i can not change it from ENFOLD THEME OPTIONS -> Privacy and Cookies -> COOKIE HANDLING.

APPRECIATE HELP AND SOLUTION PLEASE

fingarE
Participant

When I create a new page, the advanced layout builder is not available as an option. Reverting back to 6.5.5 fixes the problem. The problem occurs with or without all plugins disabled.

#1464176

Hi,

Themeforest is a part of Envato. Please follow this guide: https://kriesi.at/documentation/enfold/theme-registration/

Best regards,
Rikard

#1464171

In reply to: Info template

Hey Mariarita,

If you need technical support, then please login to the support forum and select to open a new thread in the Enfold sub forum.

Best regards,
Rikard

#1464168

Hi,

Thanks for that. What happens if you enable debug mode under Enfold->Layout Builder->Show advanced options, then copy the shortcodes which will appear under the regular layout window to new pages?

Best regards,
Rikard

#1464166

Topic: Title page font color

in forum Enfold
Bruno
Participant

Hi. I can’t change the title color of the pages, it keeps being white.

https://ibb.co/4sg5qdv

I have also searched in the css but I can’t find any “forcing”. Would you be so kind as to show me where to find, in the Enfold panel, the setup for the page title color? Thank you for your support. Best regards. Bruno

#1464159

Hi,
Glad to hear that you have this sorted out, 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

#1464156

In reply to: Info template

Hey Mariarita,

Please login to the support forum and start a new thread in the Enfold sub forum for technical support. We would appreciate if you could open a new thread for each of your problems.

Best regards,
Rikard

#1464154

Hey Aeroviews,

Could you try updating the theme to the latest version (6.0.2) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/.

Best regards,
Rikard

#1464138

Hi,

You can create a new thread by clicking this button on the Enfold sub forum: https://imgur.com/a/AnoSPNb, or use this link.

Best regards,
Rikard

Hi BlueSolution,

Please open a new thread and include WordPress admin login details in private, so that we can have a closer look at your site.

Best regards,
Rikard

#1464123
ebenanders
Participant

Dear Enfold Team,

We have a serious problem on a website, the CSS formatting is not being applied. Please help us. You can find the URL in the private field.

Kind regards

#1464118
BlueSolution
Participant

Hi there,
it seems that some update has created major problems on my website, the menù is gone, the footer is gone, pages are messed up.
Until the start of the week everything was looking right…
Could you please help me

  • This topic was modified 1 year, 5 months ago by BlueSolution.
bemodesign
Participant

1. I need to move the Captions and button Up a bit on mobile view. Can you get me some CSS for this please?

2. The Text also runs off the page instead of resizing to fit.

3. The image stretches when I increase this code below. Is there a way to just increase the height without distorting the image? Like maybe it just increases the magnify and zooms in on an area?

@media only screen and (max-width: 768px) {
.responsive #top .avia-slideshow-inner, .responsive #top .avia-slideshow-inner img {
height: 550px !important;
}
}

Thanks!!

  • This topic was modified 1 year, 5 months ago by bemodesign.
Viewing 30 results - 6,151 through 6,180 (of 244,025 total)