Forum Replies Created

Viewing 30 posts - 28,831 through 28,860 (of 34,339 total)
  • Author
    Posts
  • in reply to: Can't Drag and Drop Widgets #911645

    Hi,
    All of the widgets seem to be working at the testing site, please try.

    Best regards,
    Mike

    Hello Pardeep,
    On my initial investigation once I found that disabling the plugins seem to solve the issue it seem to make since as we see these types of conflicts often. But now that you say that the issue continues, I believe that this is a server issue as “The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.” is the standard Apache response to a 503 error.
    Please check with your webhost to review the error logs and if they can address.

    Best regards,
    Mike

    in reply to: Enfold Portfolio Thumbnails are not resizing. #911510

    Hi,
    I took a look at the portfolio settings and set the “Portfolio Grid Image Size” so they would all be the same size. They seem to be showing much better now, please check.
    Perhaps this was the setting you had a while back, as you said you thought this issue had started occurring before the update.

    Best regards,
    Mike

    in reply to: Add a new social icon to top of page #911486

    Hi,
    I have adjust the code here and tested on my localhost
    Step 1: add this code to your functions.php
    under: if(isset($avia_config[‘use_child_theme_functions_only’])) return;

    function avia_add_custom_icon($icons) {
    $icons['houzz']	= array( 'font' =>'fontello', 'icon' => 'uf27c');
    return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons['Houzz'] = 'houzz';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Step 2: Download the Houzz font from http://fontello.com/ (use the fontawesome one) and upload to Enfold/Import/Export and click on the Upload/Select Fontello Zip Font
    Step 3: At this point, you should see the Icon that you can use in the drop-down menu of the Enfold/Social Profiles section.

    Best regards,
    Mike

    in reply to: Google Maps: "Sorry. We have no imagery here." #911468

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

    Best regards,
    Mike

    in reply to: Problems display different browsers #911458

    Hi,
    When I look at the menu on the two pages they both look clear to me, but I think are are asking for a thinner font. The font on your site is Lora and on Google Fonts you can see the thinnest it is offered at is 400, so the 100 in your css won’t make a change. I would recommend changing fonts if you want a thinner font. The font in the menu on the second site is cardo-reg, but it doesn’t look thinner to me.

    Best regards,
    Mike

    in reply to: WooCommerce checkout text fields not centered in mobile view #911454

    Hi,
    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top .col2-set .col-1, .responsive #top .col2-set .col-2, .responsive .cart-collaterals .shipping_calculator {
        width: 100%!important; 
    }
    }

    Best regards,
    Mike

    in reply to: Can't Drag and Drop Widgets #911451

    Hi,
    I’m unable to find the login page on this testing site, /wp-admin/ leads to a not found error, please advise.

    Best regards,
    Mike

    in reply to: WooCommerce checkout text fields not centered in mobile view #911118

    Hey frodolini,
    Please include the url to the page in question so we can take a closer look. On my localhost the default setup is two columns:
    2018-02-12_074719

    Best regards,
    Mike

    in reply to: CSS code for contenttable styling #911116

    Hey netfex,
    Try this code in the General Styling > Quick CSS field:

    #top.page-id-1049 th {border-width: 0px!important; }
    #top.page-id-1049 td {border-width: 0px!important; }
    #top.page-id-1049 tr th:first-child, tr td:first-child{border-left-width: 0px!important; }
    #top.page-id-1049 tr:first-child th, tr:first-child td{border-top-width: 0px!important; }
    

    Please clear any cache plugin and your browser cache and check.
    If this is not what you had in mind, please include a screenshot to point out which borders to remove.

    Best regards,
    Mike

    in reply to: Can't Drag and Drop Widgets #911109

    Hi,
    I see that you have a child theme and 4 Enfold themes, which all seem to be named the same. So it is hard to tell which one the child theme is using. This could be a conflict.
    2018-02-12_071930
    Try keeping the child theme and v4.2.3, and removing the others. But I recommend backing up your site and theme settings, as I have seen a similar setup before that turned out to be a onion.
    If that doesn’t solve, then I see you have many woocommerce plugins and custom functions in your child theme functions.php.
    I recommend trying to disable your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
    If this doesn’t solve then try removing all of your custom functions, if that resolves the issue, restore then one at a time until you find the one that is the cause. Please reload the widgets page between each setting change.
    Please let us know what you find.

    Best regards,
    Mike

    Hi,
    The polylang plugin seems to work on my localhost, perhaps another plugin is conflicting with it, the way to check that would be to disable all of the others, and if the polylang plugin works again turn on the others one at a time to see when the conflict occurs.

    Best regards,
    Mike

    Hi,
    Ok, so I had misunderstood which slider we wanted to hide, I thought it was the top one, but turns out it is in the 1/2 column. So forget the whole 1/2 column text being full width thing :)
    So this is the code I added:

    @media only screen and (min-width: 1040px) { 
    .homevideo {display:none !important; }
    }
    
    @media only screen and (max-width: 1039px) { 
    .homeslider {display:none !important; }
    }

    and I renamed your homepage elements & the Saryangdo hike post elements and unchecked the screen options for the elements, and cleared all 3 caches!
    Now the video in the slider auto plays for desktops & the video element shows for tablets and mobile.
    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I have found that deactivating some of your plugins solved the issue, please try activating them one at a time to find the one causing the conflict.

    Best regards,
    Mike

    in reply to: Add a new social icon to top of page #911031

    Hi,
    Please follow this solution for Adding Custom Social Icons to the Theme Options
    After you download the Fontello icon, this is an example of what your code should look like:

    function avia_add_custom_icon($icons) {
    $icons['houzz']	= array( 'font' =>'houzz', 'icon' => 'ue800');
    return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    function avia_add_custom_social_icon($icons) {
    $icons['Houzz'] = 'houzz';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Your new icon may appear at the bottom of the list.

    Best regards,
    Mike

    in reply to: How to display portfolio items in modal box #911021

    Hi,
    Sorry, The masonry element doesn’t open the images in lightbox.
    But Please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    Best regards,
    Mike

    in reply to: Aria Fullwidth Slider broken #910800

    Hi,
    Thank you for the kind words, we are glad to help sort it out. Unless there is anything we can assist with shall we close this then?
    If you feel so inclined, sharing a review on Theme Forest would be very nice.

    Best regards,
    Mike

    in reply to: How to display portfolio items in modal box #910799

    Hi,
    Try using the Portfolio Grid element, it will give your the sorting and open the images in lightbox.

    Best regards,
    Mike

    Hey iedigitaldesign,
    I see that your fullwidth submenu is no longer underneath, perhaps you change your mind about using it, in case you still wanted to know why you had the issue, it was because your widget had padding covering over the submenu. Removing the padding and positioning the widget with “top” should solve this. Please see screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Site problems after WP update #910797

    Hi,
    Please endure that your webhost has PHP v7 installed, if that doesn’t solve then try Try to update manually via FTP: https://vimeo.com/67209750
    If you are still having the issue then Please open a new thread so we can assist, in these case we may want communicate in the Private Content area, but as this is not your thread you will not see what we write, nor will your shared info be private.

    Best regards,
    Mike

    Hey theonlykieran,
    I see that your services section has “services” as the ID, yet your Testimonials section doesn’t have a added ID. It may be a good idea to add a ID to that section, if you do then change the “av_section_4” in the code below to your new ID.
    Otherwise this code will work for you today, please add this code in the General Styling > Quick CSS field:

    #top.home #services,#top.home #av_section_4 {
        background-size: cover!important; 
    }

    Please clear any cache plugin and your browser cache and check.

    Best regards,
    Mike

    Hey theonlykieran,
    When I examine your page, the css above is working, perhaps try clearing your browser cache.
    Please see screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: guvenlikmerkezi.com.tr #910789

    Hey guvenlikmerkezi,
    I see you are using a old version of Enfold & WordPress with a short PHP Time Limit (90s)
    Please first ask your webhost to change your PHP Time Limit to no limit and create a full backup.
    Then try to update Enfold manually via FTP: https://vimeo.com/67209750 and also update WordPress and your plugins.
    You should also ask your webhost to update your PHP to version 7.

    Best regards,
    Mike

    in reply to: HTTP ERROR 500 #910787

    Hey sahelare,
    Please try these options, first ensure your webhost has PHP v7 installed. If that doesn’t solve then download your functions.php via ftp and remove any custom functions that you may have added, and upload again.
    If that doesn’t solve then there might be some corrupted files, so please try installing a fresh copy from your themeforest account via ftp over writing the old files. Here is a short tutorial on how to install the theme via FTP, in case you are not sure how that works:
    Install Enfold over FTP

    Best regards,
    Mike

    in reply to: Can't Drag and Drop Widgets #910785

    Hi,
    Please ensure that your webhost has PHP v7 installed, if this doesn’t solve then we will need a admin login to investigate.
    Please open a new thread with the admin login in the Private Content area, because as this is not your thread your info will not be private.

    Best regards,
    Mike

    Hey winnieandbuzz,
    Please try this solution: https://kriesi.at/support/topic/linking-to-filtered-portfolio-ajax/#post-430225

    Best regards,
    Mike

    in reply to: How to display portfolio items in modal box #910783

    Hey farahjanjua,
    Please try using the masonry gallery element, and choose lightbox from the Image Link option. The masonry element doesn’t open the images in lightbox.

    Best regards,
    Mike

    in reply to: Add a new social icon to top of page #910782

    Hey reelhomes2017,
    Try going to Enfold Theme Options > Social Profiles > Your social profiles and click the green plus sign, then choose your new profile.

    Best regards,
    Mike

    in reply to: Can't import LayerSlider for Enfold 2017 Demo #910780

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

    Best regards,
    Mike

    in reply to: Can't import LayerSlider for Enfold 2017 Demo #910777

    Hi,
    Thank you for sharing your solution, please ask your webhost to install PHP ZipArchive extension for you so you won’t have issues with other elements in the future, such as importing the icon packs.
    Shall we close this then?

    Best regards,
    Mike

Viewing 30 posts - 28,831 through 28,860 (of 34,339 total)