-
Search Results
-
Hello dear tech; people,
Not a developer and starting to get confused with the css blabla…I’m just trying to set a 1px border to a picture ALB element in one of my pages.
In a post of the forum, I’ve grabbed that code that works just fine:.avia-image-container { border: 1px solid lightgray; padding: 15px; }
But when I inserted it on my quick css zone, it creates a border to all image all over the site.
Not what I want.
So I’ve been searching the forum and try to follow the help for custom ID attributes which if I understand well should give a border to only the element I want.
I’ve named my image element customID attribute: rv-cadre-image-portfolio wich is quite unique.
Then… I’ve tried every single possibilities to write the right quick css code but couldn’t manage to make it work.Anyone please to help me finsihing and writting this damned little piece of code…. I will thank her/him for ever.
Hi guys,
Open this ticket just to bring a solution I found to show search results products as the shop overview 3.0.0 (with the thumbnails, the first gallery image switch and the price).
Look to find the loop-search.php in enfold/includes, make a copy of it and upload an edited version to your child-theme subfolder includes (commonly it is : enfold-child/includes).
Then look the line 33 :
echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
Replace it by :
$searchimage = get_the_post_thumbnail( $the_id, 'shop_catalog' ); $searchimagealt = avia_woocommerce_gallery_first_thumbnail( $the_id , 'shop_catalog' ); echo "<div class='thumbs'><div class='thumbnail_container'>{$searchimagealt}{$searchimage}</div></div>"; echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
And the line 52 :
echo "<{$heading} class='post-title entry-title {$css}'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".get_the_title()."</a></{$heading}>";
By :
if( get_post_type() === "product" ) { $product = wc_get_product( $the_id ); $price = $product->get_price(); $currencysymbol = get_woocommerce_currency_symbol(); $pricesuffix = $product->get_price_suffix(); echo "<a href='".get_permalink()."'><div class='inner_product_search_table'><div class='inner_product_search_cell'><{$heading} class='post-title entry-title {$css}'>".get_the_title()."</{$heading}><span class='price'><span class='woocommerce-Price-amount amount'><bdi>{$price}<span class='woocommerce-Price-currencySymbol'>{$currencysymbol}</span></bdi></span>{$pricesuffix}</span></div></div></a>"; } else { echo "<a href='".get_permalink()."'><div class='inner_product_search_table'><div class='inner_product_search_cell'><{$heading} class='post-title entry-title {$css}'>".get_the_title()."</{$heading}></div></div></a>"; }
Here is some css to customize the design (to adapt to your project) :
‘/*SEARCH*/
#top.search .template-search .post-entry {
margin: 0 1% 1% 0;
width: 32.6%;
float: left;
clear: none;
}#top.search .template-search .post-entry:nth-of-type(3n) {
margin-right: 0;
}#top.search .template-search .post-entry .search-result-counter, #top.search .template-search .post-entry .entry-content, #top.search .template-search .post-entry .post-meta-infos, #top.search .template-search .search_form_field .author-extra-border, #top.search .template-search .search_form_field h4 {
display: none;
}#top.search .template-search .post-entry .image-overlay {
display: none !important;
}#top.search .template-search .post-entry .inner_product_search_table {
width: 100%;
height: 100%;
background: rgba(0,0,0,0.35);
position: absolute;
top: 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}#top.search .template-search .post-entry .inner_product_search_cell {
position: relative;
top: 50%;
transform: translateY(-50%);
color: #fff;
text-align: center;
padding: 15px;
}#top.search .template-search .post-entry > .entry-content-wrapper {
padding: 0;
}/*#top.search .template-search .post-entry .entry-content-header > a {
display: inline !important;
}*/#top.search .template-search .post-entry:hover .thumbnail_container > img.avia-product-hover {
opacity: 1;
filter: alpha(opacity=100);
}#top.search .template-search .post-entry:hover {
cursor: pointer;
}#top.search .template-search .post-entry:hover .inner_product_search_table {
opacity: 0;
}/*#top.search .template-search .post-entry .avia-product-hover .thumbnail_container > img:first-child {
position: absolute;
top: 0;
left: 0;
opacity: 0;
filter: alpha(opacity=00);
-webkit-transition: all ease-in-out 0.3s;
-moz-transition: all ease-in-out 0.3s;
transition: all ease-in-out 0.3s;
-webkit-backface-visibility: hidden;
}*/#top.search .template-search .post-entry .post-title {
font-size: 20px;
line-height: 20px;
text-transform: uppercase;
color: #fff;
margin: 0;
padding: 5px 0;
font-weight: normal;
}#top.search .template-search .page-heading-container {
border: 0;
margin: 0;
padding: 0 0 20px;
}#top.search .template-search .extra-mini-title {
margin: 0;
padding-bottom: 20px;
}#top.search .template-search .search_form_field h4 + p {
margin-top: 0;
}/*#top.search .template-search .post-entry .post-title a:hover {
text-decoration: none;
}*/’I’ve also chosen to limit search results to products and posts (not pages) so I’ve add to my functions.php (child-theme) :
/*Filter search results by type (only post and product allows) excluding page*/ function wpb_add_cpt_search($query) { if ( !is_admin() && $query->is_main_query() ) { if ($query->is_search) { $query->set('post_type', array('product', 'post')); } } }
Hope this will help you not loosing two days of your life :)
Hallo,
wie lässt sich per CSS Code im Produktraster ein Schatten hinter der Artikelabbildung erzeugen?
(Shop Seite mit Avia > Plugin Ergänzungen > Produktraster > Benutzerdefinierte CSS-Klasse)folgender Code dort eingetragen funktioniert nicht:
{box-shadow: 10px 10px 50px #B4B4B4;}Enfold Einstellungen sind unter “Shop”:
Produktlayout auf Übersichtseiten = minimal ohne Rahmen
Produkt Galerie = Standard Enfold Galerietransl.:
Hello,
How can a shadow behind the article image be created in the product grid using CSS code?
(Shop page with Avia> Plugin additions> Product grid> Custom CSS class)the following code entered there does not work:
{box-shadow: 10px 10px 50px # B4B4B4;}Enfold settings are under “Shop”:
Product layout on overview pages = minimally without frame
Product gallery = standard enfold galleryTopic: Saving didn't work error
Hello,
I am developing a new website at https://www.brandtwist.com/p/ and ran into an issue of receiving a “Saving didn’t work! Please reload the page and try again.” message, which is the result of a 502 error. I haven’t encountered this error before on any of the other sites that I’ve developed with the Enfold theme and started occurring after importing native WordPress Users XML export and WooCommerce orders XML export. After turning on WP_DEBUG, it looks like it is due to undefined indexes/offsets in “/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php”. The issue resolves itself when not using the Enfold theme, which makes me believe it is isolated to the Enfold theme. I have also tried deleting and regenerating “/wp-content/uploads/dynamic_avia/enfold_child.css”, and trying to set the dynamic styles related to the PHP errors, all to no avail.
I’ve created a testing copy of the site at https://www.brandtwist.com/p/test/ and included logins below. Attached are the serialized style settings from the database and a snippet of the error_log with the PHP errors encountered.
Thank you
enfold-dynamic-styles-php-error-log.txt
[02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined offset: 2 in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 36 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: bg in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 100 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: bg2 in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 101 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: primary in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 102 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: secondary in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 103 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: color in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 104 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: border in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 105 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: img in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 108 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: img in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 114 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: border in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 105 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: img in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 108 [02-Sep-2020 22:53:49 UTC] PHP Notice: Undefined index: img in /home/xylfhuj1ww8x/public_html/p/test/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 114
enfold-settings-database-serialized.txt
a:1:{s:4:”avia”;a:60:{s:9:”frontpage”;s:0:””;s:9:”undefined”;s:53:”default_slideshow_target::.live-alternate_color.borde”;s:8:”blogpage”;s:0:””;s:4:”logo”;s:93:”https://www.brandtwist.com/p/test/wp-content/uploads/2020/08/BrandTwist_logo_padded_trans.png”;s:7:”favicon”;s:83:”https://www.brandtwist.com/p/test/wp-content/uploads/2020/08/BrandTwist_favicon.png”;s:9:”preloader”;s:8:”disabled”;s:21:”preloader_transitions”;s:21:”preloader_transitions”;s:14:”preloader_logo”;s:0:””;s:15:”lightbox_active”;s:15:”lightbox_active”;s:15:”error404_custom”;s:0:””;s:13:”error404_page”;s:0:””;s:16:”maintenance_mode”;s:0:””;s:16:”maintenance_page”;s:0:””;s:24:”enable_wp_classic_editor”;s:0:””;s:31:”preprocess_shortcodes_in_header”;s:0:””;s:16:”color-body_style”;s:9:”stretched”;s:17:”color-frame_width”;s:2:”20″;s:15:”header_position”;s:10:”header_top”;s:20:”layout_align_content”;s:20:”content_align_center”;s:18:”sidebarmenu_sticky”;s:18:”conditional_sticky”;s:19:”sidebarmenu_widgets”;s:0:””;s:18:”sidebarmenu_social”;s:8:”disabled”;s:17:”responsive_active”;s:17:”responsive_active”;s:15:”responsive_size”;s:6:”1310px”;s:13:”content_width”;s:2:”73″;s:14:”combined_width”;s:3:”100″;s:12:”color_scheme”;s:4:”Blue”;s:24:”colorset-header_color-bg”;s:7:”#ffffff”;s:25:”colorset-header_color-bg2″;s:7:”#f8f8f8″;s:29:”colorset-header_color-primary”;s:7:”#b22c90″;s:31:”colorset-header_color-secondary”;s:7:”#441f62″;s:27:”colorset-header_color-color”;s:7:”#404040″;s:26:”colorset-header_color-meta”;s:7:”#969696″;s:29:”colorset-header_color-heading”;s:7:”#404040″;s:28:”colorset-header_color-border”;s:7:”#beb1c8″;s:25:”colorset-header_color-img”;s:60:”{{AVIA_BASE_URL}}images/background-images/ios-linen-dark.png”;s:33:”colorset-header_color-customimage”;s:0:””;s:25:”colorset-header_color-pos”;s:8:”top left”;s:28:”colorset-header_color-repeat”;s:9:”no-repeat”;s:28:”colorset-header_color-attach”;s:6:”scroll”;s:22:”colorset-main_color-bg”;s:7:”#ffffff”;s:23:”colorset-main_color-bg2″;s:7:”#f8f8f8″;s:27:”colorset-main_color-primary”;s:7:”#b22c90″;s:29:”colorset-main_color-secondary”;s:7:”#441f62″;s:25:”colorset-main_color-color”;s:7:”#000000″;s:24:”colorset-main_color-meta”;s:7:”#969696″;s:27:”colorset-main_color-heading”;s:7:”#441f62″;s:26:”colorset-main_color-border”;s:7:”#ebebeb”;s:23:”colorset-main_color-img”;s:0:””;s:31:”colorset-main_color-customimage”;s:0:””;s:23:”colorset-main_color-pos”;s:8:”top left”;s:26:”colorset-main_color-repeat”;s:9:”no-repeat”;s:26:”colorset-main_color-attach”;s:6:”scroll”;s:27:”colorset-alternate_color-bg”;s:7:”#beb1c8″;s:28:”colorset-alternate_color-bg2″;s:7:”#a32fa3″;s:32:”colorset-alternate_color-primary”;s:7:”#b22c90″;s:34:”colorset-alternate_color-secondary”;s:7:”#441f62″;s:30:”colorset-alternate_color-color”;s:7:”#ffffff”;s:29:”colorset-alternate_color-meta”;s:7:”#ebebeb”;s:32:”colorset-alternate_color-heading”;s:7:”#441f62″;}}
I don’t know how to clean that page from this code.
I have disabled and removed Visual composer.
I don’t have woocommerce files on Enfold Child.### WordPress Environment ###
WordPress address (URL): https://outlet.florens.it
Site address (URL): https://outlet.florens.it
WC Version: 4.4.1
REST API Version: ✔ 1.0.15
WC Blocks Version: ✔ 3.1.0
Action Scheduler Version: ✔ 3.1.6
WC Admin Version: ✔ 1.4.0
Log Directory Writable: ✔
WP Version: 5.5
WP Multisite: –
WP Memory Limit: 768 MB
WP Debug Mode: –
WP Cron: ✔
Language: it_IT
External object cache: –### Server Environment ###
Server Info: Apache
PHP Version: 7.3.20
PHP Post Max Size: 128 MB
PHP Time Limit: 120
PHP Max Input Vars: 3000
cURL Version: 7.66.0
OpenSSL/1.1.1g-fipsSUHOSIN Installed: –
MySQL Version: 5.7.26-29-log
Max Upload Size: 128 MB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔### Database ###
WC Database Version: 4.3.3
WC Database Prefix: vmktf_
Dimensione totale database: 93.65MB
Dimensione dati database: 69.08MB
Dimensione indice database: 24.57MB
vmktf_woocommerce_sessions: Dati: 0.03MB + indice: 0.02MB + motore InnoDB
vmktf_woocommerce_api_keys: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_woocommerce_attribute_taxonomies: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_woocommerce_downloadable_product_permissions: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
vmktf_woocommerce_order_items: Dati: 0.09MB + indice: 0.05MB + motore InnoDB
vmktf_woocommerce_order_itemmeta: Dati: 1.52MB + indice: 0.42MB + motore InnoDB
vmktf_woocommerce_tax_rates: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
vmktf_woocommerce_tax_rate_locations: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
vmktf_woocommerce_shipping_zones: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_woocommerce_shipping_zone_locations: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
vmktf_woocommerce_shipping_zone_methods: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_woocommerce_payment_tokens: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_woocommerce_payment_tokenmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_woocommerce_log: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_actionscheduler_actions: Dati: 0.02MB + indice: 0.11MB + motore InnoDB
vmktf_actionscheduler_claims: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_actionscheduler_groups: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_actionscheduler_logs: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_adtribes_my_conversions: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_blogmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_blogs: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_commentmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_comments: Dati: 0.28MB + indice: 0.30MB + motore InnoDB
vmktf_ewwwio_images: Dati: 0.01MB + indice: 0.01MB + motore MyISAM
vmktf_ewwwio_queue: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_hustle_modules: Dati: 0.00MB + indice: 0.00MB + motore MyISAM
vmktf_hustle_modules_meta: Dati: 0.00MB + indice: 0.01MB + motore MyISAM
vmktf_icl_content_status: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_icl_core_status: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_icl_flags: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_icl_languages: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_icl_languages_translations: Dati: 0.20MB + indice: 0.14MB + motore InnoDB
vmktf_icl_locale_map: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_icl_message_status: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_icl_mo_files_domains: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_icl_node: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_icl_reminders: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_icl_strings: Dati: 4.52MB + indice: 7.23MB + motore InnoDB
vmktf_icl_string_packages: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_icl_string_pages: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_icl_string_positions: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_icl_string_status: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_icl_string_translations: Dati: 5.52MB + indice: 2.52MB + motore InnoDB
vmktf_icl_string_urls: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_icl_translate: Dati: 1.52MB + indice: 0.05MB + motore InnoDB
vmktf_icl_translate_job: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_icl_translations: Dati: 0.45MB + indice: 1.17MB + motore InnoDB
vmktf_icl_translation_batches: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_icl_translation_status: Dati: 1.52MB + indice: 0.05MB + motore InnoDB
vmktf_layerslider: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_layerslider_revisions: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_links: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_newsletter: Dati: 0.25MB + indice: 0.09MB + motore InnoDB
vmktf_newsletter_emails: Dati: 1.52MB + indice: 0.00MB + motore InnoDB
vmktf_newsletter_sent: Dati: 1.52MB + indice: 0.66MB + motore InnoDB
vmktf_newsletter_stats: Dati: 1.52MB + indice: 0.41MB + motore InnoDB
vmktf_newsletter_user_logs: Dati: 0.08MB + indice: 0.00MB + motore InnoDB
vmktf_nf_objectmeta: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_nf_objects: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_nf_relationships: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_ninja_forms_fav_fields: Dati: 0.05MB + indice: 0.00MB + motore InnoDB
vmktf_ninja_forms_fields: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_optins: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_optin_meta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_options: Dati: 5.52MB + indice: 0.20MB + motore InnoDB
vmktf_pmxe_exports: Dati: 0.23MB + indice: 0.00MB + motore InnoDB
vmktf_pmxe_google_cats: Dati: 0.39MB + indice: 0.00MB + motore InnoDB
vmktf_pmxe_posts: Dati: 1.52MB + indice: 0.00MB + motore InnoDB
vmktf_pmxe_templates: Dati: 0.03MB + indice: 0.00MB + motore InnoDB
vmktf_pmxi_files: Dati: 0.01MB + indice: 0.00MB + motore MyISAM
vmktf_pmxi_history: Dati: 0.01MB + indice: 0.00MB + motore MyISAM
vmktf_pmxi_images: Dati: 0.06MB + indice: 0.00MB + motore InnoDB
vmktf_pmxi_imports: Dati: 3.20MB + indice: 0.00MB + motore MyISAM
vmktf_pmxi_posts: Dati: 0.07MB + indice: 0.03MB + motore MyISAM
vmktf_pmxi_templates: Dati: 0.02MB + indice: 0.00MB + motore MyISAM
vmktf_postmeta: Dati: 18.55MB + indice: 6.03MB + motore InnoDB
vmktf_posts: Dati: 3.52MB + indice: 0.86MB + motore InnoDB
vmktf_pp_login_builder: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_pp_password_reset_builder: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_pp_registration_builder: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_registration_log: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_revslider_css: Dati: 0.14MB + indice: 0.02MB + motore InnoDB
vmktf_revslider_layer_animations: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_revslider_navigations: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_revslider_settings: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_revslider_sliders: Dati: 0.08MB + indice: 0.02MB + motore InnoDB
vmktf_revslider_slides: Dati: 0.17MB + indice: 0.02MB + motore InnoDB
vmktf_revslider_static_slides: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_signups: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
vmktf_site: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_sitemeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_smush_dir_images: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_taxonomymeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_termmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_terms: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_term_relationships: Dati: 0.09MB + indice: 0.06MB + motore InnoDB
vmktf_term_taxonomy: Dati: 0.06MB + indice: 0.03MB + motore InnoDB
vmktf_uji_counter: Dati: 0.00MB + indice: 0.00MB + motore MyISAM
vmktf_uji_subscriptions: Dati: 0.00MB + indice: 0.00MB + motore MyISAM
vmktf_usermeta: Dati: 0.48MB + indice: 0.50MB + motore InnoDB
vmktf_users: Dati: 0.06MB + indice: 0.05MB + motore InnoDB
vmktf_vtprd_purchase_log: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_vtprd_purchase_log_product: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_vtprd_purchase_log_product_rule: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_waiting: Dati: 0.00MB + indice: 0.00MB + motore MyISAM
vmktf_wc_admin_notes: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wc_admin_note_actions: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_wc_category_lookup: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wc_customer_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_wc_download_log: Dati: 0.00MB + indice: 0.00MB + motore MyISAM
vmktf_wc_order_coupon_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_wc_order_product_lookup: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
vmktf_wc_order_stats: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
vmktf_wc_order_tax_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_wc_product_meta_lookup: Dati: 0.27MB + indice: 0.64MB + motore InnoDB
vmktf_wc_reserved_stock: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wc_tax_rate_classes: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_wc_webhooks: Dati: 0.00MB + indice: 0.00MB + motore MyISAM
vmktf_wfblockediplog: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wfblocks7: Dati: 0.00MB + indice: 0.00MB + motore MyISAM
vmktf_wfconfig: Dati: 1.52MB + indice: 0.00MB + motore InnoDB
vmktf_wfcrawlers: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wffilechanges: Dati: 0.00MB + indice: 0.00MB + motore MyISAM
vmktf_wffilemods: Dati: 4.52MB + indice: 0.00MB + motore InnoDB
vmktf_wfhits: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
vmktf_wfhoover: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_wfissues: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
vmktf_wfknownfilelist: Dati: 1.52MB + indice: 0.00MB + motore InnoDB
vmktf_wflivetraffichuman: Dati: 0.00MB + indice: 0.00MB + motore MyISAM
vmktf_wflocs: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wflogins: Dati: 0.30MB + indice: 0.14MB + motore InnoDB
vmktf_wfls_2fa_secrets: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_wfls_settings: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wfnotifications: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wfpendingissues: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
vmktf_wfreversecache: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wfsnipcache: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
vmktf_wfstatus: Dati: 0.16MB + indice: 0.11MB + motore InnoDB
vmktf_wftrafficrates: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wow_countdowns_free: Dati: 0.00MB + indice: 0.00MB + motore MyISAM
vmktf_wpie_template: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
vmktf_wsluserscontacts: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_wslusersprofiles: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_yoast_indexable: Dati: 2.52MB + indice: 0.72MB + motore InnoDB
vmktf_yoast_indexable_hierarchy: Dati: 0.06MB + indice: 0.05MB + motore InnoDB
vmktf_yoast_migrations: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
vmktf_yoast_primary_term: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
vmktf_yoast_seo_links: Dati: 0.06MB + indice: 0.02MB + motore InnoDB
vmktf_yoast_seo_meta: Dati: 1.52MB + indice: 0.00MB + motore InnoDB### Post Type Counts ###
attachment: 2526
avia_framework_post: 33
boxzilla-box: 12
custom_css: 3
customize_changeset: 25
flamingo_contact: 24
flamingo_inbound: 61
footer: 2
mc4wp-form: 2
nav_menu_item: 142
nf_sub: 14
oembed_cache: 7
page: 42
popup: 1
popup_theme: 6
post: 15
product: 41
product_variation: 453
product-feed: 1
revision: 275
shop_coupon: 67
shop_order: 265
shop_order_refund: 9
sidebar: 2
vc_settings_preset: 2
wcct_countdown: 1
wpcdt_countdown: 1
wpcf7_contact_form: 7
xlwcty_thankyou: 1### Security ###
Secure connection (HTTPS): ✔
Hide errors from visitors: ✔### Active Plugins (16) ###
Boxzilla: by ibericode – 3.2.23
Classic Editor: by Contributori WordPress – 1.6
Coming Soon Page, Under Construction & Maintenance Mode by SeedProd: by SeedProd – 5.1.3
Duplica pagina: by mndpsingh287 – 4.2
Google Tag Manager for WordPress: by Thomas Geiger – 1.11.4 – Versione installata non testata con versione attiva di WooCommerce 4.4.1
Google Customer Reviews for WooCommerce: by eCreations – 2.6.12 – Versione installata non testata con versione attiva di WooCommerce 4.4.1
Private Store For WooCommerce: by CodeIncept – 1.0.3 – Versione installata non testata con versione attiva di WooCommerce 4.4.1
SG Optimizer: by SiteGround – 5.6.5
WebP Converter for Media: by Mateusz Gbiorczyk – 1.4.2
Variation Swatches for WooCommerce: by Emran Ahmed – 1.0.85 – Versione installata non testata con versione attiva di WooCommerce 4.4.1
WooCommerce Extra Charges To Payment Gateway (Standard): by hemsingh1 – 1.0.12.9 – Versione installata non testata con versione attiva di WooCommerce 4.4.1
WooCommerce Stripe Gateway: by WooCommerce – 4.5.2 – Versione installata non testata con versione attiva di WooCommerce 4.4.1
WooCommerce: by Automattic – 4.4.1
Wordfence Security: by Wordfence – 7.4.10
Yoast SEO: by Team Yoast – 14.8.1
Smush: by WPMU DEV – 3.6.3### Inactive Plugins (14) ###
Advanced Order Export For WooCommerce: by AlgolPlus – 3.1.5
Contact Form 7: by Takayuki Miyoshi – 5.2.1
Disable Gutenberg: by Jeff Starr – 2.2
Envato Market: by Envato – 2.0.3
HookMeUp – Additional Content for WooCommerce: by GetBowtied – 1.3.1
Magic Embeds: by Miguel Sirvent – 3.0.8
Mr. Tailor Extender: by GetBowtied – 1.3.7
Newsletter: by Stefano Lissa & The Newsletter Team – 6.8.5
NextMove Lite – Thank You Page for WooCommerce: by XLPlugins – 2.12.0 – Versione installata non testata con versione attiva di WooCommerce 4.4.1
WooCommerce Product Feed Manager: by RexTheme – 5.38 – Versione installata non testata con versione attiva di WooCommerce 4.4.1
WP All Export: by Soflyy – 1.2.7
WP All Import – WooCommerce Add-On Pro: by Soflyy – 3.2.2 – Versione installata non testata con versione attiva di WooCommerce 4.4.1
WP All Import Pro: by Soflyy – 4.6.1
WPBakery Page Builder: by Michael M – WPBakery.com – 6.1### Settings ###
API Enabled: ✔
Force SSL: –
Currency: EUR (€)
Currency Position: left_space
Thousand Separator: .
Decimal Separator: ,
Number of Decimals: 2
Taxonomies: Product Types: external (external)
grouped (grouped)
simple (simple)
variable (variable)Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
exclude-from-search (exclude-from-search)
featured (featured)
outofstock (outofstock)
rated-1 (rated-1)
rated-2 (rated-2)
rated-3 (rated-3)
rated-4 (rated-4)
rated-5 (rated-5)Connected to WooCommerce.com: ✔
### WC Pages ###
Shop base: #7458 – /collezione/
Carrello: #42865 – /carrello/
Pagamento: #7452 – /completa-transazione/
Il mio account: #7442 – /my-account/
Termini e condizioni: #44134 – /condizioni-generali-di-vendita/### Theme ###
Name: Enfold Child
Version: 1.0
Author URL: http://kriesi.at
Child Theme: ✔
Parent Theme Name: Enfold
Parent Theme Version: 4.7.4
Parent Theme Author URL: https://kriesi.at
WooCommerce Support: ✔### Templates ###
Overrides: –
### Action Scheduler ###
Completato: 46
Oldest: 2020-07-30 10:39:24 +0200
Newest: 2020-08-26 17:36:36 +0200In attesa: 1
Oldest: 2020-08-29 05:13:58 +0200
Newest: 2020-08-29 05:13:58 +0200`