Forum Replies Created

Viewing 30 posts - 17,731 through 17,760 (of 35,026 total)
  • Author
    Posts
  • in reply to: A couple of questions about demos installation #1193766

    Hi,
    Thank you, glad we could help and if you have more questions in the future please feel free to open a new thread.
    I took a look at your theme options for updating and it seems the token was working correctly, there was a link that said “manually check now” when I clicked it I got the message that an Update is Available.
    Please check.
    2020-03-17_054754.png

    Best regards,
    Mike

    in reply to: Skip links issue #1193703

    Hi,
    As I recall we didn’t want to use the “main” id because some parts of the page wasn’t necessary to include, but you can use “main” if you wish.
    To have the button created in English and French please try this function instead:

    function custom_screen_reader_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    	if ( document.documentElement.lang.toLowerCase() === "fr-ca" ) {
      $( '<div>Passer au contenu principal</div>' ).insertBefore( '#top' );
      }else{
      	 $( '<div>Skip to main content</div>' ).insertBefore( '#top' );
      }
      });
    })(jQuery);
    </script>
      <?php
      }
      add_action('wp_footer', 'custom_screen_reader_script');

    Best regards,
    Mike

    in reply to: varnish cache & enfold #1193702

    Hi,
    Thank you @romano2

    Best regards,
    Mike

    in reply to: Updating broke the web #1193700

    Hi,
    The option to use the Classic Editor is on the Enfold Theme Options panel, the first panel in the theme options.
    2020-03-16_183133.png
    This: “I would suggest that you update on a staging version of the site if you want to keep the production site safe”. means that if you want to keep your site live for your visitors, but also test whether the update will cause any issues, you can use a stagging clone of your site on a temp url to check.

    Check your webhost to see if you have the one-click staging site option, this is an option in most cPanels to create a staging clone of your site so you can test an update on it and your live site will stay up and running untouched. You can always ask your webhost to help you with setting this up if you want.

    Here are some screenshots of what it would look like:
    staging-1
    staging-2

    Best regards,
    Mike

    in reply to: How to link to tabs #1193691

    Hi,
    Sorry we couldn’t assist more with a solution, but glad you have a working solution.

    Best regards,
    Mike

    in reply to: Make Social media icons bigger #1193472

    Hi,
    Try changing the number “12” in the url, it is the size for the image:
    here it is at “12”

    li.av-social-link-tumblr a:before {
    	content: url(https://img.icons8.com/officexs/12/000000/great-britain.png);
    }
    li.av-social-link-soundcloud a:before {
    	content: url(https://img.icons8.com/color/12/000000/sweden.png);
    }

    here it is at “24”

    li.av-social-link-tumblr a:before {
    	content: url(https://img.icons8.com/officexs/24/000000/great-britain.png);
    }
    li.av-social-link-soundcloud a:before {
    	content: url(https://img.icons8.com/color/24/000000/sweden.png);
    }

    “24” might be too big, try different numbers to suit.

    Best regards,
    Mike

    in reply to: Skip links issue #1193468

    Hey darryllevine,
    Sorry for the late reply, as you see from the linked post we didn’t receive feedback for the final solution.
    As I recall adding the ID “main_content” to the first element of content, such as after your slider was important to it working, because the function that adds the “Skip to main content” button links to the ID “main_content” I searched your page but didn’t find the ID “main_content”, but “tabing” though does seem to highlight the links down through the page.

    Best regards,
    Mike

    in reply to: varnish cache & enfold #1193461

    Hi,
    Sorry for the late reply, I was hoping @romano2 would reply. Unfortunately, I don’t have much Varnish experience but I did find this list of common Varnish issues.
    Hopefully, this will help.

    Best regards,
    Mike

    in reply to: enfold dynamic avia folder #1193459

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: suppress tooltips in Icon Grid #1193458

    Hi,
    This function will remove the titles only on the home page for the icongrid flip boxes.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function remove_icongrid_title_on_hover(){
      ?>
      <script>
    (function($){
    $("#top.home .avia-icon-grid-container a.avia-icongrid-wrapper").hover(function(){
    $(this).removeAttr("title");
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_icongrid_title_on_hover');

    After applying the function, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Demo Import Not Working #1193456

    Hi,
    Thanks for the login and FTP access, I have installed the demo for you, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Center Content – Tab Section #1193441

    Hi,
    At 2560px the icons already look centered Please see the screenshot in Private Content area.
    Can you include a screenshot of what you are seeing?

    Best regards,
    Mike

    in reply to: Popup for Enfold Child Theme #1193356

    Hey Patrik Heini,
    For a popup plugin you could use WP Popups Lite or you can use the built-in popup by following these steps. But I doesn’t have a trigger to automatically open a popup on page load like the plugin does.

    Best regards,
    Mike

    in reply to: problem upload flaticon icons #1193355

    Hi,
    This is correct, you can not use the colored icons, you need to use the black & white icon fonts. This is because they are really fonts and not icons, as in colored images.

    Best regards,
    Mike

    in reply to: Scheduling PlugIn #1193354

    Hey Valerie,
    Sorry for the late reply, I couldn’t find any info about this plugin and Enfold so I’m unsure if it will work well. Perhaps another user will offer some first-hand experience with it.

    Best regards,
    Mike

    in reply to: Trouble with Installing Theme #1193353

    Hi,
    Thank you for the login and link to your version of the theme, I have installed it for you, now you just need to import the demo you wish.

    Best regards,
    Mike

    in reply to: Display coupon question instead of input field #1193352

    Hey El,
    I assume you would like the “Do you have a coupon?” to replace the placeholder
    2020-03-15_173202.png
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $('input#coupon_code').attr('placeholder', 'Do you have a coupon?');
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: enfold dynamic avia folder #1193347

    Hey Dogmut,
    Perhaps because as your compressed css & js was updated and saved the old files are not purged, please try going to Enfold Theme Options > Performance > Delete old CSS and JS files and enable.

    Best regards,
    Mike

    in reply to: upgrade from 4.6.1 to 4.7.3 with old settings #1193344

    Hey Manoj Tiwari,
    Yes you can update and keep your settings, The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp from “enfold” then upload the new “enfold” folder and check that your site is working correctly. This assumes that your current theme folder is named “enfold” if you have custom named it then adjust the naming to suit.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    in reply to: Fontello Icons not working #1193337

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: 6 columns are not working #1193335

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Center Content – Tab Section #1193334

    Hi,
    Thanks for the login, 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: 2559px) { 
    .html_header_sidebar .av-layout-tab-inner .container {
        width: 100% !important; 
        margin: auto !important; 
    }
    }

    Best regards,
    Mike

    in reply to: How to re-arrange portfolio category #1193324

    Hey maxtan1990,
    The portfolio categories are arranged alphabetically, to change the order please change the names.
    2020-03-15_154818.png

    Best regards,
    Mike

    in reply to: Updating broke the web #1193303

    Hey angelortiz,
    Your error messages seem to be pointing to your PHP version, please try updating to version 7.3, right now you are using PHP 7.0.33

    Best regards,
    Mike

    in reply to: Hide featured image in blog roll #1193299

    Hey Charlotte,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home.blog .single-big a.lightbox-added.alignnone img.alignnone.size-full {
    	display: none !important;
    }

    Best regards,
    Mike

    in reply to: Parse error: syntax error, unexpected '' #1193292

    Hey asunray,
    Please try updating your PHP to 7.3, otherwise please include an admin login.

    Best regards,
    Mike

    in reply to: Center Content – Tab Section #1193285

    Hey Etwark,
    Please link to your page so we can examine closer.

    Best regards,
    Mike

    in reply to: Remove alt title on hover on massonry #1193282

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

    Best regards,
    Mike

    in reply to: Menu quest underline #1193277

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: 6 columns are not working #1193275

    Hi,
    I commented out the justify-content: center, check now.

    Best regards,
    Mike

Viewing 30 posts - 17,731 through 17,760 (of 35,026 total)