-
AuthorPosts
-
March 3, 2019 at 1:40 pm #1073942
Hi
when i use an Enfold-Childtheme there are plenty of conflicts:
– WOOB-Filters dont work (woocommerce filter)
– Tag-Groups dont work
and more.Again
– Enfold parent = works
– Enfold child= does not workMy childtheme does not contain anything that could cause that conflict – there is only a CSS and a functions.php
I tried and removed anything from these two files – expext the necessary.
The issues still remain.
Since there is nothing im my child-theme the issue must come from somewhere in the parent theme or from the settings of my child theme.Here is the content of the files:
functions:<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ function enqueue_parent_theme_style() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); } add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style'); /* Proper way to enqueue styles and scripts */ function theme_name_scripts() { wp_enqueue_style( 'style-name', get_stylesheet_uri() ); } add_action( 'wp_enqueue_scripts', 'theme_name_scripts' ); /* Activate Avia debug mode */ add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; } add_filter( 'woocommerce_get_catalog_ordering_args', 'custom_woocommerce_get_catalog_ordering_args' ); function custom_woocommerce_get_catalog_ordering_args( $args ) { $orderby_value = isset( $_GET['orderby'] ) ? woocommerce_clean( $_GET['orderby'] ) : apply_filters( 'woocommerce_default_catalog_orderby', get_option( 'woocommerce_default_catalog_orderby' ) ); if ( 'random_list' == $orderby_value ) { $args['orderby'] = 'rand'; $args['order'] = ''; $args['meta_key'] = ''; } return $args; } add_filter( 'woocommerce_default_catalog_orderby_options', 'custom_woocommerce_catalog_orderby' ); add_filter( 'woocommerce_catalog_orderby', 'custom_woocommerce_catalog_orderby' ); function custom_woocommerce_catalog_orderby( $sortby ) { $sortby['random_list'] = 'Random'; return $sortby; }
My CSS
.woocommerce-product-details__short-description p {margin:0px !important;} p.stock .woocommerce-product-details__short-description {display:none!important;} .product_tag-inland.woocommerce-product-details__short-description::after { content: "\A Nur ins Inland. "; } .product_tag-inland.woocommerce-loop-product__title::after { content: "\A Nur Inland "; text-decoration:underline; white-space: pre; }
March 4, 2019 at 1:15 pm #1074346Hey Maskenzauber,
Did you have a caching plugin? try flushing out the page cache.
If that doesn’t work, please post us your login credentials (in the “private data” field), so we can take a look at your backend.- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( do be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.Best regards,
NikkoMarch 5, 2019 at 8:25 pm #1075054Sorry but no. I saw once that you foobared a google map (for some days) on another customers website.
And this customer was a doctor and she lost clients cause you where misleading her patients to a complete other adress.
So i am not willing to give you credentials.
And the way you treated us in that other thread does not make me more comfortable.March 7, 2019 at 8:07 am #1075835Hi Maskenzauber,
Sorry but no. I saw once that you foobared a google map (for some days) on another customers website.
Can you give a link where I did this?
And this customer was a doctor and she lost clients cause you where misleading her patients to a complete other adress.
I’m not really sure where you’re getting this, can you give a link where I mislead them?
We’re trying to help here, and it’s hard to try to debug an issue we can’t reproduce on our end.
If you create atleast a staging site where we can check without having access on your live site, maybe we can give you steps on how to fix it.Best regards,
Nikko -
AuthorPosts
- You must be logged in to reply to this topic.