Forum Replies Created

Viewing 30 posts - 5,401 through 5,430 (of 34,999 total)
  • Author
    Posts
  • in reply to: Space bar not working in Media #1423333

    Hi,
    Odd, so you disabled all of your plugins, except for “Temporary Login Without Password” and then tried to add a image to a post, and you couldn’t use the space bar?
    After much testing, I found that disabling the Feedzy RSS Feeds Lite plugin solved the issue in Windows in Chrome, Firefox, & Edge.
    I have left it disabled so you can check. Please note that if you are using a Mac or IOS, it can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Change Shop #5 #1423332

    Hi,
    Ok, hopefully it also works well on the live site, this has been a big customization, more than normal.

    Best regards,
    Mike

    in reply to: Change Shop #5 #1423311

    Hi,
    For the product page, the commas are not inside of the links:
    Enfold_Support_3763.jpeg

    Best regards,
    Mike

    in reply to: space between Footer and socket #1423310

    Hi,
    I have checked your two sites, the homepage and the /galerien/ for each and I don’t see any errors, so I would say that your css is working correctly.

    Best regards,
    Mike

    in reply to: Change Shop #5 #1423298

    Hi,
    The commas are not in the author links:
    Enfold_Support_3759.jpeg
    but please note that the entire product grid item is wrapped in a link to the product page:
    Enfold_Support_3761.jpeg
    What is your goal, do you want to change the color of the commas?
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .inner_product.main_color a.woocommerce-LoopProduct-link {
    	color: #7d7d7d;
    }

    Best regards,
    Mike

    in reply to: Cookie message and buttons at the same line #1423269

    Hey Michael,
    Thank you for the link to your sites, as I understand your request you would like the two cookie consent buttons to always be side-by-side (inline) and the cookie consent text to be inline next to the buttons, but at smaller screens the text should become multiple lines and still inline with the buttons.
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field for each site:

    .avia-cookie-consent .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }
    
    .avia-cookie-consent .avia_cookie_text {
      flex: 1;
      white-space: normal;
      margin: 0;
    }
    
    .avia-cookie-consent .avia-button {
      display: inline-block;
    }
    

    This is the expected result that I see when I test:
    Enfold_Support_3757.jpeg

    Best regards,
    Mike

    in reply to: URGENTT: massive error in Backend gui #1423262

    Hi,
    Thank you for your patience, but unfortunately I’m not able to login, please check.

    Best regards,
    Mike

    in reply to: The five icons are not displayed on my website #1423261

    Hi,
    Thanks, but now I get this error:
    Enfold_Support_3754.jpeg
    please review.

    Best regards,
    Mike

    in reply to: OSM Leaflet Map: only one marker pop-up displaying #1423260

    Hey CJGVD,
    Thank you for your patience, unfortunately it looks like the Leaflet Map is set to only show one popup at a time, it looks like there maybe a workaround if you modify the Leaflet Map script, but I was not able to make this work in my tests.
    Enfold_Support_3752.jpeg
    I looked for another plugin that offered this option but couldn’t find one.
    Perhaps if you would like to request this as a future feature, the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.
    But unfortunately I don’t see an easy way to do this right now. Thank you for your understanding.

    Best regards,
    Mike

    in reply to: Add a Gradient Overlay with Reduced Opacity #1423255

    Hi,
    Thanks Guenni007, I was having a hard time seeing the change, this makes since now :)

    Best regards,
    Mike

    in reply to: space between Footer and socket #1423254

    Hi,
    I’m not sure what the issue is, is this the only page that this occurs on?

    Best regards,
    Mike

    in reply to: Change Shop #5 #1423253

    Hi,
    I believe the new modification is working correctly, please check.
    This is the new code:

    add_action('woocommerce_after_shop_loop_item_title', 'display_custom_attribute_in_product_grid', 5);
    
    function display_custom_attribute_in_product_grid() {
        // define the desired product attributes to be displayed
        $defined_attributes = array('autore');
    
        global $product;
        $attributes = $product->get_attributes();
    
        if (! $attributes) {
            return;
        }
    
        $out = '<span class="product-attributes">';
    
        foreach ($attributes as $attribute) {
    
            $attribute_slug = str_replace('pa_', '', $attribute->get_name());
    
            if (! in_array($attribute_slug, $defined_attributes)) {
                continue;
            }
    
            if ($attribute->get_variation()) {
                continue;
            }
    
            $name = $attribute->get_name();
    
            if ($attribute->is_taxonomy()) {
    
                $terms = wp_get_post_terms($product->get_id(), $name, 'all');
                $tax = $terms[0]->taxonomy;
                $tax_object = get_taxonomy($tax);
                if (isset($tax_object->labels->singular_name)) {
                    $tax_label = $tax_object->labels->singular_name;
                } elseif (isset($tax_object->label)) {
                    $tax_label = $tax_object->label;
                    if (0 === strpos($tax_label, 'Product ')) {
                        $tax_label = substr($tax_label, 8);
                    }
                }
    
                $out .= '<span class="' . esc_attr($name) . '" style="width:100%" >';
                $tax_terms = array();
    
                foreach ($terms as $term) {
                    $single_term = array('name' => esc_html($term->name), 'url' => get_term_link($term->term_id, $name));
                    array_push($tax_terms, $single_term);
                }
    
                $author_names = array();
                foreach ($tax_terms as $term) {
                    $author_names[] = '<p data-url="' . $term['url'] . '" class="attribute-value" style="margin:0">' . $term['name'] . '</p>';
                }
    
                // Combine author names into a single string
                $author_list = implode(', ', $author_names);
    
                $out .= $author_list;
    
            } else {
                $value_string = implode(', ', $attribute->get_options());
                $out .= '<span class="' . sanitize_title($name) . ' ' . sanitize_title($value_string) . '">';
            }
        }
    
        $out .= '</span>';
    
        echo $out;
    }

    Best regards,
    Mike

    in reply to: Space bar not working in Media #1423245

    Hi,
    Odd, when I disable all of your plugins, except the temp login plugin, the spacebar works correctly:
    Enfold_Support_3750.jpeg
    perhaps you didn’t reload the page after disabling the plugins, please try again.

    Best regards,
    Mike

    in reply to: Blog Advanced Layout not working #1423242

    Hey sitesme,
    Thanks for the login to your site, I see the your “blog” page has a special heading & a blog element & a magazine element, the reason thease are not showing is because your “blog” post category has the “slug” ▸ “blog”, so the URL for your-site.com/blog/ is the category page and not the “blog” page. I hope that I have explained this well.
    Enfold_Support_3746.jpeg
    So the solution is to change the “slug” for now I changed it to “blog-cat” but you can change it to anything you like.
    Enfold_Support_3748.jpeg

    Best regards,
    Mike

    Hey molinesupport,
    Thanks for your question, I’m not familiar with “BatchLine”, but if this works with the shopfront WooCommerce theme, try going to Enfold Theme Options ▸ Shop Options ▸ Product gallery and choose WooCommerce 3.0 product gallery, I assume that you are currently using the Default enfold product gallery option now.
    On the page that you linked to I see the classes for the products that are showing the placeholder images: member-discount discount-restricted
    are you using a “membership” plugin? If you don’t use any restrictions do the images then show correctly?

    Best regards,
    Mike

    in reply to: install new enfold theme error #1423238

    Hi,
    Glad to hear that you have this sorted out, shall we close this then?

    Best regards,
    Mike

    in reply to: The five icons are not displayed on my website #1423237

    Hey akbar70j,
    Thank you for the link to your site, but when I land on the /wp-admin/ login page I get a “forbidden” error, please check and make your site accessible for us. Thank you.

    Best regards,
    Mike

    in reply to: Space bar not working in Media #1423236

    Hi,
    Thanks for the screenshot, I would like to try but your token link above is not logging me in, please check.
    Oh, perhaps that plugin is also disabled, please enable that one plugin :)

    Best regards,
    Mike

    in reply to: Space bar not working in Media #1423229

    Hi,
    There are some plugins that cause this error, unfortunately we are not able to change the theme to work with every plugin, there are just too many.
    When you find the plugin causing the issue you can then determine if it is something you really need or use a alternative plugin.

    Best regards,
    Mike

    Hey Steve,
    Thank you for your patience, with WPML each language has it’s own theme settings, but I don’t think POLYLANG does this, you could create a class and add your text twice and use css to hide the text based on the language, similar to this thread, but this would not change the links, so for using POLYLANG you may find it more convenient to use a Thirdparty Cookie Plugin.

    Best regards,
    Mike

    in reply to: Add a Gradient Overlay with Reduced Opacity #1423227

    Hi,
    Thank you Guenni007 for helping, Eleina_Shinn were you able to sort this out with Guenni007’s help?

    Best regards,
    Mike

    in reply to: Upgrading to PHP 8.2 #1423225

    Hi,
    WordPress doesn’t support PHP v5.6.40 any more, please update to at least PHP v7.4

    Best regards,
    Mike

    in reply to: space between Footer and socket #1423224

    Hey schweg33,
    Thanks for the link to your pages, I’m not sure what the issue is, is this the only page that this occurs on?
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.page-id-15521 #av_section_1 {
    	height: 62vh;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Space bar not working in Media #1423222

    Hey daves1997,
    Typically this error is caused by a conflict with plugins, try disabling all of your plugins. If that resolves the issue, reactivate each one individually until you find the one causing the conflict.

    Best regards,
    Mike

    in reply to: frontend theme doesn't work #1423218

    Hi,
    Thank you for the link to your site, I found that you were getting the error: Uncaught SyntaxError: Unexpected string I believe from this script in a widget:
    Enfold_Support_3734.jpeg
    once I removed it and cleared your cache you site showed correctly.
    I added the code into your child theme functions.php:
    Enfold_Support_3736.jpeg
    so now it shows with no errors:
    Enfold_Support_3738.jpeg
    I see that you have an empty avia-style.min.css css file in your child theme, I recommend removing this as it may cause a conflict in the future.
    Enfold_Support_3740.jpeg
    Best regards,
    Mike

    Hi,
    Ok, since I can’t think of anything else to change here, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Anchor link from header link to a Slider Revolution slider #1423147

    Hi,
    Thanks for your patience, I tested this javascript in your child theme functions.php to slow down the jump to any hash ID, such as your ‘service’ anchor to give the page time to load all of the elements, and then slowly scroll to the ID instead of jumping to it.

    function custom_slow_scroll_to_anchor_script() { ?>
      <script>
    function slowScrollToAnchor() {
      var urlHash = window.location.hash;
      if (urlHash) {
        var target = document.querySelector(urlHash);
        if (target) {
          var targetPosition = target.offsetTop;
          var startPosition = window.pageYOffset;
          var distance = targetPosition - startPosition;
          var duration = 2000;
          var startTime = null;
    
          function scrollAnimation(currentTime) {
            if (startTime === null) startTime = currentTime;
    
            var timeElapsed = currentTime - startTime;
            var scrollY = easeInOutQuad(timeElapsed, startPosition, distance, duration);
            window.scrollTo(0, scrollY);
    
            if (timeElapsed < duration) {
              requestAnimationFrame(scrollAnimation);
            }
          }
          function easeInOutQuad(t, b, c, d) {
            t /= d / 2;
            if (t < 1) return c / 2 * t * t + b;
            t--;
            return -c / 2 * (t * (t - 2) - 1) + b;
          }
    
          requestAnimationFrame(scrollAnimation);
        }
      }
    }
    window.addEventListener('load', slowScrollToAnchor);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_slow_scroll_to_anchor_script', 99);

    This worked in my tests, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Thanks for the link to the report, I see the images that are Defer Off-screen Images are blank, so it would seem that the lazy loading is working, the space where the images will be need to have their height & width in the page and thus be blank otherwise you will get dinged on the Cumulative Layout Shift which you have a very good score on right now:
    Enfold_Support_3734.jpeg
    I’m not sure what other option there would be.

    Best regards,
    Mike

    in reply to: Malware found in files #1422998

    Hi,
    I see that your max_execution_time is still zero, did you ask your webhost why you are getting a 500 server error? Unfortunately we can’t solve server errors, but perhaps asking your webhost for assistance will help.
    Earlier you wrote that your hosting service it told you that it found 16 files which are infested with malware, did you try using your server backup to roll back a a version before the malware? If your site still has malware, I would recommend hiring a malware removal service, we don’t have any experience with malware removal.

    Best regards,
    Mike

    in reply to: Table Width On Enfold #1422895

    Hey condonp,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.home .avia-table {
        width: auto;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 5,401 through 5,430 (of 34,999 total)