Forum Replies Created

Viewing 30 posts - 27,811 through 27,840 (of 34,601 total)
  • Author
    Posts
  • in reply to: White screen with Enfold only #942321

    Hey JPGlobal,
    Please check with your webhost as to what the server logs say the error 500 is from, this is a Internal Server Error and could be from many things.
    I see you are using PHP Version: 5.4.45, updating to v7 sometimes helps.
    also try disabling your plugins.

    Best regards,
    Mike

    Hi,
    I updated your theme and your site is back up and running, please delete the folder “enfold-old” in \wp-content\themes\ via FTP.

    Best regards,
    Mike

    in reply to: Contact form fix on RTL #942316

    Hi,
    Can you please place the code block form on a test page so I can see? When I tested this on my localhost there were no spacing issues, see screenshot above, I tried to place the code block on your site myself but the code was not pasting correctly, seems the RTL was mis-placing the code, I thought it was because I’m on LTR.

    Best regards,
    Mike

    in reply to: footer #942295

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

    #nav_menu-4.widget #menu-footer li {
        display: inline-block!important; 
    }

    Best regards,
    Mike

    in reply to: smartphone sideways view messed up #942291

    Hi,
    The layerslider’s names are created automatically, I was guessing at them from experience in order to explain the code above.
    I took a look and found that you are also using a full width slider, under the layerslider, in much the same setup as I was trying to explain.
    So to illustrate better, I created a copy of your layerslider, and set the dimensions for a landscape phone, and moved the layers around so they would be shown.
    You will want to go in and edit them the way you like, right now it’s just too much stuff, too big. It was only to get you started.
    Then I added the css above to your General Styling > Quick CSS field, turned out my guess was right, I also added some code to hide the full width slider for landscape phones.
    Please check on http://www.responsinator.com/

    Thoughts:
    I wonder if converting your full width slider into a layerslider will work better for tablets 768px and portrait phones?
    I see your first layerslider is hidden under 989px, so it for desktops.
    so I recommend creating a new layerslider to take the place of your full width slider, try to create with the canvas width of 988px, this would be for tablets and portrait phones.
    Then edit the layerslider I created for landscape phones.

    Or if you like the way the full width slider looks on tablets, leave it as is.

    Best regards,
    Mike

    in reply to: Custom blog post template #942276

    Hi,
    I believe that you might find creating custom shortcodes will achieve this for you. In the future, as you change the output, all of the pages will be updated automatically.
    Please try this Shortcodes Generator

    Best regards,
    Mike

    in reply to: Phone # on Android Not Working Properly #942271

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Contact form fix on RTL #942269

    Hi,
    Let’s try something a little different, I copied the code of your contact form and changed the order so the button was first, then I added a class “inline” so any css we add wouldn’t effect any other form.
    Please add this code, your form, to a code block on your page:

    <form action="https://getprint.co.il/%d7%a6%d7%95%d7%a8-%d7%a7%d7%a9%d7%a8/" method="post" class="avia_ajax_form av-form-labels-hidden   avia-builder-el-13  el_after_av_one_full  el_before_av_image  av-custom-form-color av-dark-form " data-avia-form-id="1" data-avia-redirect=""><fieldset>
    	<p class="first_form form_element form_element_fourth modified_width inline"><input type="hidden" value="1" name="avia_generated_form1"><input type="submit" value="שלח" class="button" data-sending-label="Sending"></p>
    	<p class="form_element form_element_fourth inline" id="element_avia_1_1"> <input name="avia_1_1" class="text_input is_empty" type="text" id="avia_1_1" value="" placeholder="שם מלא*"></p>
    	<p class=" form_element form_element_fourth inline" id="element_avia_2_1"> <input name="avia_2_1" class="text_input is_phone" type="text" id="avia_2_1" value="" placeholder="טלפון לחזרה*"></p>
    	<p class=" form_element form_element_fourth av-last-visible-form-element inline" id="element_avia_3_1"> <input name="avia_3_1" class="text_input is_number" type="text" id="avia_3_1" value="" placeholder="דואר אלקטרוני*"></p>
    	<p class="hidden"><input type="text" name="avia_4_1" class="hidden " id="avia_4_1" value=""></p>
    </fieldset></form>
    

    then use this css:

    #top .avia_ajax_form .form_element_fourth.inline {
        width: 23.4%!important; 
        margin-right: 0 !important; 
    }

    Expected results:
    2018-04-15_135150

    Best regards,
    Mike

    in reply to: Preview / Shorten blog posts in archive / category #942254

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: smartphone sideways view messed up #942242

    Hi,
    This is because of the image size, if we give it a max-height it will not reach the edge without stretching it, which will not look good.
    But you can create a new layerslider for these sizes, 664px – 738px which will cover the 4 landscape sizes
    667 – 684 – 734 – 736 and add it below your current one on the page,
    then use these media queries, note it includes 2px below and above.
    your current layerslider we will call layer_slider_1, and your new one we will call layer_slider_2

    @media only screen and (min-width: 664px) and (max-width: 738px) { 
    div#layer_slider_1 {
    display:none!important;
    }
    }
    @media only screen and (max-width: 663px) {
    div#layer_slider_2 {
    display:none!important;
    }
    } 
    @media only screen and (min-width: 739px) {
    div#layer_slider_2 {
    display:none!important;
    }
    }

    In the layerslider set your canvas width 736 and the height you like, perhaps 200px, so you can see it and place the text where you would like.
    After you create the new layerslider, we will be happy to help adjust the media queries above.

    Best regards,
    Mike

    in reply to: Cache Minify Plugins #942235

    Hi,

    @SuperSportsUAE
    thanks for using Enfold, we will close this now.

    Best regards,
    Mike

    in reply to: SSL Mixed content for child theme .styles.css file ? #942226

    Hi,

    @gianmarizzi

    Please open a new thread so we can assist, we will want communicate in the Private Content area, with login info, but as this is not your thread you will not see what we write, nor will your info be private. Thanks for your patience and understanding.

    Best regards,
    Mike

    in reply to: Notice display on publishing #942225

    Hi,

    @norbou
    Please open a new thread so we can assist, we will want communicate in the Private Content area, such as your URL & admin login, but as this is not your thread your info will not be private. Thanks for your patience and understanding.
    In your new thread please provide admin login info and detail your issue.

    Best regards,
    Mike

    in reply to: Enfold-Editor lässt sich nicht mehr öffnen #942223

    Hi,
    Ich sehe, dass Sie Enfold v3.4.7 verwenden. Bitte versuchen Sie, Enfold v4.2.6 zu aktualisieren
    Versuchen Sie, manuell über FTP zu aktualisieren: https://vimeo.com/67209750
    Oder: http://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Bitte beachten Sie, dass Sie den Ordner “enfold” in / wp-content / themes / per FTP in “enfold-old” umbenennen und dann den neuen Ordner “enfold” hochladen sollten. Sobald Sie sehen, dass das neue “enfold” funktioniert, können Sie es löschen der Ordner “Enfold-Old”.
    Ansonsten, wenn es nicht funktioniert, benenne den neuen enfold-Ordner in “enfold-new” um und benenne den “enfold-old” zurück in “enfold” und lass es uns wissen.

    —–

    I see you are using Enfold v3.4.7 Please try updating to Enfold v4.2.6
    Try to update manually via FTP: https://vimeo.com/67209750
    Or: http://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Please note that you should rename the “enfold” folder in /wp-content/themes/ to “enfold-old” via FTP, then upload the new “enfold” folder, once you see the new “enfold” is working you can delete the “enfold-old” folder.
    Otherwise if it doesn’t work, rename the new enfold folder to “enfold-new” and rename the “enfold-old” back to “enfold” and let us know.

    Best regards,
    Mike

    in reply to: Preview / Shorten blog posts in archive / category #942219

    Hi,
    I tried disabling your firewall, but I was still unable to edit the functions.php
    The reason your functions.php for your child theme is not working, is because it is missing the opening <?php
    please add this and your function to your child theme functions.php:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */

    Best regards,
    Mike

    in reply to: Header top bar hide on mobile #942211

    Hi,
    Thank you for sharing your solution, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: The events calendar and Masonry sorting #942209

    Hi,
    Thank you for sharing your solution, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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 setup the Column animation speed or duration ? #942208

    Hi,
    Can you please include a admin login in the private content area so we can take a closer look. Along with a link to a page that shows the sidebar.

    Best regards,
    Mike

    in reply to: Our Site Is Broken After Enfold Update #942089

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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,
    Yes your theme settings will be untouched updating via ftp.
    How about giving us ftp access in the Private Content area?

    Best regards,
    Mike

    in reply to: Question about Enfold #942081

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Fatal Error Displayed after Successful Install #942079

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Contact form fix on RTL #942078

    Hi,
    That is the order that the element is created, but I tried to help with this:

    #top.rtl .avia_ajax_form .form_element_fourth {
        width: 23.4%!important; 
    }
    #top.rtl .modified_width {
        left: 0!important; 
    }
    #top.rtl #element_avia_1_1,#top.rtl #element_avia_2_1,#top.rtl #element_avia_3_1 {
        right: 20px!important; 
        float: right!important; 
    }
    #top.rtl #element_avia_3_1,#top.rtl .modified_width {
    margin-right: 0px !important;
    }

    Best regards,
    Mike

    in reply to: Contact form fix on RTL #942065

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

    #top.rtl .avia_ajax_form .form_element_fourth {
        width: 23.4%!important; 
    }
    #top.rtl .avia_ajax_form .form_element_fourth {
        margin-right: 0 !important; 
    }

    Best regards,
    Mike

    in reply to: Youtube shortcode #942062

    Hey Guenter,
    Thank you, this looks very good.

    Best regards,
    Mike

    in reply to: Enfold-Editor lässt sich nicht mehr öffnen #942059

    Hey Gagrakacka,
    Können Sie bitte einen Administrator-Login im Bereich für private Inhalte hinzufügen, damit wir genauer hinsehen können.

    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: Fatal Error Displayed after Successful Install #942058

    Hey webdevmt,
    Typically this is due to a older PHP version being used by your webhost, I see you are using PHP v5.3.29. Please ask them to update your PHP version to v7
    Another solution could be to replace your header.php with this one.

    Best regards,
    Mike

    in reply to: Preview / Shorten blog posts in archive / category #942056

    Hi,
    I have tested this code on my localhost, and it adds the post images from the default editor to the archive pages.

    //change category page layout to blog single small style
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-big';
    return $layout;
    }

    Although I couldn’t add the code to your site because I got this error:

    It was not possible to communicate with the website to check for fatal errors, so the PHP change was undone. You will need to upload your modified PHP file by other means, such as SFTP.

    Please try to do so with ftp, or include ftp access in the Private Content area.

    Best regards,
    Mike

    in reply to: Question about Enfold #942052

    Hi,
    Very good, although it sounds like your friend gave it to you, and for you to renew it with Theme Forest they will ask you to login to that account. I assumed that you couldn’t, but that is ok, because I believe there is no discount for renewing, so it seems easier to get a new license in your name.
    But perhaps Theme Forest has another option for this case that I’m unaware of? We can’t issue licenses or renewals, our partner Theme Forest handles this.

    Best regards,
    Mike

    in reply to: Front page cuts off head on mobile #942049

    Hi,
    I was unable to reproduce this with Android, so we will need to find someone with a iPhone 6, meanwhile please try to clear your history and cache. Please see: How to clear the cache on iPhone or iPad

    Best regards,
    Mike

Viewing 30 posts - 27,811 through 27,840 (of 34,601 total)