Forum Replies Created

Viewing 30 posts - 4,351 through 4,380 (of 35,007 total)
  • Author
    Posts
  • in reply to: Change with definitions for tablets/smartphones #1431930

    Hi,
    You would need define each one separately, there is not a way to change the setting for all elements because each element has the media query added in it’s CSS.

    Best regards,
    Mike

    in reply to: Please give me the shortcodes #1431926

    Hi,

    @Createve_Solutions
    did the shortcodes that Yigit posted for you solve what you were trying to do?
    If you need more you can install Enfold on a localhost or a subdomain and Enable the Avia Layout Builder Debugger to see the shortcodes from the demos. After importing demos on your test site you can the reset the site to test other demos and copy their shortcodes.

    Best regards,
    Mike

    in reply to: copy pages from one staging to another #1431811

    Hey Yory,
    I recommend using the WordPress ▸ Tools ▸ Export ▸ All content and use the xml file to import to your new site, note that you will want your old site to still be live when you import into the new site as the new site will import the images directly from the old site.

    Best regards,
    Mike

    in reply to: Video should not be shown on mobile devices #1431810

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Lightbox now not working. #1431809

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    If you wish to hire someone at codeable.io that may be a good option if you are not sure what customizations were made on your site. Typically there should be no issue with the latest version and the woocommerce cart, so I would assume that if you updated to Enfold v5.6.9 you would not have any issues. But I recommend that you test the update on a staging site since we don’t know what kind of customizations your site has. This is what I have been trying to advise so far.
    If after you update and you still have a issue due to the customizations we can examine further and try to advise, but if you just want someone to take over and update and fix any issues that are found after updating right away ASAP then codeable.io may be a good option for you.

    Best regards,
    Mike

    in reply to: ENFOLD – Own Font Set #1431805

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Submenu Custom Icon #1431804

    Hi,
    Please link to your page so we can examine the elements and advise.

    Best regards,
    Mike

    in reply to: Accordion bug #1431803

    Hi,
    Glad that this have helped, I only added a new child theme.
    I don’t know what was wrong with your old child theme as I didn’t see any issues in it, I believe that this points to a caching issue.
    Nonetheless with the new child theme you site now doesn’t have the error, so I imagine that we close this thread then?

    Best regards,
    Mike

    in reply to: Enfold and PHP 8 #1431712

    Hey Kate,
    Please try updaing to Enfold v5.6.9 there was some PHP updates after your version.

    Best regards,
    Mike

    in reply to: Latin text in search results #1431710

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Aligning rows top and bottom within a grid #1431709

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Above you wrote that the site was created by a guy 7 years ago, are you sure that you purchased the theme, or was it him? If you had purchased it, you would see it in your Theme Forest account. You may need to purchase the theme though your account so that you will be able to update your site now and in the future.
    I believe that host gator offers the staging site option, so you should ask them how to use it, and also ask them how to backup your site and restore it, so if anything goes wrong you can restore your site.
    I don’t recommend using backup plugins, the webhost server backup is always better and more reliable.

    Best regards,
    Mike

    in reply to: ENFOLD – Own Font Set #1431706

    Hi,
    Sorry I believe that you misunderstand, the extra font dropdown and other tools that are in the text editor in the screenshot above are from the plugin Advanced Editor Tools, it adds this to text editors that use TinyMCE, such as WordPress and Enfold (Avia)
    This plugin that you are using doesn’t have the option to add custom fonts so that is why I recommend you ask them.
    Enfold doesn’t have a way to add custom fonts to the TinyMCE editor or the Advanced Editor Tools plugin that you are using.
    Please try disabling the Advanced Editor Tools plugin and you will see that the font drop daown option is no longer available.

    Best regards,
    Mike

    in reply to: submenu sticky on mobile #1431647

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #sub_menu1 .container {
        width: 100%;
        max-width: 100%;
    }
    #av-custom-submenu-1 span {
    	font-size: 12px;
    }
    #top #av-custom-submenu-1.av-subnav-menu > li > a {
        padding: 0px 5px 0px 5px;
    }
    #top #sub_menu1 .av-submenu-pos-right {
        text-align: center;
    }
    .sticky-top {
    	position:fixed!important;
    	top:0!important;
    	z-index:600!important;
    }
    }

    Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_sticky_sub_menu() { ?>
      <script>
    (function($){
      var width = $(window).width();
    var $stickyTop = $('#sub_menu1');
    if (width <= 767) {
    $stickyTop.waypoint(function(direction) {
      if (direction === 'down') {
         $stickyTop.addClass('sticky-top');
      }
      if (direction === 'up') {
         $stickyTop.removeClass('sticky-top');
      }
    }, {
      offset: '0%'
    });
    }
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_sticky_sub_menu', 99 );

    Then clear your caching plugin and browser, please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    In my test with makes the sub-menu sticky on mobile ans reduces the size of the menu itme so they fit better, feel free to adjust to suit.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Questions on Freelancer-theme #1431646

    Hi,
    To adjust the main font size for different screen sizes please go to Enfold Theme Options ▸ General Styling ▸ Typography ▸ Advanced Options: Customize Typography Settings you will see a option for four screen sizes:
    Enfold_Support_4559.jpeg
    After selecting these ensure that you clear your cache and caching plugins, and if your server is using a object-oriented cache such as Memcached, Redis, Varnish, Litespeed, etc. you may need to also clear it.
    Please note that we ask that each thread stays on a specific topic, this helps other users find solutions based on the opening subject line quicker. For further questions please open a new thread

    Best regards,
    Mike

    in reply to: No Images appear on Work page of Dark Enfold Theme #1431645

    Hi,
    Glad that this helped, I expect that this is the only step needed, while you are creating your site I recommend leaving the any caching plugins and the file merging disable, as it is not needed. Once you are done creating the site you can enable again and I would not expect any further issues, but if you do just let us know and we could take a look.
    You can include your site login or private info in the Private Content area below the main input box:
    Enfold_Support_4557.jpeg
    but only for threads that you start, if you want to reply to someone elses thread adding your info will be seen by the thread starter.

    Best regards,
    Mike

    in reply to: Full Size featured image in blog posts #1431643

    Hi,
    Good catch Guenni007

    Best regards,
    Mike

    in reply to: Submenu Custom Icon #1431642

    Hey karacafer,
    You can add your icon with css, first you would determine the menu ID for the menu item, in this example it is #menu-item-3059
    then use that ID in this css and the URL to your icon:

    #menu-item-3059 span.avia-menu-text:before {
      content: url(https://img.icons8.com/color/17/wordpress.png);
        display: inline;
        padding-right: 10px;
        vertical-align: sub;
    }
    

    This is how this example worked:
    Enfold_Support_4555.jpeg
    Then repeat this for each menu item.

    Best regards,
    Mike

    in reply to: Avia Layout Architect not loading on page for latest posts #1431638

    Hi,
    Thanks for the login, but it is not admin so we can’t view any of the theme settings nor the backend of the page with the issue. Please upgrade the login to admin.

    Best regards,
    Mike

    in reply to: Menu problems – underline and dividers are not there #1431637

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Full Size featured image in blog posts #1431636

    Hi,
    We will leave this open to hear back from you, hopefully this helps.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Need updates enfold #1431626

    Hey saad,
    Thanks for your question, typically you can update a very old version on Enfold without any issues, assuming that only the theme options were used to customize the site.
    If any file customizations were made in a child theme then these customizations will also not be lost, but if core theme files were modified then those modifications will be lost.
    I recommend first creating a staging site to test on, most cPanel webhosts have a staging site option, some in the dashboard:
    staging-1.jpeg
    Others add the option in the Softaculous WordPress Management
    2022-12-11_001.jpeg
    There may be other staging site options in different cPanel servers, these are the two that I have seen.
    Then update your staging site and check if there are any issues.
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg
    When you purchase a new license you will get 6 months of support from our support fourm included, but for only a little more you can get a full year of support, which is a really good deal.
    Enfold_Support_4547.jpeg
    I hope this information is helpful.

    Best regards,
    Mike

    in reply to: Accordion bug #1431625

    Hi,
    Thank you for your patience and the link to your staging site, as Rikard had noted above if the parent theme is activated then the error with the accordion jumping to the top of the page when clicked doesn’t occur. I don’t know why this is, but I created a new child theme for you and enabled it and the error doesn’t occur, please check the /motorcykel-testside/ page linked below. I checked on Windows in Chrome, Firefox, & Edge

    Best regards,
    Mike

    in reply to: Aligning rows top and bottom within a grid #1431623

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.home #av-layout-grid-1 .flex_cell .flex_column_table:nth-child(2) {
    position: absolute;
    bottom: -900px;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: No Images appear on Work page of Dark Enfold Theme #1431621

    Hi,
    Thank you for the link to your site, the browser console is showing some javascript errors, please try disabling the theme option Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files
    and then check your pages again, if this doesn’t help try ensuring that Enfold Theme Options ▸ Performance ▸ Disable jQuery Migrate is not enable and try disabling all of your plugins. If that resolves the issue, reactivate each one individually until you find the conflict.
    If you still have trouble please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: green bar is not visible #1431620

    Hey schweg33,
    On your Impressum page you have a negative margin 55 for the color section below the title which covers the blockquote border, on your other pages the negative margin is 25 so it doesn’t cover.

    Best regards,
    Mike

    in reply to: Questions on Freelancer-theme #1431618

    Hi,
    On the Freelancer Demo the behavior for the fixed background image is the same as on your site, were the center of the background image is in the center of the page and not in the center of the cell. This is the image:
    Enfold_Support_4543.jpeg
    and this is how it shows in the grid row:
    Enfold_Support_4545.jpeg
    There is no date for the next release right now, but you can use the “scroll” option for now as it will give the same result for you.

    Best regards,
    Mike

    in reply to: Horizontal gallery – doesn’t continue on first click #1431613

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 4,351 through 4,380 (of 35,007 total)