Viewing 30 results - 2,881 through 2,910 (of 7,495 total)
  • Author
    Search Results
  • #972783

    look on google search for the playsinline and webkit-playsinline – it seems to be correlating if a background video starts on autostart or not.
    but i think that the input field of enfold video does not accept those parameters. So we had to add this on source code.
    i will have a look if that will help

    See here how it works on advanced layerslider : https://webers-testseite.de/weber/
    playsinline and muted parameters set – but this was a selfhosted video

    and this f.e. will start on modern mobile browsers

    <video playsinline autoplay loop muted preload="metadata" style="min-width:100vw; min-height:56vw;" >
     		<source src="/wp-content/uploads/background.mp4" type="video/mp4">
    		<img src="/wp-content/uploads/film-fallback.jpg" title="Your browser does not support the video tag">
    </video>
    • This reply was modified 7 years, 9 months ago by Guenni007.
    #972457
    kevinmcgillivray
    Participant

    Hi all. I thought someone else might find this useful at some point so I’m posting these instructions. I have a client who wants subtitles on many of their pages like this:

    After rooting around in the Enfold source code I found that the functions for displaying the title includes functionality for adding a subtitle but it looks like it’s not quite implemented. Based on Enfold’s code, it looks like the subtitle would be stored in post meta data but there’s no functionality to add a metabox for entering the data and so the code to grab the metadata is commented out.

    So after a little more searching, I found that the arguments for the title function can be filtered and added the following function to functions.php

    add_filter( 'avf_title_args' ,'pwm_title_args', 2,10);
    function pwm_title_args( $args, $id ){
    	if( $id && is_page( $id ) ):
    		$args['subtitle'] = get_post_meta( $id, 'subtitle', true );
    	endif;
    	return $args;
    }

    This function could be modified to handle any kind of post type or archive but I wouldn’t recommend it on standard posts. Since the header for individual posts displays the title “Blog – Latest News” a post-specific subtitle may not make sense unless the title was changed to something post-specific, too.

    At any rate, next, I edited a page in the backend, clicked Screen Options in the upper right corner to expand it and checked the “Custom Fields” checkbox. Then, I scrolled down to the Custom Fields metabox clicked Enter New (near the bottom) and created metadata named “subtitle” with the value “This is the subtitle”.

    When I browsed the page on the front end, I saw this:

    Obviously, it still has to be styled but it’s pretty close to what I’m looking for. I hope this article is useful to someone else. If you use this, please leave a comment about it. Thanks!

    #972289

    Okay…
    I should’ve searched more.

    I found it under:
    Dashboard > Enfold > Shop Option > Header Shopping Cart Icon

    There I choose what I need.

    It was my mistake to open the topic, Kindly close it.

    Thank you

    #972241

    In reply to: Pre-Sale Questions

    René
    Guest

    Hey Rikard,

    thank you for your quick response. Of course your are the authors of Enfold! And of course my questions are about the Enfold Theme. Doing all the research, I guess I mixed things up a bit. :)

    @1 – then I know now where to buy in case

    @2 – the whole Envato concept is puzzeling me.

    Again, thank you for your quick response!

    Best regards,
    René

    #972189

    Hey a3brown4,

    Please refer to a solution here
    https://kriesi.at/support/topic/enfold-search-results-2/#post-690269

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #972035

    Hi,

    Thank you for using Enfold.

    Use this filter to exclude the footer page from the ajax search.

    
    add_filter('avf_ajax_search_query', 'avf_ajax_search_query_mod', 10, 1);
    function avf_ajax_search_query_mod( $search_parameters )
    {
    	$footer = avia_get_option( 'footer_page', 0 );
    	$defaults = array('numberposts' => 5, 'post_type' => array( 'post', 'portfolio', 'document' ), 'post__not_in' => array($footer), 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    	$_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
    	$search_parameters = array_merge( $defaults, $_REQUEST );
    	return $search_parameters;
    }

    Best regards,
    Ismael

    #971768

    Hi,

    Thank you for your understanding. It still requires quite a lot of customization to achieve the header layout as described above.

    1. Go to Enfold > Header > Header Layout > Menu and Logo position > Logo left, menu below
    Now you have the logo on top and main menu at the bottom which can handle the mega menu.

    2. Add a header widget area as mentioned here https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    3. Position the header widget to the right using the custom CSS.

    4. You can add HTML code for the menu in the widget area and style it using custom CSS.
    Please check this link for menu examples https://codepen.io/search/pens?q=horizontal%20menu&page=1&order=popularity&depth=everything&show_forks=false

    I am very sorry to tell you that this type of customization is not covered by our support.

    I hope you will find the above links helpful.

    Best regards,
    Vinay

    #971683

    ctab-1.png and topbar.png are no enfold images ( that makes me wonder – because they seems to be in the enfold/images/ folder. )

    On Source code the pngs aren’t found – so i think you have to install a database search tool like search and replace to find the source of the error.
    Maybe if you login to your mysql and repair or optimise your database will solve the problem allready.

    PS :
    seems to loaded via Greensock.js. – and this is part of advanced Layerslider – so have a look if you have on advanced layerslider ( maybe imported sliders) these links

    #971383

    Hi – thanks so much for your response!

    I don’t think I’m explaining the problem well! Or maybe there is a good reason I’m not aware of, and am happy to be corrected.

    Many Enfold users who use your new Footer Template function will have this very funky 404 result using Enfold’s Search. I’m sure it’s not your intention.

    To illustrate, please perform these steps:

    Go to the site.
    In the search, located in the menu, enter “Copyright”.
    You’ll see “Footer Template” first in the list of results. (“Copyright” is of course in the footer)
    Click on Footer Template link in the search results list.
    You get a Page Not Found result.

    Enfold’s Footer Template should be invisible. It’s a major new function but has this flaw and displays in Enfold’s search results.

    Your definition of the Footer Template: “This page is currently selected to be displayed as footer. (Set in Enfold » Footer). Therefore it can not be accessed directly by the general public in your front end.”

    However, here it is, showing up as a search result. It also creates a 404 situation.

    #971143
    This reply has been marked as private.
    bobfurgo
    Participant

    I have a video that’s been uploaded to wordpress, it’s not playing on the fullscreen slider after the most recent Enfold update. I’ve searched the threads and haven’t found a solution yet. Could somebody please assist?

    Thanks!

    #970834

    Topic: Mp3 player

    Satyaa
    Guest

    Hello, I am looking for a template a d like enfold for it’s flexibility and fast response but can’t find any mp3 player. Do you have mo3 player possibility? After searching on Themeforest, i like enfold the best but I am musician and can’t find the appropriate theme on enfold for this. The enfold template for bands is weak and not complete.

    #970676

    Topic: LearnDash Plugin

    in forum Enfold
    web4smallbusiness
    Participant

    Good morning

    I was wondering if you may be able to help me please. I have installed a LearnDash LMS plugin on my website which has Enfold theme, but when I go to create courses and lessons, I don’t get the option to use the Advanced Builder.

    Can you please let me know how I can apply the theme to my courses, lessons and topics.

    I have done a bit of research and saw an article which talks about creating custom posts. But I am not really sure how to do that.

    I have added the website details and my login information below.

    Many many thanks
    Ivana

    #970587

    Hi Rikard,
    I don’t know if anything is blocking search engines in the .htaccess file, I don’t know what sort of code I’d be looking for…
    Would you have an example?
    The thing that worries me is that so many Enfold files are not loading properly, what could be causing this?
    Thanks,
    Lisa

    #970581
    archviz masters
    Participant

    Hi Enfold team,

    In Google Search Console there is notification about mobile usability for my website archvizmasters.com:
    – viewport not set,
    – clickable elements too close together,
    – text to small to read.

    There are 10 pages market by Google with problems, when I open the list I can see not actual pages of website but some files in enfold theme directory, there are few of them:
    https://archvizmasters.com/en/wp-content/themes/enfold/framework/
    https://archvizmasters.com/en/wp-content/themes/enfold/framework/css/
    https://archvizmasters.com/en/wp-content/themes/enfold/framework/php/avia_shortcodes/img/

    Can you please help me solving this.

    Thanks.

    #970580
    archviz masters
    Participant

    Hi Enfold team,

    I have got a notification in Google Search Console for my website archvizmasters.com that there is some 5xx problem vith this link on my website:

    https://archvizmasters.com/en/wp-content/themes/enfold/framework/php/wordpress-importer/avia-import-class.php

    Is there any way of fixint this?

    Thanks.

    #970550

    It is disappointing to see that the patch for the bug was not included in this week’s update. This has happened repeatedly, where a patch is published on the forum and it takes several versions of Enfold before it is finally included in the production version.

    Clearly you guys need to look at your bug tracking / resolution system. We are looking at more than a month Enfold has had a bug with the custom 404 page now, which causes soft 404 errors on Google search console.

    #970500

    Thank you Victoria! I see the fonts have changed now, brilliant. And understand that changing the footer colour is what changes the other colours.

    I did a quick search on the forum and want to check my understanding, so that I can do this to my other Enfold theme websites:
    – you go into Appearance>Editor
    – choose to edit Theme functions i.e. functions.php
    – then add the following into the ‘selected file content area’

    add_filter(‘avf_merge_assets’, function() {
    return ‘none’;
    });

    – and hit ‘Update File’

    Is that correct?

    Thanks for helping!
    Stephen

    Hello Richard, thank you very much for your answer, the last problem was solved, but now I present another problem in another created site, apparently it is for a compatibility of woocommerce with some update I share the site and the errors

    – No llegan los correos de los pedidos ni al usuario, ni al Admin (por lo pronto tenemos habilitado paypal)
    – Los pedidos llegan como PENDIENTE DE PAGO (ya está configurado para que el método sea Captura, y Paypal si valida el pago)
    – Al querer cambiar el status de un pedido (de pendiente de pago, a completado) nos sale un error 500 y nos sale este error:

    Cynthia, verifica que tanto el tema como los plugins son compatibles con la versión de PHP que tienes actualmente.

    También veo que tienes este error_log relacionado con el tema que te recomiendo verificar:

    [08-Jun-2018 19:08:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function current_theme_supports() in /home2/roadstor/public_html/wp-content/themes/enfold/framework/php/auto-updates/auto-updates.php:6
    Stack trace:
    #0 {main}
    thrown in /home2/roadstor/public_html/wp-content/themes/enfold/framework/php/auto-updates/auto-updates.php on line 6

    Por lo pronto son los errores que encontramos, que salían en el hosting anterior y salen ahora también. Te mando lo siguiente también, es el estado del sistema:

    `
    ### WordPress Environment ###

    Home URL: https://roadstore.mx
    Site URL: https://roadstore.mx
    WC Version: 3.4.2
    Log Directory Writable: ✔
    WP Version: 4.9.6
    WP Multisite: –
    WP Memory Limit: 516 MB
    WP Debug Mode: ✔
    WP Cron: ✔
    Language: es_ES
    External object cache: –

    ### Server Environment ###

    Server Info: Apache
    PHP Version: 7.1.18 – Recomendamos usar la versión 7.2 o superior de PHP para un mayor rendimiento y seguridad. Cómo actualizar tu versión de PHP
    PHP Post Max Size: 6 MB
    PHP Time Limit: 3000
    PHP Max Input Vars: 1000
    cURL Version: 7.54.0
    OpenSSL/1.0.2k

    SUHOSIN Installed: –
    MySQL Version: 10.1.31-MariaDB-cll-lve
    Max Upload Size: 64 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔

    ### Database ###

    WC Database Version: 3.2.5
    WC Database Prefix: muBTPrxs
    MaxMind GeoIP Database: ✔
    Tamaño total de la base de datos: 266.03MB
    Tamaño de los datos de la base de datos: 189.38MB
    Tamaño del índice de la base de datos: 76.65MB
    muBTPrxswoocommerce_sessions: Datos: 0.01MB + Índice: 0.00MB
    muBTPrxswoocommerce_api_keys: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswoocommerce_attribute_taxonomies: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswoocommerce_downloadable_product_permissions: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswoocommerce_order_items: Datos: 0.01MB + Índice: 0.01MB
    muBTPrxswoocommerce_order_itemmeta: Datos: 0.04MB + Índice: 0.03MB
    muBTPrxswoocommerce_tax_rates: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswoocommerce_tax_rate_locations: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswoocommerce_shipping_zones: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswoocommerce_shipping_zone_locations: Datos: 0.04MB + Índice: 0.05MB
    muBTPrxswoocommerce_shipping_zone_methods: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswoocommerce_payment_tokens: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswoocommerce_payment_tokenmeta: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswoocommerce_log: Datos: 0.00MB + Índice: 0.00MB
    adminnotification_inbox: Datos: 0.09MB + Índice: 0.05MB
    admin_assert: Datos: 0.02MB + Índice: 0.00MB
    admin_role: Datos: 0.02MB + Índice: 0.03MB
    admin_rule: Datos: 0.05MB + Índice: 0.03MB
    admin_user: Datos: 0.02MB + Índice: 0.02MB
    api2_acl_attribute: Datos: 0.02MB + Índice: 0.03MB
    api2_acl_role: Datos: 0.02MB + Índice: 0.03MB
    api2_acl_rule: Datos: 0.02MB + Índice: 0.02MB
    api2_acl_user: Datos: 0.02MB + Índice: 0.02MB
    api_assert: Datos: 0.02MB + Índice: 0.00MB
    api_role: Datos: 0.02MB + Índice: 0.03MB
    api_rule: Datos: 0.02MB + Índice: 0.03MB
    api_session: Datos: 0.02MB + Índice: 0.03MB
    api_user: Datos: 0.02MB + Índice: 0.00MB
    aw_blog: Datos: 0.02MB + Índice: 0.02MB
    aw_blog_cat: Datos: 0.02MB + Índice: 0.00MB
    aw_blog_cat_store: Datos: 0.02MB + Índice: 0.00MB
    aw_blog_comment: Datos: 0.02MB + Índice: 0.00MB
    aw_blog_post_cat: Datos: 0.02MB + Índice: 0.00MB
    aw_blog_store: Datos: 0.02MB + Índice: 0.00MB
    aw_blog_tags: Datos: 0.02MB + Índice: 0.02MB
    belvg_facebook_customer: Datos: 0.02MB + Índice: 0.00MB
    belvg_twitter_customer: Datos: 0.02MB + Índice: 0.00MB
    buyshoparallax: Datos: 0.02MB + Índice: 0.00MB
    buyshopflex: Datos: 0.02MB + Índice: 0.00MB
    buyshoprevolution: Datos: 0.02MB + Índice: 0.00MB
    captcha_log: Datos: 0.02MB + Índice: 0.00MB
    cataloginventory_stock: Datos: 0.02MB + Índice: 0.00MB
    cataloginventory_stock_item: Datos: 0.16MB + Índice: 0.11MB
    cataloginventory_stock_status: Datos: 0.08MB + Índice: 0.09MB
    cataloginventory_stock_status_idx: Datos: 0.08MB + Índice: 0.09MB
    cataloginventory_stock_status_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalogrule: Datos: 0.02MB + Índice: 0.02MB
    catalogrule_affected_product: Datos: 0.02MB + Índice: 0.00MB
    catalogrule_customer_group: Datos: 0.02MB + Índice: 0.03MB
    catalogrule_group_website: Datos: 0.02MB + Índice: 0.05MB
    catalogrule_product: Datos: 0.42MB + Índice: 0.94MB
    catalogrule_product_price: Datos: 0.02MB + Índice: 0.06MB
    catalogrule_website: Datos: 0.02MB + Índice: 0.03MB
    catalogsearch_fulltext: Datos: 0.30MB + Índice: 0.11MB
    catalogsearch_query: Datos: 0.34MB + Índice: 0.39MB
    catalogsearch_result: Datos: 1.52MB + Índice: 0.91MB
    catalog_category_anc_categs_index_idx: Datos: 0.02MB + Índice: 0.03MB
    catalog_category_anc_categs_index_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_category_anc_products_index_idx: Datos: 0.02MB + Índice: 0.02MB
    catalog_category_anc_products_index_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_category_entity: Datos: 0.02MB + Índice: 0.03MB
    catalog_category_entity_datetime: Datos: 0.02MB + Índice: 0.06MB
    catalog_category_entity_decimal: Datos: 0.02MB + Índice: 0.06MB
    catalog_category_entity_int: Datos: 0.02MB + Índice: 0.06MB
    catalog_category_entity_text: Datos: 0.02MB + Índice: 0.06MB
    catalog_category_entity_varchar: Datos: 0.02MB + Índice: 0.06MB
    catalog_category_flat_store_1: Datos: 0.02MB + Índice: 0.05MB
    catalog_category_flat_store_2: Datos: 0.02MB + Índice: 0.05MB
    catalog_category_flat_store_3: Datos: 0.02MB + Índice: 0.05MB
    catalog_category_product: Datos: 0.09MB + Índice: 0.06MB
    catalog_category_product_index: Datos: 0.42MB + Índice: 0.69MB
    catalog_category_product_index_enbl_idx: Datos: 0.02MB + Índice: 0.02MB
    catalog_category_product_index_enbl_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_category_product_index_idx: Datos: 0.02MB + Índice: 0.02MB
    catalog_category_product_index_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_compare_item: Datos: 0.08MB + Índice: 0.20MB
    catalog_eav_attribute: Datos: 0.02MB + Índice: 0.03MB
    catalog_product_bundle_option: Datos: 0.02MB + Índice: 0.02MB
    catalog_product_bundle_option_value: Datos: 0.02MB + Índice: 0.02MB
    catalog_product_bundle_price_index: Datos: 0.02MB + Índice: 0.03MB
    catalog_product_bundle_selection: Datos: 0.02MB + Índice: 0.03MB
    catalog_product_bundle_selection_price: Datos: 0.02MB + Índice: 0.02MB
    catalog_product_bundle_stock_index: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_enabled_index: Datos: 0.02MB + Índice: 0.02MB
    catalog_product_entity: Datos: 0.11MB + Índice: 0.09MB
    catalog_product_entity_datetime: Datos: 0.25MB + Índice: 0.55MB
    catalog_product_entity_decimal: Datos: 0.22MB + Índice: 0.47MB
    catalog_product_entity_gallery: Datos: 0.02MB + Índice: 0.06MB
    catalog_product_entity_group_price: Datos: 0.13MB + Índice: 0.27MB
    catalog_product_entity_int: Datos: 0.25MB + Índice: 0.53MB
    catalog_product_entity_media_gallery: Datos: 0.17MB + Índice: 0.14MB
    catalog_product_entity_media_gallery_value: Datos: 0.19MB + Índice: 0.08MB
    catalog_product_entity_text: Datos: 0.39MB + Índice: 0.61MB
    catalog_product_entity_tier_price: Datos: 0.34MB + Índice: 0.55MB
    catalog_product_entity_varchar: Datos: 1.52MB + Índice: 2.64MB
    catalog_product_flat_1: Datos: 0.02MB + Índice: 0.06MB
    catalog_product_flat_2: Datos: 0.02MB + Índice: 0.06MB
    catalog_product_flat_3: Datos: 0.02MB + Índice: 0.06MB
    catalog_product_index_eav: Datos: 0.06MB + Índice: 0.06MB
    catalog_product_index_eav_decimal: Datos: 0.02MB + Índice: 0.06MB
    catalog_product_index_eav_decimal_idx: Datos: 0.02MB + Índice: 0.06MB
    catalog_product_index_eav_decimal_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_eav_idx: Datos: 0.06MB + Índice: 0.06MB
    catalog_product_index_eav_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_group_price: Datos: 0.11MB + Índice: 0.13MB
    catalog_product_index_price: Datos: 0.14MB + Índice: 0.27MB
    catalog_product_index_price_bundle_idx: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_index_price_bundle_opt_idx: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_index_price_bundle_opt_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_price_bundle_sel_idx: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_index_price_bundle_sel_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_price_bundle_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_price_cfg_opt_agr_idx: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_index_price_cfg_opt_agr_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_price_cfg_opt_idx: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_index_price_cfg_opt_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_price_downlod_idx: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_index_price_downlod_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_price_final_idx: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_index_price_final_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_price_idx: Datos: 0.14MB + Índice: 0.19MB
    catalog_product_index_price_opt_agr_idx: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_index_price_opt_agr_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_price_opt_idx: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_index_price_opt_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_price_tmp: Datos: 0.00MB + Índice: 0.00MB
    catalog_product_index_tier_price: Datos: 0.11MB + Índice: 0.13MB
    catalog_product_index_website: Datos: 0.02MB + Índice: 0.02MB
    catalog_product_link: Datos: 0.02MB + Índice: 0.06MB
    catalog_product_link_attribute: Datos: 0.02MB + Índice: 0.02MB
    catalog_product_link_attribute_decimal: Datos: 0.02MB + Índice: 0.05MB
    catalog_product_link_attribute_int: Datos: 0.02MB + Índice: 0.05MB
    catalog_product_link_attribute_varchar: Datos: 0.02MB + Índice: 0.05MB
    catalog_product_link_type: Datos: 0.02MB + Índice: 0.00MB
    catalog_product_option: Datos: 0.02MB + Índice: 0.02MB
    catalog_product_option_price: Datos: 0.02MB + Índice: 0.05MB
    catalog_product_option_title: Datos: 0.02MB + Índice: 0.05MB
    catalog_product_option_type_price: Datos: 0.02MB + Índice: 0.05MB
    catalog_product_option_type_title: Datos: 0.02MB + Índice: 0.05MB
    catalog_product_option_type_value: Datos: 0.02MB + Índice: 0.02MB
    catalog_product_relation: Datos: 0.11MB + Índice: 0.06MB
    catalog_product_super_attribute: Datos: 0.02MB + Índice: 0.03MB
    catalog_product_super_attribute_label: Datos: 0.02MB + Índice: 0.05MB
    catalog_product_super_attribute_pricing: Datos: 0.02MB + Índice: 0.05MB
    catalog_product_super_link: Datos: 0.11MB + Índice: 0.20MB
    catalog_product_website: Datos: 0.11MB + Índice: 0.06MB
    checkout_agreement: Datos: 0.02MB + Índice: 0.00MB
    checkout_agreement_store: Datos: 0.02MB + Índice: 0.02MB
    cms_block: Datos: 0.02MB + Índice: 0.00MB
    cms_block_store: Datos: 0.02MB + Índice: 0.02MB
    cms_page: Datos: 0.13MB + Índice: 0.02MB
    cms_page_store: Datos: 0.02MB + Índice: 0.02MB
    core_cache: Datos: 0.02MB + Índice: 0.02MB
    core_cache_option: Datos: 0.02MB + Índice: 0.00MB
    core_cache_tag: Datos: 0.02MB + Índice: 0.02MB
    core_config_data: Datos: 0.11MB + Índice: 0.09MB
    core_email_template: Datos: 0.14MB + Índice: 0.05MB
    core_flag: Datos: 0.02MB + Índice: 0.02MB
    core_layout_link: Datos: 0.02MB + Índice: 0.03MB
    core_layout_update: Datos: 0.02MB + Índice: 0.02MB
    core_resource: Datos: 0.02MB + Índice: 0.00MB
    core_session: Datos: 0.02MB + Índice: 0.00MB
    core_store: Datos: 0.02MB + Índice: 0.06MB
    core_store_group: Datos: 0.02MB + Índice: 0.03MB
    core_translate: Datos: 0.02MB + Índice: 0.03MB
    core_url_rewrite: Datos: 0.02MB + Índice: 0.11MB
    core_variable: Datos: 0.02MB + Índice: 0.02MB
    core_variable_value: Datos: 0.02MB + Índice: 0.05MB
    core_website: Datos: 0.02MB + Índice: 0.05MB
    coupon_aggregated: Datos: 0.02MB + Índice: 0.05MB
    coupon_aggregated_order: Datos: 0.02MB + Índice: 0.05MB
    coupon_aggregated_updated: Datos: 0.02MB + Índice: 0.05MB
    cron_schedule: Datos: 0.02MB + Índice: 0.03MB
    customer_address_entity: Datos: 0.02MB + Índice: 0.02MB
    customer_address_entity_datetime: Datos: 0.02MB + Índice: 0.08MB
    customer_address_entity_decimal: Datos: 0.02MB + Índice: 0.08MB
    customer_address_entity_int: Datos: 0.02MB + Índice: 0.08MB
    customer_address_entity_text: Datos: 0.02MB + Índice: 0.06MB
    customer_address_entity_varchar: Datos: 0.02MB + Índice: 0.08MB
    customer_eav_attribute: Datos: 0.02MB + Índice: 0.00MB
    customer_eav_attribute_website: Datos: 0.02MB + Índice: 0.02MB
    customer_entity: Datos: 0.17MB + Índice: 0.39MB
    customer_entity_datetime: Datos: 0.02MB + Índice: 0.08MB
    customer_entity_decimal: Datos: 0.02MB + Índice: 0.08MB
    customer_entity_int: Datos: 0.02MB + Índice: 0.08MB
    customer_entity_text: Datos: 0.02MB + Índice: 0.06MB
    customer_entity_varchar: Datos: 0.50MB + Índice: 1.06MB
    customer_form_attribute: Datos: 0.02MB + Índice: 0.02MB
    customer_group: Datos: 0.02MB + Índice: 0.00MB
    dataflow_batch: Datos: 0.02MB + Índice: 0.05MB
    dataflow_batch_export: Datos: 14.55MB + Índice: 0.19MB
    dataflow_batch_import: Datos: 7.52MB + Índice: 0.41MB
    dataflow_import_data: Datos: 0.02MB + Índice: 0.02MB
    dataflow_profile: Datos: 0.02MB + Índice: 0.00MB
    dataflow_profile_history: Datos: 0.02MB + Índice: 0.02MB
    dataflow_session: Datos: 0.02MB + Índice: 0.00MB
    design_change: Datos: 0.02MB + Índice: 0.02MB
    directory_country: Datos: 0.02MB + Índice: 0.00MB
    directory_country_format: Datos: 0.02MB + Índice: 0.02MB
    directory_country_region: Datos: 0.06MB + Índice: 0.02MB
    directory_country_region_name: Datos: 0.02MB + Índice: 0.02MB
    directory_currency_rate: Datos: 0.02MB + Índice: 0.02MB
    downloadable_link: Datos: 0.02MB + Índice: 0.03MB
    downloadable_link_price: Datos: 0.02MB + Índice: 0.03MB
    downloadable_link_purchased: Datos: 0.02MB + Índice: 0.05MB
    downloadable_link_purchased_item: Datos: 0.02MB + Índice: 0.05MB
    downloadable_link_title: Datos: 0.02MB + Índice: 0.05MB
    downloadable_sample: Datos: 0.02MB + Índice: 0.02MB
    downloadable_sample_title: Datos: 0.02MB + Índice: 0.05MB
    eav_attribute: Datos: 0.09MB + Índice: 0.06MB
    eav_attribute_group: Datos: 0.02MB + Índice: 0.03MB
    eav_attribute_label: Datos: 0.02MB + Índice: 0.05MB
    eav_attribute_option: Datos: 0.02MB + Índice: 0.02MB
    eav_attribute_option_value: Datos: 0.02MB + Índice: 0.03MB
    eav_attribute_set: Datos: 0.02MB + Índice: 0.03MB
    eav_entity: Datos: 0.02MB + Índice: 0.03MB
    eav_entity_attribute: Datos: 0.09MB + Índice: 0.19MB
    eav_entity_datetime: Datos: 0.02MB + Índice: 0.11MB
    eav_entity_decimal: Datos: 0.02MB + Índice: 0.11MB
    eav_entity_int: Datos: 0.02MB + Índice: 0.11MB
    eav_entity_store: Datos: 0.02MB + Índice: 0.03MB
    eav_entity_text: Datos: 0.02MB + Índice: 0.08MB
    eav_entity_type: Datos: 0.02MB + Índice: 0.02MB
    eav_entity_varchar: Datos: 0.02MB + Índice: 0.11MB
    eav_form_element: Datos: 0.02MB + Índice: 0.06MB
    eav_form_fieldset: Datos: 0.02MB + Índice: 0.03MB
    eav_form_fieldset_label: Datos: 0.02MB + Índice: 0.03MB
    eav_form_type: Datos: 0.02MB + Índice: 0.03MB
    eav_form_type_entity: Datos: 0.02MB + Índice: 0.02MB
    gift_message: Datos: 0.02MB + Índice: 0.00MB
    googlecheckout_notification: Datos: 0.02MB + Índice: 0.00MB
    importexport_importdata: Datos: 0.02MB + Índice: 0.00MB
    index_event: Datos: 2.52MB + Índice: 0.34MB
    index_process: Datos: 0.02MB + Índice: 0.02MB
    index_process_event: Datos: 0.02MB + Índice: 0.02MB
    log_customer: Datos: 0.13MB + Índice: 0.08MB
    log_quote: Datos: 0.11MB + Índice: 0.00MB
    log_summary: Datos: 0.02MB + Índice: 0.00MB
    log_summary_type: Datos: 0.02MB + Índice: 0.00MB
    log_url: Datos: 17.55MB + Índice: 11.55MB
    log_url_info: Datos: 51.59MB + Índice: 0.00MB
    log_visitor: Datos: 20.55MB + Índice: 0.00MB
    log_visitor_info: Datos: 36.58MB + Índice: 0.00MB
    log_visitor_online: Datos: 0.02MB + Índice: 0.05MB
    muBTPrxscodigo_postal: Datos: 0.29MB + Índice: 0.04MB
    muBTPrxscommentmeta: Datos: 0.00MB + Índice: 0.01MB
    muBTPrxscomments: Datos: 0.02MB + Índice: 0.02MB
    muBTPrxshustle_modules: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxshustle_modules_meta: Datos: 0.00MB + Índice: 0.01MB
    muBTPrxslayerslider: Datos: 0.03MB + Índice: 0.00MB
    muBTPrxslayerslider_revisions: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxslinks: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxsoptions: Datos: 1.67MB + Índice: 0.09MB
    muBTPrxspmxi_files: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxspmxi_history: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxspmxi_imports: Datos: 0.06MB + Índice: 0.00MB
    muBTPrxspmxi_posts: Datos: 0.03MB + Índice: 0.01MB
    muBTPrxspmxi_templates: Datos: 0.02MB + Índice: 0.00MB
    muBTPrxspostmeta: Datos: 3.81MB + Índice: 1.29MB
    muBTPrxsposts: Datos: 0.58MB + Índice: 0.18MB
    muBTPrxsrevslider_css: Datos: 0.09MB + Índice: 0.00MB
    muBTPrxsrevslider_layer_animations: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxsrevslider_navigations: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxsrevslider_sliders: Datos: 0.01MB + Índice: 0.00MB
    muBTPrxsrevslider_slides: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxsrevslider_static_slides: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxstermmeta: Datos: 0.00MB + Índice: 0.01MB
    muBTPrxsterms: Datos: 0.00MB + Índice: 0.01MB
    muBTPrxsterm_relationships: Datos: 0.03MB + Índice: 0.06MB
    muBTPrxsterm_taxonomy: Datos: 0.00MB + Índice: 0.01MB
    muBTPrxsusermeta: Datos: 0.02MB + Índice: 0.02MB
    muBTPrxsusers: Datos: 0.00MB + Índice: 0.01MB
    muBTPrxswc_download_log: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswc_webhooks: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswoof_query_cache: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_also_bought: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_cart_contents: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_cart_item_meta: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_checkout_forms: Datos: 0.00MB + Índice: 0.01MB
    muBTPrxswpsc_claimed_stock: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_coupon_codes: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_currency_list: Datos: 0.02MB + Índice: 0.01MB
    muBTPrxswpsc_download_status: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_meta: Datos: 0.00MB + Índice: 0.01MB
    muBTPrxswpsc_product_rating: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_purchase_logs: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_purchase_meta: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_region_tax: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_submited_form_data: Datos: 0.00MB + Índice: 0.00MB
    muBTPrxswpsc_visitors: Datos: 0.00MB + Índice: 0.01MB
    muBTPrxswpsc_visitor_meta: Datos: 0.00MB + Índice: 0.01MB
    muBTPrxsyoast_seo_links: Datos: 0.01MB + Índice: 0.01MB
    muBTPrxsyoast_seo_meta: Datos: 0.01MB + Índice: 0.01MB
    newsletter_problem: Datos: 0.02MB + Índice: 0.03MB
    newsletter_queue: Datos: 0.02MB + Índice: 0.02MB
    newsletter_queue_link: Datos: 0.02MB + Índice: 0.05MB
    newsletter_queue_store_link: Datos: 0.02MB + Índice: 0.02MB
    newsletter_subscriber: Datos: 0.33MB + Índice: 0.14MB
    newsletter_template: Datos: 0.02MB + Índice: 0.05MB
    oauth_consumer: Datos: 0.02MB + Índice: 0.06MB
    oauth_nonce: Datos: 0.00MB + Índice: 0.00MB
    oauth_token: Datos: 0.02MB + Índice: 0.06MB
    paypal_cert: Datos: 0.02MB + Índice: 0.02MB
    paypal_payment_transaction: Datos: 0.02MB + Índice: 0.02MB
    paypal_settlement_report: Datos: 0.02MB + Índice: 0.02MB
    paypal_settlement_report_row: Datos: 0.02MB + Índice: 0.02MB
    persistent_session: Datos: 0.02MB + Índice: 0.06MB
    poll: Datos: 0.02MB + Índice: 0.02MB
    poll_answer: Datos: 0.02MB + Índice: 0.02MB
    poll_store: Datos: 0.02MB + Índice: 0.02MB
    poll_vote: Datos: 0.02MB + Índice: 0.02MB
    product_alert_price: Datos: 0.02MB + Índice: 0.05MB
    product_alert_stock: Datos: 0.02MB + Índice: 0.05MB
    rating: Datos: 0.02MB + Índice: 0.03MB
    rating_entity: Datos: 0.02MB + Índice: 0.02MB
    rating_option: Datos: 0.02MB + Índice: 0.02MB
    rating_option_vote: Datos: 0.02MB + Índice: 0.03MB
    rating_option_vote_aggregated: Datos: 0.02MB + Índice: 0.03MB
    rating_store: Datos: 0.02MB + Índice: 0.02MB
    rating_title: Datos: 0.02MB + Índice: 0.02MB
    report_compared_product_index: Datos: 0.11MB + Índice: 0.39MB
    report_event: Datos: 6.52MB + Índice: 18.58MB
    report_event_types: Datos: 0.02MB + Índice: 0.00MB
    report_viewed_product_aggregated_daily: Datos: 0.02MB + Índice: 0.05MB
    report_viewed_product_aggregated_monthly: Datos: 0.02MB + Índice: 0.05MB
    report_viewed_product_aggregated_yearly: Datos: 0.02MB + Índice: 0.05MB
    report_viewed_product_index: Datos: 5.52MB + Índice: 20.58MB
    review: Datos: 0.02MB + Índice: 0.05MB
    review_detail: Datos: 0.05MB + Índice: 0.05MB
    review_entity: Datos: 0.02MB + Índice: 0.00MB
    review_entity_summary: Datos: 0.02MB + Índice: 0.02MB
    review_status: Datos: 0.02MB + Índice: 0.00MB
    review_store: Datos: 0.02MB + Índice: 0.02MB
    salesrule: Datos: 0.02MB + Índice: 0.02MB
    salesrule_coupon: Datos: 0.02MB + Índice: 0.05MB
    salesrule_coupon_usage: Datos: 0.02MB + Índice: 0.03MB
    salesrule_customer: Datos: 0.02MB + Índice: 0.03MB
    salesrule_customer_group: Datos: 0.02MB + Índice: 0.03MB
    salesrule_label: Datos: 0.02MB + Índice: 0.05MB
    salesrule_product_attribute: Datos: 0.02MB + Índice: 0.05MB
    salesrule_website: Datos: 0.02MB + Índice: 0.03MB
    sales_bestsellers_aggregated_daily: Datos: 0.02MB + Índice: 0.05MB
    sales_bestsellers_aggregated_monthly: Datos: 0.02MB + Índice: 0.05MB
    sales_bestsellers_aggregated_yearly: Datos: 0.02MB + Índice: 0.05MB
    sales_billing_agreement: Datos: 0.02MB + Índice: 0.03MB
    sales_billing_agreement_order: Datos: 0.02MB + Índice: 0.02MB
    sales_flat_creditmemo: Datos: 0.02MB + Índice: 0.09MB
    sales_flat_creditmemo_comment: Datos: 0.02MB + Índice: 0.03MB
    sales_flat_creditmemo_grid: Datos: 0.02MB + Índice: 0.17MB
    sales_flat_creditmemo_item: Datos: 0.02MB + Índice: 0.02MB
    sales_flat_invoice: Datos: 0.02MB + Índice: 0.09MB
    sales_flat_invoice_comment: Datos: 0.02MB + Índice: 0.03MB
    sales_flat_invoice_grid: Datos: 0.02MB + Índice: 0.14MB
    sales_flat_invoice_item: Datos: 0.02MB + Índice: 0.02MB
    sales_flat_order: Datos: 0.05MB + Índice: 0.14MB
    sales_flat_order_address: Datos: 0.02MB + Índice: 0.02MB
    sales_flat_order_grid: Datos: 0.02MB + Índice: 0.19MB
    sales_flat_order_item: Datos: 0.11MB + Índice: 0.03MB
    sales_flat_order_payment: Datos: 0.02MB + Índice: 0.02MB
    sales_flat_order_status_history: Datos: 0.02MB + Índice: 0.03MB
    sales_flat_quote: Datos: 1.52MB + Índice: 0.13MB
    sales_flat_quote_address: Datos: 1.52MB + Índice: 0.09MB
    sales_flat_quote_address_item: Datos: 0.02MB + Índice: 0.05MB
    sales_flat_quote_item: Datos: 0.22MB + Índice: 0.06MB
    sales_flat_quote_item_option: Datos: 0.52MB + Índice: 0.08MB
    sales_flat_quote_payment: Datos: 0.02MB + Índice: 0.02MB
    sales_flat_quote_shipping_rate: Datos: 0.05MB + Índice: 0.02MB
    sales_flat_shipment: Datos: 0.02MB + Índice: 0.09MB
    sales_flat_shipment_comment: Datos: 0.02MB + Índice: 0.03MB
    sales_flat_shipment_grid: Datos: 0.02MB + Índice: 0.14MB
    sales_flat_shipment_item: Datos: 0.02MB + Índice: 0.02MB
    sales_flat_shipment_track: Datos: 0.02MB + Índice: 0.05MB
    sales_invoiced_aggregated: Datos: 0.02MB + Índice: 0.03MB
    sales_invoiced_aggregated_order: Datos: 0.02MB + Índice: 0.03MB
    sales_order_aggregated_created: Datos: 0.02MB + Índice: 0.03MB
    sales_order_aggregated_updated: Datos: 0.02MB + Índice: 0.03MB
    sales_order_status: Datos: 0.02MB + Índice: 0.00MB
    sales_order_status_label: Datos: 0.02MB + Índice: 0.02MB
    sales_order_status_state: Datos: 0.02MB + Índice: 0.00MB
    sales_order_tax: Datos: 0.02MB + Índice: 0.02MB
    sales_order_tax_item: Datos: 0.02MB + Índice: 0.05MB
    sales_payment_transaction: Datos: 0.02MB + Índice: 0.06MB
    sales_recurring_profile: Datos: 0.02MB + Índice: 0.05MB
    sales_recurring_profile_order: Datos: 0.02MB + Índice: 0.03MB
    sales_refunded_aggregated: Datos: 0.02MB + Índice: 0.03MB
    sales_refunded_aggregated_order: Datos: 0.02MB + Índice: 0.03MB
    sales_shipping_aggregated: Datos: 0.02MB + Índice: 0.03MB
    sales_shipping_aggregated_order: Datos: 0.02MB + Índice: 0.03MB
    sendfriend_log: Datos: 0.02MB + Índice: 0.03MB
    shipping_tablerate: Datos: 0.02MB + Índice: 0.02MB
    sitemap: Datos: 0.02MB + Índice: 0.02MB
    tag: Datos: 0.02MB + Índice: 0.03MB
    tag_properties: Datos: 0.02MB + Índice: 0.02MB
    tag_relation: Datos: 0.02MB + Índice: 0.08MB
    tag_summary: Datos: 0.02MB + Índice: 0.03MB
    tax_calculation: Datos: 0.02MB + Índice: 0.08MB
    tax_calculation_rate: Datos: 0.02MB + Índice: 0.05MB
    tax_calculation_rate_title: Datos: 0.02MB + Índice: 0.05MB
    tax_calculation_rule: Datos: 0.02MB + Índice: 0.03MB
    tax_class: Datos: 0.02MB + Índice: 0.00MB
    tax_order_aggregated_created: Datos: 0.02MB + Índice: 0.03MB
    tax_order_aggregated_updated: Datos: 0.02MB + Índice: 0.03MB
    weee_discount: Datos: 0.02MB + Índice: 0.05MB
    weee_tax: Datos: 0.02MB + Índice: 0.06MB
    widget: Datos: 0.02MB + Índice: 0.02MB
    widget_instance: Datos: 0.02MB + Índice: 0.00MB
    widget_instance_page: Datos: 0.02MB + Índice: 0.02MB
    widget_instance_page_layout: Datos: 0.02MB + Índice: 0.03MB
    wishlist: Datos: 0.02MB + Índice: 0.03MB
    wishlist_item: Datos: 0.02MB + Índice: 0.05MB
    wishlist_item_option: Datos: 0.02MB + Índice: 0.02MB
    xmlconnect_application: Datos: 0.02MB + Índice: 0.03MB
    xmlconnect_config_data: Datos: 0.02MB + Índice: 0.00MB
    xmlconnect_history: Datos: 0.02MB + Índice: 0.02MB
    xmlconnect_images: Datos: 0.02MB + Índice: 0.02MB
    xmlconnect_notification_template: Datos: 0.02MB + Índice: 0.02MB
    xmlconnect_queue: Datos: 0.02MB + Índice: 0.02MB

    ### Post Type Counts ###

    attachment: 436
    avia_framework_post: 35
    carousels: 12
    custom_css: 1
    customize_changeset: 6
    nav_menu_item: 183
    page: 22
    popup: 1
    popup_theme: 6
    portfolio: 4
    post: 1
    product: 126
    product_variation: 619
    revision: 19
    shop_coupon: 11
    shop_order: 50
    shop_order_refund: 8
    slides: 34
    wafs: 1
    wc_afrsm: 3
    wpcf7_contact_form: 8

    #970196
    doug123
    Participant

    Hi! what a great theme update. Excellent work. Now that we can designate a page as a Footer Template, I’d like to exclude it from the ajax search in the header. Because when it comes up, visitors get a “Page not Found” result. Perhaps I’m missing something?

    Can this be done? It seems like something important to add to the theme’s features.

    Thanks So much!

    #970178

    In reply to: Product Slider Sorting

    This reply has been marked as private.
    #970068

    Hey Joe,

    Thanks for contacting us!

    Even though we have not tested the plugin with Enfold and cannot guarantee it would work correctly, with a quick forum search it seem like there are some users using Event Espresso plugin with Enfold. Enfold is fully compatible with The Event Calendar and Events Calendar Pro too in case you would consider one of them.

    I hope that helps! Let us know if you have any other questions :)

    Best regards,
    Yigit

    #969916
    sundara88
    Participant

    Hi,
    A long explanation for this question, please bear with me:
    In my Yoast general settings I get this warning:
    Your homepage cannot be indexed by search engines. This is very bad for SEO and should be fixed.

    It links to this page:

    The first thing it recommends to do is: Please test the URL in Google’s mobile friendly test

    This what I did and the result says: the Page is Mobile Friendly. But on the screenshot I can see that the stylesheets didn’t load.
    At the top of the page it says there are page loading issues.
    Page partially loaded
    Not all page resources could be loaded. This can affect how Google sees and understands your page. Fix availability problems for any resources that can affect how Google understands your page.

    Below it, it says: 50 page resources couldn’t be loaded
    and when you scroll down you can see all docs that loaded or didn’t or had other errors like this:

    http://www.mintaccounting.com.au/new/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css?ver=4.9.6

    I noticed a lot of these documents that didn’t load or had an error warning next to it are Enfold theme documents.

    There are also Javascript errors like this:
    Uncaught SyntaxError: Unexpected end of input. http://www.mintaccounting.com.au/new/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=4.2.6-78496d1:12

    My question is do you guys know of anything that might be causing this? How can I fix this and make my page SEO friendly?
    Thank you so much for your time,
    Lisa

    hemn
    Participant

    Hi , I have updated Enfold recently for a client . After update, product type structured data was disappeared .
    When I change theme it will appear again for woocommerce products .
    Test tool: https://search.google.com/structured-data/testing-tool

    Happy Enfold User
    Participant

    Goodday,

    I have two questions.

    1.) I have serveral post overviews on (parts of) pages, built with the blog layout and the a search and filter plugin. I want the custom title and read more (created with ACF) in a specific color based on the category they belong to. The posts are created in ALB. The overview pages are generated. in normal enfold blog lay-outs and custom build pages in Search and Filter (see private content for example). In the blog layout I can’t see any category in the code, so I can’t define a color for it in css and in the search and filter I don’t know how to generate this. Can you perhaps help me with this? I can’t find anything in postslider.php where i can change this.

    2.) In the same overviews like mentioned before I want the excerpt (preview of text) show over the post title and image when hovering over the post. Can you put me in the right direction?

    Hope to hear from you soon.

    Regards

    #969713
    asinger777
    Participant

    I’m using the standard enfold theme and I added the woocommerce plugin to it. How can I add a search box to the Shop page?

    #969306

    I have now purchased SearchWP. Also, to customise my search results page, do I just create a page called search and the Enfold will know that this is the default page to display search results?

    Alex

    #969219

    Topic: Structured data errors

    in forum Enfold
    seb332
    Participant

    Hi,
    Since Enfold 4.4 (ad even with the last version of Enfold), there is several srtuctured data which are broken.

    See this example with ==> https://search.google.com/structured-data/testing-tool?url=https://sebastienpierrepack.com/comment-traduire-theme-wordpress-francais/#url=https%3A%2F%2Fsebastienpierrepack.com%2Fcomment-traduire-theme-wordpress-francais%2F

    I though, it was the rating plugin which was the rpoblem but it is not the case. I have desactived for a moment to see if the plugin was the culprit.

    Best regards.

    • This topic was modified 7 years, 9 months ago by seb332.
    #968089

    Hi Guys,
    Sorry to barge in on this one, but I was about to report the same issue, but searched the forum first. I have many sites (some old, some new) and moved them all recently to SiteGround. All are running PHP 7.0 and the Siteground SG Optimizer provides the following message in the dashboard: You website doesn’t run on the recommended by SiteGround PHP version. When I go to the SG Optimizer and run the check, i get the same error message:
    FILE: /home/mywebsites/public_html/sitedomain.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/external/JSqueeze.php
    ————————————————————————————————————————————————
    FOUND 3 ERRORS AFFECTING 3 LINES
    ————————————————————————————————————————————————
    409 | ERROR | preg_replace() – /e modifier is deprecated since PHP 5.5 and removed since PHP 7.0
    494 | ERROR | preg_replace() – /e modifier is deprecated since PHP 5.5 and removed since PHP 7.0
    510 | ERROR | preg_replace() – /e modifier is deprecated since PHP 5.5 and removed since PHP 7.0
    ————————————————————————————————————————————————
    If this code does not exist, what is the best way to update to php 7.1?
    Should we delete the theme and upload it again? (I have a child theme installed)

    Many thanks,
    H

    #968073
    lisanneg
    Participant

    One of our customers is experiencing problems trying to select an image in an Enfold easy slider. Click on the ‘change’ button does not appear to do anything while the Javascript console shows the following error message: Assignment to read-only properties is not allowed in strict mode. This only occurs in Internet Explorer (up to the latest version) and does not occur in Chrome or Edge. Unfortunately the user cannot switch to another browser. Research on the internet suggests this is a Javascript error for an action that is allowed by Chrome or Edge but not by Internet Explorer. We are using the 4.4.1 version of Enfold.

    This blog contains an analysis of this error.

    Any idea what is causing this in Enfold?
    Thanks.

Viewing 30 results - 2,881 through 2,910 (of 7,495 total)