Forum Replies Created

Viewing 30 posts - 13,921 through 13,950 (of 25,536 total)
  • Author
    Posts
  • in reply to: Enfold photography #1060731

    Hey Ionita Pavel,

    Thanks for contacting us :)
    Enfold photography is just a demo of our Enfold theme and you can definitely import the demo once you use Enfold.
    As for shop, we are using woocommerce and it does allow different subcategories for different item/equipment.

    Best regards,
    Nikko

    in reply to: Problem with registration on https://kriesi.at/support/ #1060728

    Hey Maciej,

    Thanks for providing your purchase code and email.
    I have temporarily set your password which I posted in private content.
    Please try to login with it.

    Best regards,
    Nikko

    in reply to: User #1060724

    Hey Hermann Floimayr,

    I checked the purchase code you gave and couldn’t find any user associated with it.
    Please try to register here: https://kriesi.at/support/register/
    I have moved the purchase code you posted in private content, so it’s not visible to the other users.

    Best regards,
    Nikko

    in reply to: Edit contact form thank you message #1060717

    Hey buddy1,

    In the Contact Form, you’ll find Autorespond Text, the content inside it is sent to the email of the user who submitted the form, just modify it there.
    Then for the thank you page, there’s also this option What should happen once the form gets sent? change this to Redirect the user to another page.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: How To Make Link Unfollow? Please Help! #1060711

    Hi Gala,

    Try adding this php code in functions.php:

    add_filter('the_content', 'my_nofollow');
    add_filter('the_excerpt', 'my_nofollow');
     
    function my_nofollow($content) {
        return preg_replace_callback('/<a[^>]+/', 'my_nofollow_callback', $content);
    }
     
    function my_nofollow_callback($matches) {
        $link = $matches[0];
        $site_link = get_bloginfo('url');
     
        if (strpos($link, 'rel') === false) {
            $link = preg_replace("%(href=\S(?!$site_link))%i", 'rel="nofollow" $1', $link);
        } elseif (preg_match("%href=\S(?!$site_link)%i", $link)) {
            $link = preg_replace('/rel=\S(?!nofollow)\S*/i', 'rel="nofollow"', $link);
        }
        return $link;
    }

    Best regards,
    Nikko

    in reply to: Spacing between Avia Elements #1060706

    Hi TheGrinch18,

    Glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: refunds #1060705

    Hey Camille,

    Thanks for contacting us.
    Since we are selling our themes in Themeforest, our refund policy is dependent on Themeforest’s refund policy which you can check here: https://themeforest.net/page/customer_refund_policy

    Best regards,
    Nikko

    in reply to: Content Slider Transition Time #1060703

    Hey Dan,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .slide-entry-wrap {
        transition: all 1s !important;
    }

    this will cause the transition to happen in 1s just change it to any values like 0.8s or 2s.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Header customization and upgrade issues #1060702

    Hey Toffy,

    Options in the header should be found in Enfold > Header, but logo is on Enfold > Theme Options.
    I have checked on your site and it’s still using Enfold 4.4.1.
    Since there’s a large gap between the version you are currently using and the latest version of Enfold, try creating a stage site first and do the updates there first instead on your live site.
    You can check on this post how to create a stage site: https://themeisle.com/blog/wordpress-staging-site/

    Best regards,
    Nikko

    in reply to: Megamenu align children to left #1060698

    Hey wacky32,

    This code you posted above should work:

    #top #header .avia_mega_div > .sub-menu > li > ul > li a {
      padding: 3px 12px 3px 0 !important;
    }

    however upon inspecting the link you gave, the css isn’t fetched.
    Can you give us a screenshot of your Quick CSS, showing the code.

    Best regards,
    Nikko

    in reply to: Header menu #1060697

    Hey robertoKM,

    I can’t reproduce the same thing as you have on your site.
    Can you give us a link to your site? so we can check further.

    Best regards,
    Nikko

    in reply to: Cannot update Enfold #1060695

    Hi Jon12345,

    Glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Demo Content is not importing, fresh WordPress install #1060694

    Hey BusterSenshi,

    Thanks for giving us access.
    I tried uploading images on your site but it returns:

    HTTP Error.

    Even with a default wordpress theme.
    Can you try the solutions on this post: https://themeskills.com/fix-http-error-when-uploading-images-to-wordpress/
    Or try to ask your webhost to fix the issue.

    Best regards,
    Nikko

    in reply to: Display problem in browsers edge & internet explorer #1060130

    Hey Sorinwd,

    Can you give us a screenshot on the issue showing on your end?

    Best regards,
    Nikko

    in reply to: Custom Links for Color Sections not working #1060128

    Hi Shezzaw,

    Glad to hear that :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Google maps error – Too many requests at once #1060127

    Hi kinnear,

    Glad that it’s resolved. :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Jan 26 2019 Theme wont update #1060126

    Hey waynerigley,

    Try to extract the zip file and you should find another zip file inside called enfold.zip, this is the one you should upload.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Download failed. A valid URL was not provided. #1060124

    Hi Steamed,

    Yes you can use cpanel and use a file manager.
    You just need to download the latest version of enfold from envato, delete the old enfold theme (do this if you didn’t modify any files in the enfold theme) then add the enfold theme folder.
    Make sure to have a backup first, just in case.

    Best regards,
    Nikko

    in reply to: Change the image size of the"entries with sidebar" #1060120

    Hi Ganubis,

    You can also use this code then use an image regeneration plugin:

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
      $size['entry_with_sidebar'] = array('width'=> 809, 'height'=> 403);
      return $size;
    }

    Or another alternative is just to use Simple Image Sizes plugin (can change the image size and regenerate images). Anyway, glad that it’s all good and thanks for sharing what worked for you :)

    Best regards,
    Nikko

    in reply to: Theme Demos #1060117

    Hi perihelionweb,

    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,
    Nikko

    in reply to: Enfold v4.5.3 not working with WordPress v5 #1060116

    Hi georgiamoon,

    I tried to check on your site with the credentials you gave however it doesn’t work, this is the error I get:

    ERROR: The username or password you entered is incorrect.

    Best regards,
    Nikko

    in reply to: Update 4.5.2 to 4.5.3) doesn't work #1060113

    Hi,

    Can you try to update again?
    Some users have reported the same but was able to successfully update their site.
    There might be some issues with Envato’s server which causes the failure to download and update the theme.
    @Alex, thanks for helping out :)

    Best regards,
    Nikko

    in reply to: Enfold 4.5.2 blocking Pagespeed, SEM Rush etc. #1060112

    Hi aderal2016,

    Glad that it’s resolved :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: UPDATE FROM 4.5.2. NOT WORKING #1060109

    Hi Lex,

    Some users have reported the same.
    There might be some issues with Envato’s server.
    Glad that it’s all good now :)

    Best regards,
    Nikko

    in reply to: Cannot update Enfold #1060107

    Hi Jon12345,

    If you haven’t done any modifications on the Enfold theme files, most likely you won’t lose anything, data is stored in the database and it’s the files that’s only changed during the update.
    To make sure just make a backup first, also create a staging site first (basically just a duplicate of your site on your subdomain) and do the update on the staging site first and all is good there then 99% of the time you will not experience any issues when you update your live site. But if the update will cause lose of data, formatting or layout then you’ll see it first in the staging and try to fix it there without risking the live site. You can check on this link on how to create a stage site: https://themeisle.com/blog/wordpress-staging-site/

    Best regards,
    Nikko

    Hi Angelo,

    Glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: [4.5.3] Enfold 4.5.3 wants to update to version 4.5.3 #1060088

    Hi meuwessen,

    Glad that it’s fixed :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Font – Burger menu #1060087

    Hi info224,

    Glad that you were able to resolve it :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: can't fix large gap on shop pages mobile #1060067

    Hi hotspot01,

    I have added this css code in your Quick CSS which should work, however the new css isn’t fetched because of the caching:

    @media only screen and (max-width:479px) {
      .responsive .logo img,
      .responsive #top #wrap_all #header {
        max-height: 80px !important;
      }
    
      .responsive #top .av-main-nav #menu-item-search {
        margin-top: -34px !important;
      }
    }

    Best regards,
    Nikko

    in reply to: Problems – Enfold x woocommerce bookings #1060059

    Hey mateus1707,

    Can you give us also a link to your site? as well as the screenshots with the issue? so we can try to check and give you css codes that should help.
    You can post the information in private content, so it’s only visible to the moderators.

    Best regards,
    Nikko

Viewing 30 posts - 13,921 through 13,950 (of 25,536 total)