Forum Replies Created

Viewing 30 posts - 31 through 60 (of 66 total)
  • Avatar: Nancy
    Nancy
    Participant
    February 19, 2024 at 13:45

    Thank you for pointing me in the right direction! This is what I did:
    @media (max-width: 767px) {
    .et-toggle-mob-sidebars-inner.et-content-left .et-toggle span.et_b-icon::after {
    content: ‘FILTERS’ !important;
    padding: 0.75rem 0.2rem;
    writing-mode: vertical-rl; /* or vertical-lr */
    text-orientation: upright; /* optional, adjusts the orientation of the characters */
    }
    .et-toggle-mob-sidebars-inner .et-toggle {
    width:auto;
    height:auto;
    }
    .et-toggle-mob-sidebars-inner svg {
    display: none !important;
    }

    .et-toggle-mob-sidebars-inner.et-content-left .et-toggle {
    border-radius: 2% !important;
    background-color: #004676;
    opacity: 0.9;
    color: white;
    }
    .et-toggle-mob-sidebars-inner {
    top: 35%;
    }
    }

    Avatar: Nancy
    Nancy
    Participant
    February 18, 2024 at 15:41

    Also, if you have any idea why only your plugin and annasta works correctly on my site, let me know.

    Avatar: Nancy
    Nancy
    Participant
    February 18, 2024 at 15:40

    I was having the trouble with the plugins suggested that it redirected to the front page somehow everytime I tried to filter it. Annasta Woocommerce Product Filters works though! Maybe you can keep this in mind if someone wants the same thing 😉

    Avatar: Nancy
    Nancy
    Participant
    February 9, 2024 at 10:08

    Hello Rose Tyler!

    So there is not an xstore widget that can filter by dimension or another custom field (I believe _width can also be approached as a custom meta field)? As I said, a snippet for functions.php is also not a problem.

    Kind regards,
    Nancy

    Avatar: Nancy
    Nancy
    Participant
    February 8, 2024 at 11:52

    Hello Rose Tyler,
    Thank you for your quick response as always!
    I will try that option, thank you for your advise.

    Avatar: Nancy
    Nancy
    Participant
    February 8, 2024 at 11:31

    I don’t think that’s what I mean?
    I made a screenshot of it:
    https://prnt.sc/D76F5MaEJoqm

    Avatar: Nancy
    Nancy
    Participant
    February 6, 2024 at 11:12

    Hello Rose Tyler,
    Do you have a list of settings of WP-rocket and your own speed optimizing settings that you use, which you could share?
    We also use WP-rocket and Xstore, and I understand that I couldn’t use it one on one on our production, but perhaps I could test it on our staging site.

    Kind regards,
    Nancy

    Avatar: Nancy
    Nancy
    Participant
    February 1, 2024 at 16:10

    added css for laptop only (so not global css):
    body > div.template-container > div.template-content > div.page-wrapper > div > div > div > div {width: 75%;
    margin:auto;}

    I think this solved it.
    https://prnt.sc/rKhoH5qZuNU9

    Avatar: Nancy
    Nancy
    Participant
    February 1, 2024 at 15:23

    Deactivated everything except lightstart, elementor, woocommerce and xstore, no difference 🙁

    Avatar: Nancy
    Nancy
    Participant
    February 1, 2024 at 15:19

    Refreshed, But unfortunately no difference in the “frontend”.
    https://prnt.sc/BAGmSL9X0kV8
    I had the same problem, when editing, it looks fine, but somehow the frontend is different.

    Avatar: Nancy
    Nancy
    Participant
    February 1, 2024 at 15:07

    I’m sorry, I disabled it for you!

    Avatar: Nancy
    Nancy
    Participant
    February 1, 2024 at 13:34

    Thank you! I have another issue but opened a separate topic for it

    Avatar: Nancy
    Nancy
    Participant
    January 29, 2024 at 10:01

    Solved it, it was a piece of code in my functions.php, made to put the out of stock products at the end of the list. Now I will have to find another solution for this. Thank you for your suggestions!

    Avatar: Nancy
    Nancy
    Participant
    January 25, 2024 at 11:22

    I will make a local copy of the site and test your theories 😉 perhaps I will put a copy on our staging server for you to test on if I don’t solve it myself.

    Avatar: Nancy
    Nancy
    Participant
    January 23, 2024 at 14:32

    Hello Tony! Thank you for your time!

    If you look at (for example):
    https://www.bakgoed.nl/product-categorie/categorieen/zelf-taart-maken/vullingen-zelf-taart-maken/bavaroise-poeder/?orderby=date

    And:
    https://www.bakgoed.nl/nieuw/

    You can see the tiramisu being new, the newest of the category bavaroise-poeder (it’s a filling), but when you look at the filling category, it’s not in the beginning of the page.

    Avatar: Nancy
    Nancy
    Participant
    January 20, 2024 at 18:35

    Haha, after deactivating the categorie search and ajax search, the other one just took over, so it works now 🙂

    Avatar: Nancy
    Nancy
    Participant
    January 20, 2024 at 15:22

    Thank you for the quick response!
    Could you provide me the correct jquery selector so I can try to change the search field? If that doesn’t work I will contact the developer of the plugin

    Avatar: Nancy
    Nancy
    Participant
    January 19, 2024 at 15:01

    Thank you so much for your help!

    Avatar: Nancy
    Nancy
    Participant
    September 8, 2023 at 08:49

    Thank you! Epic service as always.

    Avatar: Nancy
    Nancy
    Participant
    August 10, 2023 at 09:06

    Thank you!
    I was on the right track hahaha

    Avatar: Nancy
    Nancy
    Participant
    August 9, 2023 at 16:53

    Sure!

    Avatar: Nancy
    Nancy
    Participant
    August 7, 2023 at 15:36

    Yes et_progress_bar_amount was the one I needed! Thank you!

    Avatar: Nancy
    Nancy
    Participant
    August 7, 2023 at 14:14

    The version you have doesn’t support multiple countries.

    I have made this:

    `add_action(‘init’, ‘set_country_based_on_parameter’);

    function set_country_based_on_parameter() {
    if (isset($_GET[‘set_country’])) {
    $country = wc_clean($_GET[‘set_country’]); // Sanitize user input

    if ($country == ‘BE’ || $country == ‘NL’) {
    WC()->customer->set_shipping_country($country);
    WC()->customer->set_billing_country($country);

    if($country == ‘BE’){
    $country_name = ‘Belgium’;
    }else{
    $country_name = ‘Netherlands’;
    }

    wc_add_notice(‘Your shipping country has been set to ‘.$country_name.’. You can change it in your account settings.’, ‘success’);
    }
    }
    }
    add_action( ‘woocommerce_before_cart’, ‘show_shipping_message_based_on_country’ );

    function show_shipping_message_based_on_country() {
    $cart_total = round(WC()->cart->get_subtotal(),2);
    $shipping_country = WC()->customer->get_shipping_country();

    if ($shipping_country === ‘NL’) { // Netherlands
    $free_shipping_limit = 25;
    $switch_country_code = ‘BE’;
    $switch_country_name = ‘België’;
    } elseif ($shipping_country === ‘BE’) { // Belgium
    $free_shipping_limit = 60;
    $switch_country_code = ‘NL’;
    $switch_country_name = ‘Nederland’;
    } else { // Default case for other countries (optional)
    $free_shipping_limit = 50;
    $switch_country_code = ‘BE’;
    $switch_country_name = ‘België’;
    }

    if ($cart_total < $free_shipping_limit) { $remaining = $free_shipping_limit - $cart_total; $link = add_query_arg('set_country', $switch_country_code, wc_get_cart_url()); wc_print_notice( sprintf( 'Nog €%s voor gratis verzending! Ben je in %s? Klik hier om je land te veranderen.’, $remaining, $switch_country_name, $link ), ‘notice’ );
    }
    }’

    This will support 2 countries (Netherlands and Belgium).

    I want to replace your version with this, but I think I need the right hook.

    Avatar: Nancy
    Nancy
    Participant
    August 2, 2023 at 15:36

    Found the problem, it was AdGuard (my mistake!).

    Avatar: Nancy
    Nancy
    Participant
    August 1, 2023 at 15:38

    Thank you so very very much!

    Avatar: Nancy
    Nancy
    Participant
    August 1, 2023 at 08:50

    I added the user and gave you a grace period. please tell me if I need to extend it.

    Good luck! And please if you could, tell me what you did if you found a solution for this 🙂

    Please contact administrator
    for this information.
    Avatar: Nancy
    Nancy
    Participant
    July 21, 2023 at 11:48

    I added a wetransfer link with my dutch translations of the theme and the core plugin. Please test it because this is the first time I’m doing this this way haha.

    Please contact administrator
    for this information.
    Avatar: Nancy
    Nancy
    Participant
    April 4, 2023 at 09:29

    Thank you!
    I also added this to the CSS:
    .elementor-widget-etheme_categories_lists ul li ul li ul {
    display: none;
    }
    I only need to show the.. subcategories, and not the sub sub or the sub sub sub hahaha.
    Is this the way or am I overlooking a setting?
    It does give me the effect I desired on desktop.

    Avatar: Nancy
    Nancy
    Participant
    April 3, 2023 at 15:31

    I have made a ftp user for you

    Please contact administrator
    for this information.
    Avatar: Nancy
    Nancy
    Participant
    April 3, 2023 at 14:57

    Gave you a grace period, should be working now. Please let me know if it works.

  • 1 2 3
    Viewing 60 results - 31 through 60 (of 66 total)
Viewing 30 posts - 31 through 60 (of 66 total)
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.