Forum Replies Created

Viewing 30 posts - 24,061 through 24,090 (of 35,189 total)
  • Author
    Posts
  • in reply to: Gutenberg Editor – #1042792

    Hi,
    Thanks for the confirmation, we look forward to your feedback on the plugins available.

    Best regards,
    Mike

    in reply to: URGENT! White page in frontend and backend after Update #1042790

    Hi,
    If your new theme folder is named the same as your old theme folder was there should be no changes in your design.
    So to correct try naming your new theme folder the same as your old one was, the old one should be named to something else.
    The reason you should not just upload to the same folder is there may be a directory structure change within the theme folder, but the plugin above also works well.

    Best regards,
    Mike

    in reply to: Upgraded to WordPress 5.0 now Avia builder is gone #1042788

    Hi,
    I was not able to login to the site, but I could ftp.
    I believe the issue is that the enfold style.css has been replaced with your child theme style.css, I’m surprised that you are not getting warnings that the theme is broken.
    You will want to export your theme settings and save, because you may lose your settings when we change the theme back to Enfold, at which time we can update and them import your theme settings.
    It should go smoothly, but I recommend making a full backup of your site using your webhost’s backup tool.
    Would you like me to do this?
    Please include a admin login & url in the Private Content area.

    Best regards,
    Mike

    in reply to: 500 error after updating Enfold theme #1042781

    Hi,
    I updated your theme by uploading it via your cpanel file manager, it is strange that you updating to WP 5 would cause this crash.
    Perhaps the update didn’t finish and some of the core files are not correct? I was able to get your front end to show, but not the backend.
    I see that you are using duplicator-pro, so you could try to replace the WP core files, or replace the whole site.
    Do you have a duplicator-pro backup?

    Best regards,
    Mike

    Hi,
    For your text and image, the space is created by the margin of the column, to remove this space for only this one element, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.postid-2065 .entry-content-wrapper .av_one_third {
        margin-left: 1% !important; 
    }

    Please adjust the margin to suit. I would not recommend changing this for all elements because it could cause some unwanted effects, but you are welcome to try. Simply remove the page ID.
    2018-12-09-104913
    For around the map, your code must have
    <pre> tags in it, it should not, please remove.
    2018-12-09-105545

    Best regards,
    Mike

    in reply to: Enfold 4.4.1 & Gutenberg #1042769

    Hi,

    @info224
    , Thank you for your feedback

    Best regards,
    Mike

    in reply to: Element Visibility not working, leaves empty space #1042766

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Sin Boton de Editor avanzado en CPT Gutenberg WP 5.0 #1042758

    Hi,
    Thank you for the images, if I understand correctly,
    you have a custom post type and the ALB Builder is not showing for it.
    I tested this on my localhost, and see that this was working for WordPress v4.9
    But now not WordPress v5.0
    I found that you had curly quotes in your snippet code that I corrected and now you have the portfolio fields at the bottom of your custom post type:
    2018-12-09-093957

    but you still have no ALB button, I will ask the dev team for advice.

    Best regards,
    Mike

    in reply to: Sin Boton de Editor avanzado en CPT Gutenberg WP 5.0 #1042740

    Hi,
    No estoy seguro de que la traducción esté funcionando bien, pero intentaré ayudar. Veo que el “generador de ALB” está funcionando, pero el “generador de fusión” no debería aparecer.
    No estoy seguro de tu pregunta sobre “Capturar con CPT”, intenta agregar algunas imágenes para que me ayuden a entender.
    Gracias
    Por favor lea esto abajo

    Thank you for the login, I looked at creating a new page and found that I could use the ALB builder ok, but I believe there is a conflict with the Fusion Builder – I recommend disabling the Fusion Builder
    2018-12-09-065648

    Also your home page builder seems to work, but again the Fusion builder should not show:
    2018-12-09-070343

    Best regards,
    Mike

    in reply to: Can't update to Enfold 4.5.1 #1042624

    Hi,
    Thanks for the login, please check your page now :)

    Best regards,
    Mike

    in reply to: Upgraded to WordPress 5.0 now Avia builder is gone #1042621

    Hi,
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. 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 ).
    5. Click ” Submit “.
    6. 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,
    Mike

    in reply to: How to make a jQuery plugin work in a specific page #1042620

    Hi,
    I took a look at the script and found it to be small enough to include in your functions.php, and delete the js file, I believe this would be fine:

    function persistent_checkboxes(){
        if ( is_page('1392') ) {
        ?>
        <script>
    var PersistentCheckboxes = function(){
        var genKey, load, save, addListeners, init;
    
        var PAGE = window.location.href;
    
        genKey = function(id){
            return 'checkbox:'+ PAGE +':'+ id;
        }
    
        save = function(event){
            // Only inputs with an id will be saved.
            if(this.id === ""){ return; }
            localStorage.setItem(genKey(this.id), this.checked+"");
        };
    
        load = function(){
            jQuery('input[type="checkbox"]').each(function(i, elm){
                // Ignore checkboxes with no id.
                var key = genKey(elm.id);
                if(elm.id !== "" && key in localStorage){
                    elm.checked = localStorage.getItem(key) === "true";
                }
            });
        };
    
        addListeners = function(){
            jQuery(document).on('change', 'input[type=checkbox]', save);
        };
    
        init = function(options){
            // Only supported if localStorage is available.
            if(typeof(Storage) === "undefined"){ return; }
            load();
            addListeners();
        };
    
        init();
    
        return this;
    };
    
    
    // Let's get this party started!
    var persistentCheckboxes;
    jQuery(document).ready(function(){
        persistentCheckboxes = new PersistentCheckboxes();
    });
    </script>
    <?php
    }
    add_action('wp_head', 'persistent_checkboxes');

    You will still want to change the page ID to the page you wish it to work on.

    Best regards,
    Mike

    in reply to: URGENT! White page in frontend and backend after Update #1042617

    Hi,
    This sounds like an error that happens when one updates via FTP and tries to overwrite the enfold folder instead of replacing the theme folder. Does this sound possible?

    Please note that if you update via FTP, you will need to remove the old theme folder “enfold” first (via FTP) then upload the new “enfold” folder at /wp-content/themes/enfold/
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Please follow these steps to update to v4.5.1
    *Please ensure your “PHP Max Upload Size” is at least 20mb, because Enfold is 16.7mb.
    First go to your Theme Forest account and download the “Installable WordPress file only”.
    Downloading-the-wrong-zip
    1: please install the plugin: Update Theme and Plugins from Zip File
    2018-10-20-104358
    2: then go to WordPress > Themes > Add New > Upload
    2018-10-20-104649 2018-10-20-105401
    3: after the install, click “Return to Themes page” (NOT Activate)
    2018-10-20-105705
    4: success:
    2018-10-20-110104

    Best regards,
    Mike

    in reply to: Can't update to Enfold 4.5.1 #1042612

    Hi,
    I believe the error with contact page has to do with saving your page and reloading a couple of times, please see this sticky post
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Upgrading to 4.5 #1042609

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Full-width tabs and no crop images #1042608

    Hi,
    Thanks for the login, as I took a closer look I found the your images are not the compete words, please see links in the Private Content area.
    and the only images for them are very large, so they seem to be getting cropped when they are added to your tabs.
    Please try uploading some smaller images for the tabs, such as 200px wide.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Some user reported, that validating the token only works in incognito mode for them. One reason could be, that Envato stores cookies with login data/connection data in the browser and therefore might block requests.
    Please give this a try.

    Best regards,
    Mike

    in reply to: Upgrading to 4.5 #1042599

    Hi,
    Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Element Visibility not working, leaves empty space #1042598

    Hi,
    Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Can't remove default editor #1042597

    Hi,
    I took a look at your site and see that you have Enfold shortcode printing in the console:
    2018-12-08-155025
    I have not seen this before. How did you update Enfold, ftp?
    Did you overwrite the theme folder or did your delete the enfold folder and then upload the new one?
    Have you tried disabling your plugins? If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: URGENT! White page in frontend and backend after Update #1042591

    Hi,
    I took a look at your site and it seems to be working now, so I assume your update via ftp has solved your issue?
    I couldn’t login to the backend, so if you still need help please include the admin info and the admin url.
    I will assume that your ftp login is correct.

    Best regards,
    Mike

    in reply to: Enfold update fails #1042589

    Hi,
    If you didn’t edit any of the theme files Then you would not lose your settings, but if you did add scripts or functions to your functions.php you will want to copy them and save to add to your updated theme.
    I see that you have been trying to update for a while now, how about I help you?
    Please include a admin login & FTP access in the Private Content area.

    Best regards,
    Mike

    in reply to: Problems after update WordPress 5.0 #1042583

    Hi,
    I took a look at your site and see that your are using Enfold v4.4.1 with WordPress v5
    Please update to Enfold v4.5.1 to use WordPress v5
    Please see this sticky post.

    Best regards,
    Mike

    Hey BingoEnvato,
    Please include the url to the page in question so we can examine the elements.
    Will this be for only one text block section, or for all of them on your site?

    Best regards,
    Mike

    in reply to: How to make a jQuery plugin work in a specific page #1042579

    Hi,
    If you are using the instructions on the link above to add the script to your functions.php, then you can add the conditional statement:

    if ( is_page('1392') ) {

    and replace the number with your page number.
    So your code would look like this:

    function custom_script_name(){
    if ( is_page('1392') ) {
    ?>
    <script>
    // Your script here
    </script>
    <?php
    }
    add_action('wp_head', 'custom_script_name');

    If this doesn’t help, then please try including your script so we can assist further.

    Best regards,
    Mike

    in reply to: hide time in posts #1042577

    Hey ftt123,
    Please include the url to the page in question so we can examine the elements, you would like to hide the time, but not the date?

    Best regards,
    Mike

    in reply to: After-Update Error #1042575

    Hey KevinDuy2605,
    This sounds like an error that happens when one updates via FTP and tries to overwrite the enfold folder instead of replacing the theme folder. Does this sound possible?

    Please note that if you update via FTP, you will need to remove the old theme folder “enfold” first (via FTP) then upload the new “enfold” folder at /wp-content/themes/enfold/
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    If this doesn’t help, please include a admin login and ftp access in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: WordPress 5.0 and Enfold 4.5 #1042572

    Hi,
    Thanks for sharing your solution, I’m sure many will be glad to know. Unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Avia builder not loading on some pages #1042569

    Hey weddingmuseum,
    I took a look at your page and found that you are getting jQuery errors from admin-amp-page-builder.js
    Which is your AMP plugin.
    You also have this error:

    /wp-admin/admin-ajax.php:1 Failed to load resource: the server responded with a status of 404 ()

    which could be a security plugin blocking access to a folder or file, or the htaccess blocking access.
    Please try disabling your plugin, this this doesn’t help then ask your webhost if they see the cause in the server error log .

    Best regards,
    Mike

Viewing 30 posts - 24,061 through 24,090 (of 35,189 total)