Forum Replies Created

Viewing 30 posts - 23,221 through 23,250 (of 35,204 total)
  • Author
    Posts
  • in reply to: Can't import any demo. #1063435

    Hi,
    Thanks for the login, I took a look at your settings and everything looked fine, then I uploaded a couple of images, such as one that was:
    File size: 6 MB
    Dimensions: 5760 × 3840
    and I didn’t find any errors with the uploading.
    When you had the error what did it say? Are you still having the error?

    Best regards,
    Mike

    Hey YourFriendInRVK,
    Your version 4.3.1 won’t be able to update automatically from the back end because Envato (Theme Forest) has stopped using the API and is now using a token system, thus the ” Update Failed: Download failed. A valid URL was not provided”
    What error, or “complaint” are you getting with FTP?

    In your case I recommend, looking 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”

    Also ensure that your PHP version is at least v5.6, v7.0 is better. If you would like a hand with this, please use your webhost backup tool to backup your site, and provide admin and ftp access in the Private Content area.

    Best regards,
    Mike

    in reply to: Portfolio Grid One Column #1063411

    Hey lowry_sam,
    Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-102 .inner-entry {
      display: flex !important; 
      flex-direction: row-reverse !important; 
    }
    #top.page-id-102 .isotope-item.special_av_fullwidth .av_table_col {
        text-align: right !important; 
        display: table !important; 
    }
    #top.page-id-102 .isotope-item.special_av_fullwidth .av_table_col.grid-content {
        margin-top: 12%;
    }
    #top.page-id-102 .avia-arrow {
        left: -.3% !important;
    }
    #top.page-id-102 .av_table_col.portfolio-entry.grid-content {
        padding-top: 4% !important; 
    }

    This code is designed for the one portfolio page so that it won’t interfere with other pages.

    Best regards,
    Mike

    in reply to: change "from" in the contact form #1063408

    Hi,

    @avdprojects
    to change the from address of your email, use this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avf_form_from', 'avf_form_from_mod', 10, 3);
    function avf_form_from_mod($from, $new_post, $form_params) {
    	global $enfold_custom_from_header;
    	$enfold_custom_from_header = $from;
    	$from = " (Email address hidden if logged out) ";
    	return $from;
    }
    
    add_filter('avf_form_autoresponder_from', 'avf_form_autoresponder_from_mod', 10, 3);
    function avf_form_autoresponder_from_mod($from, $new_post, $form_params) {
    	global $enfold_custom_from_header;
    	return $enfold_custom_from_header;
    }

    please change the ” (Email address hidden if logged out) ” to your email address.

    Best regards,
    Mike

    in reply to: Could not connect to Mailchimp with this API Key #1063404

    Hi,
    Sorry I don’t know the IP address of the mailchimp API, but you could ask the mailchimp support. For debug, we have a debug mode for the advanced layout builder, which can read about here: Enable Avia Layout Builder Debug
    minimum PHP version is 5.6 and we recommend a minimum of 20mb memory, both of which your site meets.

    Best regards,
    Mike

    in reply to: KONTAKTFORMULAR landet im SPAM #1063401

    Hi,
    Sounds like you will need to use a SMTP plugin so that your email is actually sent by a SMTP server, spam filters can tell the difference from faked or spoofed email and email sent from a real address.
    The first step would be to set up a email account on your server, and then use a plugin such as: WP Mail SMTP, then when email is sent it is sent from your email server, not your website.

    Best regards,
    Mike

    in reply to: Enfold 2017 #1063197

    Hi,
    Sorry the same option is not available in the “masonry gallery”, for this you change the landscape and portrait layout by the images that you upload:

    Perfect Automatic Masonry: Display a grid where most images get the same size, only very wide images get twice the width and very high images get twice the height. To qualify for “very wide” or “very high” the image must have a aspect ratio of 16:9 or higher

    Best regards,
    Mike

    in reply to: Origami slider not showing on IE correctly #1063190

    Hi,
    I understand, but the limitation is within the IE11 browser, which has been retired for Edge. But many of the simpler effects work with IE11.

    Best regards,
    Mike

    in reply to: Color change of all bolds in text block only #1063180

    Hi,
    As I understand you want to change the strong tags in the text block element paragraphs, please try:

    #top .avia_textblock p strong {
    color: red !important;
    }

    Then clear your browser cache and any cache plugin, and check.
    If this doesn’t help please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: Can't import any demo. #1063034

    Hi,
    If I understand correctly, you were able to install the “small business demo” and you are happy, but you can’t edit the text with the advanced layout builder?
    Please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Updates Crashed It #1063018

    Hey michaeldgilbert,
    I see that you are using WordPress v5.0.3 which has major changes in it, please update to Enfold v4.5.3 as it is designed to work with this version of WordPress.
    You will have to manually update Enfold, but you can follow these steps to easily do so.

    Best regards,
    Mike

    in reply to: Origami slider not showing on IE correctly #1063011

    Hey info224,
    I checked your slider in Chrome, Edge, & IE11, and while it seems to work well in Chrome & Edge, it is unfortunately not working in IE11, and I don’t believe there is anything that can be done for that. IE11 was never fully compliant and always troublesome.
    Sorry I wish I had better news for you.

    Best regards,
    Mike

    Hi,
    I took a look at your form and found that the 20px bottom margin is coming from “iframeid”
    to correct, use this css:

    #top #custom_html-2 input#iframeid {
    margin-bottom: 0px !important;
    }

    Best regards,
    Mike

    in reply to: Could not connect to Mailchimp with this API Key #1063000

    Hey Audiolia,
    I tested your API on my localhost and it worked, but when testing it on your site I found no errors.
    Have you asked your webhost if they are blocking any IP address? Perhaps they can look at the server log to see if the request is being blocked.

    Best regards,
    Mike

    in reply to: Enfold ongoing support #1062999

    Hey Gary Peterson,
    I see that you are using version 4.4.1, this version was using the Envato (Theme Forest) API for updates, which Envato doesn’t use any more, they have gone to a “Token” system for updates. You will need to manually update.
    Please see this post on how to use a free plugin that will allow you to manually update via the WordPress Theme panel by uploading the enfold.zip file.
    Otherwise you can update via FTP, please remember, if you update manually you will need to delete the current enfold folder and then upload the new one. Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.
    My recommendation is to go to your Theme Forest account and download the updated Enfold v4.5.3 and manually update it, then going forward it will use the new Token keys. All users will need to generate a new token for updates. Please see this documentation page

    Best regards,
    Mike

    in reply to: moving enfold from one domain to the other #1062996

    Hey siteitltd,
    Enfold & Envato doesn’t compare your domain for the license, as long as your license is only on one domain you will be fine.
    I would recommend using the Duplicator plugin, because it will correct the domain and path within the database so that you can move to a new domain.

    Best regards,
    Mike

    in reply to: Masonry Gallery not working #1062995

    Hey AlpineWeb,
    I have taken a look at your page and see the gallery element and the masonry element, but I not sure I understand what the issue is with the masonry element, I see 4 columns.
    Please try to explain a little more.
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Can't import any demo. #1062992

    Hey papaulo,
    Please check your PHP settings in your webhost or cPanel, to see if the secure options are activated.
    “allow_url_fopen, “allow_url_include” and “register_globals” are “off”
    Try turning these “on”.
    If this doesn’t help we can assist in installing the demo for you, it looks like you want the “construction demo”
    Please include a admin login & FTP access in the Private Content area, please note that installing a demo will delete all of your current content and settings.

    Best regards,
    Mike

    in reply to: Change Color for active #1062987

    Hi,
    Sorry for the late reply, I see that for the pages that have a transparent header the current menu items were black, and not orange.
    To fix please try this css:

    #header.header_color.av_header_transparency .av-main-nav > li.current_page_item > a .avia-menu-text {
        color: #F06F29 !important;
    }

    Best regards,
    Mike

    in reply to: Enfold 2017 #1062983

    Hi,
    I believe you want to know how to use the “portrait” and “landscape” tags to change the layout of the masonry items when using the “Perfektes manuelles Masonry” option. So I went to your link to the portfolio page “test-portfolio” “/portfolio-item/finn-2/”
    all of the items were the same square box.
    Then I went to your portfolio pages and use the “quick edit” so I could add “tags” (Schlagwörter) using the “portrait” and “landscape” tags to change the layout of the masonry items:
    2019-02-04-202538
    and this changed the layout on the page:
    2019-02-04-202851
    Please take a look.

    Best regards,
    Mike

    in reply to: recaptcha doesnt work correctly on enfold contact form #1062960

    Hi,
    The issue that I see is that there is a extra recaptcha that is not from the plugin, I can’t find any code adding this recaptcha. Very strange, did you try disabling your other plugins? Can we also try disabling your plugins to test?

    Best regards,
    Mike

    in reply to: Footer diffrerent height than supposed to be #1062957

    Hi,
    Thanks for your investigation and feedback.
    I believe that this is a rare case, as I have checked your page with Firefox again and it seems to be normal
    If your satisfied that this is not the Enfold theme, shall we go ahead and close this then?

    Best regards,
    Mike

    in reply to: Turn off shortcodes on bottom of pages #1062953

    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: Phone Number Showing Up Twice #1062952

    Hi,
    Thanks for the login, I see that the “header_meta” container with the extra phone number was showing between 767px & 782px, and was not needed, so please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (min-width: 767px) and (max-width: 782px) { 
    #header_meta {
    display: none !important;
    }
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Wordcloud #1062950

    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: How to add custom icons to a button? #1062949

    Hi,
    Thanks, I was able to import the icon file and use the icons, even in a button:
    2019-02-04-175900
    2019-02-04-180212
    Please include a admin login in the private content area so we can see why it’s not working on your site.

    Best regards,
    Mike

    in reply to: Different header logo for different sections of website #1062944

    Hi,

    @alsterb
    glad to hear, we will leave this open to hear back from you that it’s solved.


    @Guenni007
    thanks for the suggestion.

    Best regards,
    Mike

    in reply to: Masonry blog layout does not display #1062940

    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: Social Media Icons in Mobile Menu #1062938

    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: Hide product warning #1062704

    Hey kellyCraftMedia,
    Thanks for the link, you could use this css:

    #top.home .av_three_fifth.avia-builder-el-5 p {
    display: none !important;
    }
    

    but the problem is that there is not a class on the page for not logged in users, so this will hide the section for everyone.
    It would be better to add it as a function with the “!is_user_logged_in()” in the functions.php
    So give this a try in your functions.php:

    function hide_message_not_logged_in(){
        if( !is_user_logged_in() && (is_page('home') ){
            echo '<style>
        #top.home .av_three_fifth.avia-builder-el-5 p {display: none !important;}
      </style>';
        }
    }
    add_action( 'wp_head', 'hide_message_not_logged_in' );

    If this works, then I would improve it by adding a custom class to the element with the message, right now it’s using the default element class “avia-builder-el-5” but this could change if you edit the page.

    Best regards,
    Mike

Viewing 30 posts - 23,221 through 23,250 (of 35,204 total)