Forum Replies Created

Viewing 30 posts - 12,241 through 12,270 (of 34,988 total)
  • Author
    Posts
  • in reply to: Fancy Border on Table #1347830

    Hi,
    Thanks for the screenshot but I need to examine the source code, please link to the page.
    Do you want the border around the group or around each of the 3 columns?

    Best regards,
    Mike

    in reply to: Fancy Border on Table #1347828

    Hi,
    Please link to your page so we can examine, as you see from my screenshot this worked for the standard data table.

    Best regards,
    Mike

    in reply to: Woocommerce support #1347827

    Hi,
    Thank you for the screenshots, on your first one “delivery.png” all of the text is using the same font “helvetica neue” some are bold and #758269 in color, if you want them to all be like this try this css:

    .woocommerce-checkout .woocommerce .argmc-wrapper .argmc-form-steps, .woocommerce-checkout .woocommerce .argmc-wrapper #payment div.payment_box, .woocommerce-checkout .woocommerce .argmc-wrapper table.shop_table th, .woocommerce-checkout .woocommerce .argmc-wrapper table.shop_table td, .woocommerce-checkout .woocommerce .argmc-wrapper table.review-table th, .woocommerce-checkout .woocommerce .argmc-wrapper table.review-table td {
    	color: #758269;
    	font-weight: 600;
    }

    in my test this also solved the font in the screenshot “payment.png”
    Now if you compare the standard demo purchase box and yours
    2022-04-09_162436.jpg
    you will notice that yours is missing the PayPal image because your payment gateway doesn’t include it payment_method_ppcp-gateway
    the standard PayPal payment gateway does payment_method_paypal
    If you want the PayPal image and remove the outer border try this css:

    #top #order_review #payment .wc_payment_method.payment_method_ppcp-gateway {
    	background-image: url(https://www.paypalobjects.com/webstatic/mktg/Logo/AM_mc_vs_ms_ae_UK.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    #top #order_review #payment {
        border-style: none;
    }

    2022-04-09_010.jpg
    Now for your logins, the first image is the woocommerce standard login, the second one is the ARG MultiStep plugin login, this one has different classes and css than the first one, so to make one look like the other would take some time.
    Try looking at the plugin options and see if it has a “classic” setting to look like woocommerce, or check it’s support site for css to look like woocommerce.

    Best regards,
    Mike

    in reply to: Blog posts disappeared #1347823

    Hi,
    Sorry Guenni007, I don’t know why your snippet doesn’t work with the postslider, there is an open Github issue report about sticky posts that the Dev Team is looking at, I’m not sure if you can see it, but it’s above what I know.
    I added your report about this to them, if they comment I will add it here for you.

    Best regards,
    Mike

    in reply to: Fancy Border on Table #1347821

    Hi,
    How about a double blue line on top:

    #main .avia-data-table {
    border-top: 6px blue double;
    border-left: 3px black solid;
    border-right: 3px black solid;
    border-bottom: 3px black solid;
    }

    2022-04-09_007.jpg
    See more border options here.

    Best regards,
    Mike

    in reply to: How can i change the color with font in form? #1347818

    Hi,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #RFQ-responsive-form input::-webkit-input-placeholder,
    #RFQ-responsive-form textarea::-webkit-input-placeholder{ 
      color: blue;
    }
    #RFQ-responsive-form input::-moz-placeholder,
    #RFQ-responsive-form textarea::-moz-placeholder{ 
      color: blue;
    }
    #RFQ-responsive-form input:-ms-input-placeholder,
    #RFQ-responsive-form textarea:-ms-input-placeholder{ 
      color: blue;
    }
    #RFQ-responsive-form input:-moz-placeholder,
    #RFQ-responsive-form textarea:-moz-placeholder{ 
      color: blue;
    }

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

    Best regards,
    Mike

    in reply to: How to put dress in navigation on left sidebar #1347815

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Table of Content Widget and H3 #1347813

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Blog posts disappeared #1347812

    Hi,
    Thanks for the feedback, the console errors you are getting for moz-extension:// are for a Firefox extension in your browser, I don’t have any extensions in FireFox so I don’t see these errors.
    Please note that Events Calendar Pro + WooCommerce core does work, so the conflict comes when GiveWP + Events Calendar + WooCommerce are all used at the same time.
    Unfortunately, there are no useful errors to point to the conflict and we don’t have any experience with the plugin GiveWP to know why it would have a conflict even when the GiveWP is not used on the page, I would suggest asking GiveWP if they know of any conflicts with Events Calendar and WooCommerce.

    Best regards,
    Mike

    in reply to: How to put dress in navigation on left sidebar #1347800

    Hey rixi,
    Thanks for your question, you will need to add a header widget area and then add your widgets there, please see our documentation here.

    Best regards,
    Mike

    in reply to: Custom Header Widget alignmnet #1347799

    Hi,
    For the links to open in a new tab you need to add target="_blank" to the links
    2022-04-09_006.jpg
    Please read more here.

    Best regards,
    Mike

    Hey Ramon,
    Thanks for your question, please try this script in your child theme functions.php

    function custom_replace_url_script() { ?>
        <script>
    function replace_url(elem, attr) {
      var elems = document.getElementsByTagName(elem);
      for (var i = 0; i < elems.length; i++)
          elems[i][attr] = elems[i][attr].replace(/(http|https):\/\/.*\.?fonts\.?.*/i, '');
    }
    
    window.onload = function() {
      replace_url('link', 'href');
    }
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_replace_url_script');

    this will search link tags for a url with the fonts sub-domain and remove the whole url, such as the https://fonts.googleapis.com/css?family=Open+Sans:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i that your layerslider is loading.
    this works for fonts.googleapis.com, but the fonts.gstatic.com is loading somewhere other than your header, so try adding a .htaccess block for this domain so your page won’t load it.

    # Order Allow, Deny
    Deny from fonts.googleapis.com
    Deny from fonts.gstatic.com

    Best regards,
    Mike

    Hey Yaphoon,
    Please note the warning message on your dashboard, The minimum recommended version of PHP is 7.4.
    2022-04-09_005.jpg
    Please try updating your PHP version.

    Best regards,
    Mike

    Hi,
    Glad to hear, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hey antilimited,
    Thank you for your patience and the link to your site, I believe that this is related to your .htaccess file is missing the mod_rewrite rules, please see the WordPress ▸ Settings ▸ Permalink Settings and add the mod_rewrite rules to your .htaccess file
    2022-04-09_004.jpg
    I also see that your child theme contains an outdated header.php file, please update with the parent theme header.php

    Best regards,
    Mike

    in reply to: Burger Menu not loading on subdomain #1347784

    Hi,
    Glad to hear that you have this sorted out, if the master file you have given them is a PHP file then you should have the header.php & footer.php called in it which should be pointing to your site.
    Take a look at the index.php file in the theme and note the get_header(); and get_footer();
    2022-04-09_003.jpg
    you can specify the url for the header.php like:

    $url = "https://your-site.com";
    get_header($url);

    If your master file is html then you can add the PHP call like this: <?php get_header(); ?> but this will only work if the data provider will allow PHP on the sub-domain, you will need to ask your developer to help you with this.
    Your best option would be if you could call the data on your domain and not use their sub-domain, but I imagine you already thought of that.

    Best regards,
    Mike

    in reply to: Deleting unused images from Meida Library #1347783

    Hi,
    In re-reading your feedback above you say that you can’t select more than 50 images at a time, so perhaps you didn’t know that you can change this number to 999 by changing the view media library to “line details” and clicking the Screen Options button (top right) and changing the number of items per page to 999
    2022-04-09_002.jpg
    Originally I had thought that your issue was that you were deleting so many images at once that your media library was taking a long time to process, unfortunately for this we can not change how the WordPress media library performs.
    To overcome the weak media library management options we do need to suggest additional plugins because that is what they were created for, for example, to remove all of the files not used on your website many recommend Media Cleaner, you can read this article here.
    The media library is a core WordPress function and themes such as Enfold build on top of the core functions, but we don’t replace them. Typically plugins enhance core functions, I hope this makes sense and helps.

    Best regards,
    Mike

    in reply to: Table of Content Widget and H3 #1347780

    Hi,
    Thanks for the feedback, I was able to reproduce this following your description and I was able to solve it by using the Exclude headlines by class field which the Dev Team included in the widget:
    2022-04-09_001.jpg
    By using the widget title class widgettitle it is excluded from the TOC, I would recommend this for your case rather than limiting the function for all users.
    I hope that you find using the Exclude headlines by class field a good solution for your project.

    Best regards,
    Mike

    in reply to: Custom Header Widget alignmnet #1347760

    Hi,
    Please try adding z-index you your #text-29 code like this:

    
    #text-29 {
        position: absolute;
        right: 300px;
        top: 0px;
        z-index: 2;
    }

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

    Best regards,
    Mike

    in reply to: Table of Content Widget and H3 #1347759

    Hi,
    I tried using the block editor for the post but the TOC still didn’t show it’s H3 title, is your TOC in the sidebar?
    I don’t see a way to add a widget in the block editor on a post.
    If I create a Advanced Layout Builder post and use H3 headings and add a widget element instead for using a sidebar the TOC does show it’s title:
    2022-04-08_009.jpg
    2022-04-08_010.jpg
    Is this what you did?

    Best regards,
    Mike

    Hey attifilm,
    Thanks for the login to your site , I added this script in your functions.php to correct the logo link in English for Polylang:

    function polylang_logo_link_for_english() { ?>
        <script>
    (function($){
      $('html[lang="en-US"] span.logo').find('a').attr('href', 'https://www.your-site.ch/wp/en/home/');
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'polylang_logo_link_for_english');

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Custom Script title font colors #1347755

    Hi,
    Thank you for the link to your site, unfortunately, these two forms are loaded in iframes so you can not change the font colors with css on your site, you will need to make the adjustment at where you get the code for the form.

    Best regards,
    Mike

    in reply to: empty page #1347753

    Hey Akmerttan,
    Thank you for the link to your site, but it doesn’t seem empty to me, please see the screenshot in the Private Content area.
    Is it still empty for you?

    Best regards,
    Mike

    in reply to: Table of Content Widget and H3 #1347752

    Hey havi,
    Thank you for your suggestion, but I don’t seem to be able to reproduce this.
    I tested on a Classic Editor and Advanced Layout Builder post with H3 headings and the TOC doesn’t include it’s own heading:
    2022-04-08_005.jpg
    I included links to my test posts below, using v4.9.2.1 with only WooCommerce as a plugin.

    Best regards,
    Mike

    in reply to: LayerSlider Front End Problem #1347706

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Woocommerce support #1347705

    Hi,
    Thank you for your patience and for the login, I will try to help you customize your plugin ARG MultiStep Checkout for WooCommerce, although this is not a third party plugin that we support.
    for the width of your fields in the steps please try this css

    .argmc-wrapper .argmc-form-steps {
        padding-left: 0;
        padding-right: 0;
    }
    .argmc-order-step, .argmc-payment-step, .argmc-order-payment-step, .argmc-order-review-step {
        max-width: 100%;
    }
    .woocommerce-shipping-totals.shipping th {
    	width: 50px;
    }

    I’m not sure what you are finding wrong with the payment box in step two or three, but these boxes are styled from the plugin and will not look like our demo, I didn’t see anything out of line please see the screenshots in the Private Content area. If there was something small to adjust I would be able to assist, but I can’t re-write the plugin to look like our demo.
    The English words Customer Details, Billing Address, & Shipping Address are also from the plugin:
    2022-04-08_004.jpg
    so while I could write a script to change these, I would first suggest that you ask the plugin author for their solution as I imagine they must have dealt with this before.
    I’m not sure what you mean by the “my account” fields should look like the log in / register, try explaining with some screenshots.

    Best regards,
    Mike

    in reply to: Blog Post Grid 3 Columns on both Desktop and Mobile #1347661

    Hey justinteo85,
    Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (max-width: 767px) { 
    body #wrap_all #main div .first, 
    body #wrap_all #main div .no_margin {
        margin-left: 0;
    }
    body #wrap_all #main .unit.alpha, 
    body #wrap_all #main .units.alpha, 
    body #wrap_all #main div .first {
        margin-left: 0;
        clear: left;
    }
    #wrap_all #main div .av_one_third,
    .responsive #top #wrap_all #main .avia-content-slider-odd .slide-entry {
        margin-left: 4%;
        width: 29.333333333333332%;
    }
    .responsive #top #wrap_all #main .avia-content-slider-odd .slide-entry.first {
    	margin-left: 2%;
        width: 29.333333333333332%;
    }
    #wrap_all #main div .flex_column {
        z-index: 1;
        float: left;
        position: relative;
        min-height: 1px;
    }
    #wrap_all #main .avia-content-slider .slide-entry-wrap {
        width: 100%;
        float: left;
        margin-bottom: 40px;
    }
    .responsive #top #wrap_all #main .avia-content-slider-odd .slide-entry,
    .responsive #top #wrap_all #main .avia-content-slider-even .slide-entry.slide-parity-odd, 
    .responsive #top #wrap_all #main .avia-content-slider-odd .slide-entry.slide-parity-even {
    	clear: none;
    }
    }

    After applying the css, please clear your browser cache and check.
    This is the expected results
    2022-04-07_004.jpg

    Best regards,
    Mike

    in reply to: Deleting unused images from Meida Library #1347656

    Hey joakimraboff,
    Thank you for your question, I have not tried any bulk delete plugins, so you will need to give them a try, but I do know that you can’t just delete them via FTP because that doesn’t remove them from the database.

    Best regards,
    Mike

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

    Best regards,
    Mike

    in reply to: How To Make The SubMenu Sticky On Mobile #1347653

    Hi,
    Glad Guenni007 & Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 12,241 through 12,270 (of 34,988 total)