Viewing 30 results - 2,761 through 2,790 (of 7,495 total)
  • Author
    Search Results
  • #996234
    This reply has been marked as private.
    #996208

    In reply to: Contact form URL?

    Hey mframe,
    As I understand, the contact form posts directly without going to anther url. You can examine the function at:
    enfold\config-templatebuilder\avia-shortcodes\contact
    Sorry, I haven’t used AMP so I hope this helps point you in the right direction.
    My forum search didn’t reveal anything specific that needs to be done to use the contact form with AMP.

    Best regards,
    Mike

    #995911

    Hi Rikards,
    thanks. I am trying to get support from Tribe Events.
    Meanwhile I did some more research on our site with Health Check. Results:
    – Community Events page works fine under theme Twentyseventeen with all the other plugins activated.
    – But even with no other plugins activated it does not work under Enfold or our Enfold child parent.
    Regards
    Klaus

    Hi Güther, thank you so much for getting back at me. I’ll have a look at the post, I have found it before when searching for a solution, but was not sure if it will work. I’ll give it a try, and let you know how it works out.

    Can you also send the dev version of Enfold? I have added my email in the private content

    Thank you,

    Deborah

    #995439

    Hi Dan,

    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

    
    #header #search-2.widget:nth-child(2) {
        margin-top: 5px;
        right: 245px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #995432

    Hey gopipi,
    Sorry I don’t have access to that, but I very certain we are not blocking any IP’s. Are you using Strato webhost?
    I can offer a work around, try downloading the images to your localhost and uploading via ftp to your site.
    Then edit the demo import file at \wp-content\themes\enfold\includes\admin\demo_files\blog-lifestyle.xml
    doing a search and replace for

    http://kriesi.at/themes/enfold-lifestyle-blog/

    and replace with your site url, then you can import the demo though WordPress Import.
    This will import the images from your host instead of our host.
    (If you post your url in the Private Content area, I could do the search and replace for you, if you wish)

    Another option, if you have installed the demo on your localhost, try using this plugin to push the database to your webhost. You will need to install the plugin on both installs and manually upload the images via ftp, but it works very well for troublesome hosts like Strato.

    Best regards,
    Mike

    #995428

    Hi,

    1- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
    CSS Snippet:

    
    .avia_message_box_content {
        text-transform: none;
    }
    
    

    2- Please edit your page and under Layout section, choose to display non-transparent header – https://i.imgur.com/HSxrvHm.png

    3- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
        font-family: 'copse','Helvetica Neue',Helvetica,Arial,sans-serif;
    }
    
    

    Best regards,
    Yigit

    #994268

    but I think this is a storm in a teacup. I really do have several sites running customer sites through a single API key. All pages have however only the embedding of the map, and link only over the info bubble window to the Google route planner.
    I got the first bill now with 0 Euro for the month.
    The link to his location can be found if he should be entered via the Google search. Let the term e.g. in my case – Weber, enter and search for digital services. Then Google may already show you the link to the route planning. Click on it and you will get to a route plan with the destination as above. You can adjust this window to your wishes, i.e. zoom and possibly decentration of your point of view. You will find the link at the top of your browser’s url window. You copy that and put it in:
    <a href=" copied url " target="_blank" rel="noopener">route planner</a>
    You can enter this in the infowindow of your location at Enfold.
    it will look then this way:

    <a href="https://www.google.com/maps/dir/''/Weber,+digitale+Dienstleistung,+Ludwig-Schopp-Stra%C3%9Fe+27,+53117+B (Email address hidden if logged out) ,7.0581663,14z/data=!4m8!4m7!1m0!1m5!1m1!1s0x47bee1bd23796923:0x7fcf775f84623228!2m2!1d7.05482!2d50.75646" target="_blank" rel="noopener">Routenplaner</a>

    I think Google just wants to prevent that e.g. producers of apps make money with their service and the services behind it. I find that somehow legitimate. An operator of a normal site with an embedded map will probably not come to the region where he has to transfer money to Google.

    #994235

    Hi,

    Thank you for using Enfold.

    The new editor alters the default page/post edit link automatically, but you can override that with this in the functions.php file so that you can edit the pages in the advance layout builder while having the option to switch to the gutenberg editor.

    
    /**
     * Registers an additional link in the post/page screens to edit any post/page in Gunterberg
     * and reverts the default edit link back to the classic editor.
     *
     * @since 4.4.2
     *
     * @param  array   $actions Post actions.
     * @param  WP_Post $post    Edited post.
     *
     * @return array          Updated post actions.
     */
    if(!function_exists('avia_builder_gutenberg_add_edit_link'))
    {
        remove_action( 'admin_init', 'gutenberg_add_edit_link_filters' );
    
        function avia_builder_gutenberg_add_edit_link( $actions, $post ) {
            if ( ! is_plugin_active('gutenberg/gutenberg.php') ) {
                return $actions;
            }
    
            $gutenberg = get_edit_post_link( $post->ID, 'raw' );
    
            // Build the classic edit action. See also: WP_Posts_List_Table::handle_row_actions().
            $title       = _draft_or_post_title( $post->ID );
            $edit_action = array(
                'classic' => sprintf(
                    '<a href="%s" aria-label="%s">%s</a>',
                    esc_url( str_replace('&classic-editor', '', $gutenberg) ),
                    esc_attr( sprintf(
                        /* translators: %s: post title */
                        __( 'Edit &#8220;%s&#8221; in the new editor', 'avia_framework' ),
                        $title
                    ) ),
                    __( 'Gutenber Editor', 'avia_framework' )
                ),
            );
    
            // Insert the Classic Edit action after the Edit action.
            $edit_offset = array_search( 'edit', array_keys( $actions ), true );
            $actions     = array_merge(
                array_slice( $actions, 0, $edit_offset + 1 ),
                $edit_action,
                array_slice( $actions, $edit_offset + 1 )
            );
    
            return $actions;
        }
    
        add_filter( 'page_row_actions', 'avia_builder_gutenberg_add_edit_link', 10, 2 );
        add_filter( 'post_row_actions', 'avia_builder_gutenberg_add_edit_link', 10, 2 );
        add_filter('get_edit_post_link', 'avia_builder_gutenberg_edit_post_link', 999, 3);
    }
    
    if(!function_exists('avia_builder_gutenberg_edit_post_link')) {
        /**
         * Set the edit post link to the classic editor.
         *
         * @since 4.4.2
         *
         * @return string $link.
         */
        function avia_builder_gutenberg_edit_post_link($link, $id, $context) {
            return add_query_arg('classic-editor', '', $link);
        }
    }

    After adding the filter, you should see these changes in the pages/posts panel.

    Screenshot: https://imgur.com/a/rj8KSuY

    Best regards,
    Ismael

    #994002

    In reply to: Help with Hacked Site

    Hey jonrouse,

    The quick css is stored in the css file (dynamically generated by Enfold – ) or in the datatbase. I’d recommend to extract the data from the database – use a tool like phpmyadmin to access the database, click on the “search” tab at the top, insert “quick_css” into the search field (without the quotes) and select search “all tables”. Then click “OK”.

    The search should return at least one result in the “wp_options” table, open it and you’ll find the css code :)

    Best regards,
    Dude

    #993595

    update:
    i was thinking that sindce that style block was showing up in the page source, then it must be somewhere in a theme file that i could comment out or something, so i went hunting. i found it in the “functions-enfold.php” file around line 1088, a function called “avia_header_html_custom_height“.

    since this clearly isn’t working with the modified header style we need, i tried copying it over to our child theme & commenting it out. that did not work. so i started researching how i could disable that without messing with the original theme file.

    i found via https://stackoverflow.com/a/39393934/1247334
    to put this in the child theme’s “function.php”

    add_action( 'init', 'remove_my_action' );
        function remove_my_action(){
          remove_action( 'wp_head', 'avia_header_html_custom_height');
    }

    and that worked!!!
    …i think ;-)

    please take a look & let me know if it loads good on your end & if what i did is not just technically okay to do but correct & won’t mess anything else up.

    on my end, the pages load great in Safari, but now there’s a little shift/blink in Chrome & Firefox (argh) – but i’m not sure it’s enough to try & figure out & fix. what do you think?

    thanks.
    -jason.

    #993161

    Hey acscreativenew,

    From a technical point of view this would be possible by using a service like https://ipstack.com/ to locate and identify website visitors by IP address. However Enfold does not support such a feature out of the box and you would need to overwrite major parts of our code (i.e. with a child theme or plugin) to implement the ip location service. I’d recommend to search for a third party wordpress plugin or to hire a developer for this task.

    Best regards,
    Dude

    #993135
    LFK
    Participant

    Hello support,
    I run a woocommerce shop with the enfold theme. google webmasertools reports an error for all shop items: “missing: name”. I have spent hours now to search the error, unfortunately without success. does any of you have a solution to the problem?
    Thanks for any hint.

    Best regards,
    Markus

    I missed the “deactivate jQuery-migrate” and the “Delete old CSS and JS files” options.
    I saved 40KB by using a jpg logo file (I think when I started with the Flashlight theme 5 years ago, I had to use a png file – but I could be wrong).
    The PHP-Memory limit has been 265M for years.

    I also administrate my wife’s homepage (ANNA) where I see the same loading issue (and a Google search confirms that I’m not the only one; not necessarily with Enfold, but the key message is “not all sliders are created equal”). There, instead of using a plugin, I recreated the slider images and downsized them to 100KB. I don’t see any change in loading time though.

    My private replies predominantly said THANK YOU SO MUCH for your help. You made my day(s).
    You spontaneously answered all my (private) questions without even having read them – spooky ;-)

    Best regards,
    Bruno

    • This reply was modified 7 years, 7 months ago by bruwa.
    #992890
    AlyssaMandy
    Participant

    Hello, a few months ago I rebuilt my site http://www.afghanistan-parsa.org using the Enfold theme. Since then, when searching my site on Google, the description says, “No information is available for this page.”

    I followed the “Learn why” instructions on Google to remove the robots.txt and my hosting provider (Bluehost) said it has been removed. I submitted my site to Google to reindex it over a month ago but still no change. They now say it may have to do with my theme. Is that possible? Do you have any advice on how I can get Google to show a proper description for my site?

    Thanks so much,
    Alyssa

    Tony
    Participant

    I would like help on adding a font resize to the header of the Enfold theme I am using at http://neighborsnetworkfl.org

    I have seen lots of sites with a very simple one-click button that cycles through different text sizes so users can adjust the text size for their disability. I have found plugins and widgets that let you add this function to the page in the widget or sidebar areas, like I have done on the right footer of this website. But I would much prefer it be a permanent option maybe to the right of the magnifying glass search function on the navigation menu or even on the top bar. Whatever is easiest.

    Would someone be able to help me? I even have one of the plugin’s codes that could be used, if needed. I just don’t know where to insert it to implement it properly.

    Thank in advance!

    #992363

    Hey Freek,

    Thank you for using Enfold.

    The search icon is already hidden on mobile view. Do you need more assistance with this?

    Best regards,
    Ismael

    #992262

    Hey Ivana,

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

    .avia-search-tooltip input {
        color: white !important;
    }

    Best regards,
    Rikard

    loudcow
    Participant

    Hey there – I’m suddenly getting a “your site is not mobile friendly” on one of my sites using Enfold. I’ve been vigilant with checking this as it’s a ranking factor and it’s always been OK.

    Only change I’ve made to the site is turning on the new performance settings as per the guide and installing Comet Cache.

    Link to site in private content.

    It actually looks great on mobile and all elements clickable but the warning suggests elements too close together now.
    Hoping you can shed light on why it might be happening suddenly.

    It’s when I run the URL through the test here – https://search.google.com/test/mobile-friendly

    Weirdly – In Google Webmaster it says “no mobile usability issues”.

    Just a false positive maybe?

    #991957
    snaggu
    Participant

    Hello everybody.

    I’ve downloaded and installed this beautiful theme, but I have a problem with the Advanced Builder not loading.
    I’ve searched the forum and googled for answers, without any luck.

    – I’ve updated wordpress and have the newest Enfold 4.4.1
    – Cleared my cached and tried different browsers
    – Disabled all plugins
    – Tried re-installing through FileZilla

    Is there anybody that have had same problem and found a solution?

    I hope somebody can help me, so I can get my site up and running :)

    #991953
    daves
    Participant

    Hi. I enabled the Enfold cookie consent message option today and saw it displayed. I clicked OK and it disappeared. Now I’d like to clear the cookie it set so I can see it again to try a different position but can’t seem to find the cookie with searches or in the Chrome cookie list. How can I reset the cookie prompt? Thanks.

    #991752

    Okay I think I “fixed” it for now, and I’m updating this thread in case anyone else in the future has this problem and searches here.

    After reading the update notes for Enfold 4.4.1, I went through it’s new settings and performance features and disabled any plugins that would conflict with new features of Enfold (or you know, just disable all plugins) and it seems to be working alright for now. But I’m still going to go through everything and make sure I’m back to full functionality and will update if there’s any other problems.

    #991744

    Okay, after doing some more searching, reading, and testing…

    I disabled the Enfold theme through FTP, which allowed me to login again, then I did a WordPress update to 4.9.something, whatever the current version is.

    Re-enabled Enfold and activated. And it… sort of works? The website is all… weird. Sizes are all off, the theme settings are all off, image galleries are all wrong, and my front slider images aren’t showing up at all. Cleared the cache, and it’s still very broken.

    So now on-to figuring that out… but in the mean time, if anyone has any idea what happened and what I can do to fix any of this. It would be greatly appreciated.

    • This reply was modified 7 years, 7 months ago by gtsomething.
    #991737
    gtsomething
    Participant

    I updated my Enfold theme through WordPress to the latest version, and immediately afterwards I got this error:

    Fatal error: Call to undefined function apply_filters_deprecated() in /home/ktbpho6/public_html/wp-content/themes/enfold/framework/php/class-framework-widgets.php on line 2234 and my wp-admin page simply shows up blank.

    Which I then searched on here, and a few answers said to update PHP to at least 5.6. After doing that, I got the same error. So I then updated PHP to 7.0 and instead got this error:

    Fatal error: Uncaught Error: Call to undefined function apply_filters_deprecated() in /home/ktbpho6/public_html/wp-content/themes/enfold/framework/php/class-framework-widgets.php:2234 Stack trace: #0 /home/ktbpho6/public_html/wp-includes/widgets.php(560): avia_instagram_widget->__construct() #1 /home/ktbpho6/public_html/wp-includes/widgets.php(681): WP_Widget_Factory->register(‘avia_instagram_…’) #2 /home/ktbpho6/public_html/wp-content/themes/enfold/functions.php(646): register_widget(‘avia_instagram_…’) #3 /home/ktbpho6/public_html/wp-content/themes/enfold/functions.php(650): avia_register_avia_widgets() #4 /home/ktbpho6/public_html/wp-settings.php(329): include(‘/home/ktbpho6/p…’) #5 /home/ktbpho6/public_html/wp-config.php(99): require_once(‘/home/ktbpho6/p…’) #6 /home/ktbpho6/public_html/wp-load.php(29): require_once(‘/home/ktbpho6/p…’) #7 /home/ktbpho6/public_html/wp-blog-header.php(12): require_once(‘/home/ktbpho6/p…’) #8 /home/ktbpho6/public_html/index.php(17): require(‘/home/ktbpho6/p…’) #9 {main} t in /home/ktbpho6/public_html/wp-content/themes/enfold/framework/php/class-framework-widgets.php on line 2234

    And my wp-admin page still comes in as blank.

    Please help!!

    • This topic was modified 7 years, 7 months ago by gtsomething.
    #991586

    Hi hybridE4t,

    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

    #991121

    Hey Joakim,

    Copy the file wp-content/themes/enfold/includes/loop-index.php to your child theme folder (the file path should be wp-content/themes/enfold-child/includes/loop-index.php). Then open up the copied file and search for

    
    echo "<div class='blog-meta'>";
    

    (should be around line 139). You can add your ad banner code above this code line.

    Best regards,
    Dude

    • This reply was modified 7 years, 8 months ago by Dude.

    Hi,

    As far as I know you can use Relevanssi to enhance the product search ( https://www.relevanssi.com/user-manual/woocommerce/ ). You can also combine it with the ajax search function of enfold by adding this code to your child theme functions.php file:

    
    
    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;
    }
    
    

    Best regards,
    Dude

    #990360

    Hi. I recently purchased and installed Enfold onto my WordPress site. Since doing this, I haven’t been able to save any changes. I’ve tried changing the color scheme, the layout, installing demo site. No matter which change I try to make I get one of two error messages; “Saving Didn’t Work. Please Reload The Page And Try Again” or “Importing didn’t work. You may want to try reloading the page and try again”.

    This has been a pretty frustrating experience. I contacted my web guy, who researched the issue, and made some edits to the server in regards to permissions, but it still didn’t help. I then disabled and deleted every plugin I had on the site to see if it was a compatibility issue. I’m still not able to make any edits.

    #990108
    JaneJoyce
    Participant

    Hi there
    Just moved a site to a new hosting space, upgrading Enfold at the same time. The accordian elements on the site were functioning perfectly during installation testing but immediately after the domain transfer, the controls ceased functioning (must be a coincidence?), so the accordians display with all toggles open (and uncloseable) no matter what settings are given to them … see example page link in private content. The settings should be 1 toggle open on loading, multiple toggles open allowed (these are currently set but having no effect).

    WP 4.9.7, Enfold 4.4.1 … only plugins are benign (Duplicate Post, Search Exclude)

    Have tried: setting up a new page with only an accordian on it, dumping the browser cache and reloading, viewing in other browsers … none of these had any effect.

    Ideas?

    Many thanks

    #990073

    Hi,

    i can help you, but for me the question is: where enfold told wordpress to use the compressed and merged files instead of the normal?

    It’s in the config-templatebuilder > avia-template-builder > asset-manager.class.php > “try_minifying_scripts” function. It fails to generate the merged file. You can use the Autoptimize or the BWP Minify plugins temporarily while we debug the issue.

    In the database > _options table, please search for and delete the “aviaAsset_avia-merged-styles” and “aviaAsset_avia-head-scripts” entries. Toggle the theme options again to regenerate the merged scripts and stylesheets. Let us know if it helps.

    Best regards,
    Ismael

Viewing 30 results - 2,761 through 2,790 (of 7,495 total)