Forum Replies Created

Viewing 30 posts - 24,631 through 24,660 (of 34,598 total)
  • Author
    Posts
  • in reply to: Enfold Table Pricing Row Font Size #1018096

    Hey scotthco,
    Please check your image url, I’m getting a 404.
    If I understand correctly, on the frontend the font is correct, only the backend preview is not correct.
    Are you using any html tags in the title fields, please check that you don’t have any un-closed html tags.
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Enfold contact form not working #1018094

    Hi,
    If I understand correctly, you are having your contact form mail sent to a gmail address, when you test did you use a non-gmail address sent from the form?
    Please try installing the WP Mail Logging plugin, and test again it will capture the error messages.
    Then afterward please start a new thread and include a admin login in the private content area so we can take a closer look.
    As this is not your thread your login info will not be private in this thread.

    Best regards,
    Mike

    in reply to: Produktseite bearbeiten #1018093

    Hi,
    Vielen Dank für die Anmeldung. Ich habe die erste Funktion hinzugefügt, um die Beschreibungsbox auf Ihren Produktseiten in voller Breite anzuzeigen, und sie dann nach dem Zufallsprinzip überprüft. Die Funktion scheint gut zu funktionieren. Ich habe keine der Videos auf der Produktseite gefunden, die das gleiche Problem wie auf der Testseite haben. Deshalb habe ich den CSS-Code-Block nicht hinzugefügt. Bitte löschen Sie Ihren Browser-Cache und prüfen Sie, ob Sie der Lösung zustimmen.

    — Translated with Google —

    Thank you for the login, I added the first function to make the description box full width on your product pages, and then randomly checked them. The function seems to be working good.
    I didn’t find any of the videos on product page to have the same issue as on your test page, so I didn’t add the css code block.
    Please clear your browser cache and check to see you agree to the solution.

    Best regards,
    Mike

    in reply to: Menu not appearing on mobile, live site, enfold 4.4.1 #1018090

    Hi,
    I noticed that in the console you have this error:

    Failed to set referrer policy: The value '' is not one of 'no-referrer', 'no-referrer-when-downgrade', 'origin', 'origin-when-cross-origin', 'same-origin', 'strict-origin', 'strict-origin-when-cross-origin', or 'unsafe-url'. The referrer policy has been left unchanged.

    and I found this solution: Failed to set referrer policy error
    that may shed so light on it from within your CDN, cache plugin, or .htaccess file.

    Please go into your .htaccess file and find and change the following:
    Header set Referrer-Policy “”
    to
    Header set Referrer-Policy “origin”

    or see if this is a option in your CDN

    Best regards,
    Mike

    in reply to: Sidebar #1018087

    Hi,
    I’m not familiar with this, all sales and licenses are managed by Theme Forest. Please try contacting them to to resolve this as they will have the records and ability to issue a new license, or add the purchase to your account.

    Best regards,
    Mike

    in reply to: Menu not appearing on mobile, live site, enfold 4.4.1 #1017891

    Hi,
    I will ask the team to check on iPhone and post a screenshot, I included the Android screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: 2 Buttons in AJAX PORTFOLIO? #1017887

    Hi,
    Sorry I don’t see “Đăng ký” on your page, but you can create a popup following these steps: Lightbox popup
    Then to collect customer data you could add a contact form to the popup by adding the contact form shortcode.
    Please let us know if you need a hand with setting this up.

    Best regards,
    Mike

    in reply to: Sidebar #1017880

    Hi,
    Glad this helped.
    The latest version is 4.4.1, try going to your Theme Forest account and downloading the latest version, and manually updating via FTP.
    First please make a full backup using your webhost backup tools.
    Then via FTP, look for the “enfold” folder at /wp-content/themes/enfold/ and rename to “enfold-old” then upload the new version as the folder “enfold”
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.
    Once you have cleared your browser cache and tested that your site is working correctly, you can delete the old folder “enfold-old”.
    If for some reason you want to go back to the old version, simply remove the new folder and change the name of “enfold-old” back to “enfold”
    There have been many changes since v4.0.7, so you may need to make a few minor adjustments once you update.
    If you don’t feel comfortable with these steps, we can assist if you post FTP access in the Private Content area, and link to your copy of Enfold (that you download from your Theme Forest account) in DropBox or Google drive.

    Best regards,
    Mike

    in reply to: Change Frame Color in Contact Form #1017700

    Hey gubano,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #wrap_all .valid  .input_checkbox_label{color:#729ae5 !important; }
    #top #wrap_all .valid .text_input, #top #wrap_all .valid .text_area, #top #wrap_all .valid .select{border:1px solid #729ae5 !important; }

    Best regards,
    Mike

    in reply to: Adding JS code to the body #1017698

    Hi,
    You should place it before the last ?> you can move that down a few lines, it is the end of the file.
    Your function should look like this:

    <?php 
    
    // logo personnalise
    function childtheme_custom_login() {
    echo '<link rel="stylesheet" type="text/css" href="' . get_bloginfo('stylesheet_directory') . '/login.css" />';
    }
    
    add_action('login_head', 'childtheme_custom_login');
    
    function add_google_remarketing(){
    ?>
    <script type="text/javascript">
    var districtmPixel = {};
    districtmPixel.revenueValue = '0.00';
    (function(){
    var dm = document.createElement('script');
    dm.async = true;
    dm.src = '//cdn.pixlads.com/agencies/1/advertisers/1163/audience.js';
    var ref = document.getElementsByTagName('script')[0];
    ref.parentNode.insertBefore(dm, ref);
    })();
    </script>
    <?php
    }
    add_action('wp_footer', 'add_google_remarketing');
    
    
    ?>

    Please make these changes via FTP or your webhost file manager, so if you make a mistake and your site crashes you can edit the file back to the way it was.
    Notice how I placed your code with the