Forum Replies Created

Viewing 30 posts - 8,671 through 8,700 (of 34,221 total)
  • Author
    Posts
  • in reply to: Avia Layout Editor on Posttype The Events Calendar #1378315

    Hi,
    Glad Ismael could 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: How would I achieve the Parallax look (plus a little more) #1378313

    Hi,
    Thanks for your patience, to have the 3 boxes over a slider you would use a negative margin, in the demo above the first column of the row has a negative -80px margin for the row:
    Enfold_Support_0052.jpeg
    When you say that you want each column highlighted on mouse-over, do you mean you want the background color to change or the column to scale a little larger?

    Best regards,
    Mike

    in reply to: Critical Issue and Clashes #1378312

    Hi,
    Thanks for the feedback, I tried to login and follow your steps above to see the error with MyWorks Sync, but I was not able to follow the steps, I went to the backend WooCommerce > Orders but didn’t find “new orders” or the product “Screen Printing”
    Please create a screencast of the steps to see the error so we can view the steps and then follow along. Perhaps then we can get an idea what is causing the error.
    This is a test site correct? So we can disable plugins without causing any impact to your business?
    Best regards,
    Mike

    in reply to: Change string before author in blog article #1378309

    Hi,
    Please remove the above function so I can test and try again.

    Best regards,
    Mike

    in reply to: Change string before author in blog article #1378267

    Hi,
    Thanks for the link to your site the following function will move the author link on single posts up to under the title next to the category link and for Italian language posts change the “Da” to “A cura di”, it will also change this for your masonry grid on your /blog/ page.
    Add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function move_author_and_replace_da() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
      var moveAuthor = document.querySelector('#top.single-post .post-meta-infos .blog-author.minor-meta');
      var appendtoDiv = document.querySelector('#top.single-post .post-entry .blog-categories.minor-meta');
      var authorBackslash = document.querySelector('#top.single-post .post-meta-infos .text-sep');
      if (!!moveAuthor) {
      var clone = moveAuthor.cloneNode(true);
      appendtoDiv.appendChild(moveAuthor).setAttribute('style','margin-left:10px');
      authorBackslash.setAttribute('style','display:none');
      }
    });
    (function($){
    $('html[lang="it-IT"] #top.single-post .post-meta-infos .blog-author.minor-meta').contents().filter(function() {
      return this.nodeType == 3
    }).each(function(){
      this.textContent = this.textContent.replace('da ','A cura di ');
    });
    $('html[lang="it-IT"] .av-masonry-author.meta-color.author').text(function(index, text) {
        return text.replace('da ', 'A cura di ');
    });
    })(jQuery);
     </script>
      <?php
    }
    add_action('wp_footer', 'move_author_and_replace_da');

    After applying, please clear your browser cache and check.
    Please see the screenshot in the Private Content area for the expected results.

    Best regards,
    Mike

    in reply to: Mobile version: Color of main menu and burger menu #1378252

    Hi,
    I think one of your plugins is blocking access, please try disabling your plugins to see if the theme editor shows, if not please include FTP access.

    Best regards,
    Mike

    in reply to: Change string before author in blog article #1378174

    Hi,
    Thanks for your question, we could use javascript to change the “DA” to “DI” and move the line to under the title for Italian language blog posts,
    but we will need a link to a sample post to evaluate, please link to a post on your site.
    Also do you want the date and the author moved under the title, or just the author?
    I assume that you also want this moved in your other language too?

    Best regards,
    Mike

    in reply to: Mobile version: Color of main menu and burger menu #1378172

    Hey Lene,
    Thanks for the link to your site, I see that you added the color #af7e34 to the advanced styling, but the mobile menu font color seems to be coming from css in your child theme like this:

    #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
        color: #ffffff;}

    but I don’t see access to your child theme stylesheet or to the WordPress ▸ Customize ▸ Additional CSS
    Please check these two areas for css colors for the mobile menu, they would override the advanced styling field.

    Best regards,
    Mike

    in reply to: Contact form: Autorespond mail not sending #1378168

    Hi,
    Thank you for your patience, I did and didn’t hear back but it was before the holiday so it might have been missed as the list grew, I asked again today.
    I see that the email in your form is a different domain than the site, so perhaps that is triggering it to be marked as spam, some mail servers auto-delete some spam messages.
    Try using SMTP on your site by installing the plugin WP Mail SMTP with an email account from your website domain and use that email address in the form, so the email to you the admin is the same domain and the autoresponder email to the visitor is also from the same domain.
    Then create a second test email from the same domain to test as the visitor just to see if it works, if so then test a different visitor email from a different domain to see if that works.

    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

    Hi,
    Thanks for the feedback, when I check I see that you have set the width of the boxes with this css:

    #willkommen .box {
        max-width: 22em;
    }

    which leaves a white margin on the right site, to make the margin equal on both sides try adding this css:

    @media only screen  and (max-width: 767px) { 
    .responsive #top #wrap_all .flex_column.box {
    	  margin: auto;
    }
    }
    

    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    in reply to: Increase size of text panel in Post window #1378145

    Hi,
    I tested further and found that the text area didn’t expand to the content height only when using the Block Editor, when using the Classic Editor it expanded to the content height correctly.
    I added this code to your site to correct only for the Block Editor, please clear your browser cache and check.

    add_action('admin_head', 'custom_editor_height');
    function custom_editor_height() {
      echo '<style>
        .wp-admin.block-editor-page .avia-modal-edit-alb-element .mce-edit-area.mce-container.mce-panel iframe {
    	height: 100vh !important;
    }
      </style>';
    }

    Best regards,
    Mike

    in reply to: Pagination disappears on some pages #1378126

    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: Others mobile optimization #1378124

    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: Increase size of text panel in Post window #1378057

    Hey John,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_action('admin_head', 'custom_editor_height');
    function custom_editor_height() {
      echo '<style>
        .avia-modal-edit-alb-element .mce-edit-area.mce-container.mce-panel {
    	height: 56vh;
    }
      </style>';
    }

    Best regards,
    Mike

    in reply to: Pagination disappears on some pages #1378052

    Hi,
    Thanks for the feedback, I tried to test it on my demo site as our demo posts use tags and I have not noticed pagination errors from posts with tags, but I was not able to recreate an error.
    Are you using the blog post element with standard WordPress editor posts?
    Can you explain in more detail how we can recreate this error?
    Perhaps try disabling your plugins and any custom functions and see if the error continues.

    Best regards,
    Mike

    Hi,
    Thanks for the feedback, it sounds like the webhost has disabled specific PHP functions that prevent the normal import method.
    You could try the manual import method as described in our documentation
    If this also fails due to the disabled PHP functions, try creating a localhost WordPress install and import the demo and then use the plugin Duplicator and migrate your localhost version to your webhost, see the video on the plugin page if you have not used this plugin before, it is quite easy.

    Best regards,
    Mike

    in reply to: Advanced Layer Slider: reveal text on hover #1378043

    Hi,
    Thanks for the feedback, I see your last message is “Nevermind” shall we close this then?

    Best regards,
    Mike

    in reply to: add button to portfolio grid #1378041

    Hi,
    This is because the pagination reloads the page, see the url in the address bar changes, there is not a way to avoid this.

    Best regards,
    Mike

    in reply to: Google Font "montserat" lädt trotz lokaler Einbindung #1378037

    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: Theme customization not available – critical error #1378020

    Hi,
    teppamati try going to Enfold Theme Options ▸ Import/Export ▸ Iconfont Manager and remove the icon
    Enfold_Support_0046.jpeg
    and then try installing this iconfont
    If it doesn’t install then check that you have the PHP ZipArchive Extension enabled on your localhost, it is required for your server to extract zip files.

    Best regards,
    Mike

    in reply to: Removing "Protected:" part from posts' titles #1378003

    Hey sdim,
    Thanks for your question, try using a lock emoji like this:

    add_filter( 'protected_title_format', 'remove_protected_text' );
    function remove_protected_text() {
    return __('🔒%s');
    }

    Enfold_Support_0045.jpeg

    Best regards,
    Mike

    in reply to: Registered for support but can't change my email #1378001

    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: Registered for support but can't change my email #1377999

    Hi,
    try the details below.

    Best regards,
    Mike

    in reply to: Registered for support but can't change my email #1377996

    Hi,
    Please try entering your purchase code here it should then ask for your email address to send your password.

    Best regards,
    Mike

    in reply to: Advanced Layer Slider: reveal text on hover #1377995

    Hey Restel-Vietz,
    Thanks for the link to your page, but the 6 buttons look like they are in a LayerSlider so I don’t know if there is a way to do that in the LayerSlider.
    But if you want 6 buttons on the left reveal different text in the same space on the right try using the tab element and choose the Tab Position to the side
    Enfold_Support_0042.jpeg
    Enfold_Support_0043.jpeg
    You can make the tabs look a little more like buttons with this css:

    .main_color .tabcontainer div {
    	border-color: transparent;
    }
    .main_color .tabcontainer .tab {
        color: #000;
        background-color: #fff;
    }
    .js_active .tabcontainer .tab {
    	float: none;
    	text-align: center;
    	box-shadow:0px 0px 0px 2px black inset;
    }
    

    My demo example:
    Enfold_Support_0044.jpeg

    Best regards,
    Mike

    Hi,
    Glad this helped, I don’t use the Flying Scripts plugin so I don’t know. To exclude elements go to Enfold Theme Options ▸ Performance ▸ Website Performance And Optimization ▸ Disabling Of Template Builder Elements and choose your elements under Manually manage loaded elements
    Disable_Template_Builder_Elements.jpeg

    Best regards,
    Mike

    Hi,
    Thanks for your patience,
    #1 to move the woo product sidebar from under the product to a classic sidebar position please follow this thread.
    #2 I couldn’t add the page you linked to because this is an automatically created page, not an ALB page. It is the woocommerce shop page on your site it is ▸ https://sandbox.akhurst.com/shop/
    you will notice the message at the top of the page: the default WooCommerce Shop Overview and therefore does not support the Enfold advanced layout editor
    Enfold_Support_0036.jpeg
    If you want to create this page on another page use the Product Grid element
    Enfold_Support_0037.jpeg

    I don’t see a sidebar on the example page that you linked to, but you can create a ALB product page and add an image and use the product purchase button
    product_purchase_button.jpeg
    and then below that use a product slider with 3 columns
    product_slider_with_3_columns.jpeg
    the next section would have a simple button to a category archive page with a couple of images and linkes to different categories
    Enfold_Support_0040.jpeg
    the rest of the page follows this, so I think you get the idea.
    I hope this helps.

    Best regards,
    Mike

    Hey Thomas,
    Thanks for your question, I don’t see that we have a documented list of all frontend CSS & JS files, but I created this list by disabling CSS & JS Merging And Compression and setting Template Builder Elements to Always load all elements in Enfold Theme Options ▸ Performance ▸ Website Performance And Optimization and then checked my demo site frontend source code.
    This gave me 121 items, including the LayerSlider and some WordPress items.

    <link rel='stylesheet' id='avia-grid-css' href='/wp-content/themes/enfold/css/grid.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-base-css' href='/wp-content/themes/enfold/css/base.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-layout-css' href='/wp-content/themes/enfold/css/layout.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-audioplayer-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-blog-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-postslider-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-button-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-buttonrow-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-button-fullwidth-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-catalogue-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/catalogue/catalogue.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-comments-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-contact-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-contentpartner-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-countdown-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-gallery-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-gallery-hor-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-maps-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/google_maps.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-gridrow-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-heading-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-rotator-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-hr-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-icon-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon/icon.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-icon-circles-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-iconbox-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-icongrid-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-iconlist-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-image-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image/image.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-hotspot-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-magazine-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-masonry-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-siteloader-css' href='/wp-content/themes/enfold/css/avia-snippet-site-preloader.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-menu-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-notification-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-numbers-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-portfolio-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-post-metadata-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-progress-bar-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-promobox-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox/promobox.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-sc-search-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/search/search.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-accordion-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-feature-image-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-fullsize-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-fullscreen-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-ls-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-social-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/social_share/social_share.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-tabsection-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-table-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-tabs-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-team-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/team/team.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-testimonials-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-timeline-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-toggles-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-video-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='dashicons-css' href='/wp-includes/css/dashicons.min.css?ver=6.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='admin-bar-css' href='/wp-includes/css/admin-bar.min.css?ver=6.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='layerslider-front-css' href='/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/public/front.css?ver=7.6.7' type='text/css' media='all' />
    <link rel='stylesheet' id='layerslider-css' href='/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/layerslider/css/layerslider.css?ver=7.6.7' type='text/css' media='all' />
    <link rel='stylesheet' id='wp-block-library-css' href='/wp-includes/css/dist/block-library/style.min.css?ver=6.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-scs-css' href='/wp-content/themes/enfold/css/shortcodes.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-popup-css-css' href='/wp-content/themes/enfold/js/aviapopup/magnific-popup.min.css?ver=5.3.1.1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-lightbox-css' href='/wp-content/themes/enfold/css/avia-snippet-lightbox.css?ver=5.3.1.1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-widget-css-css' href='/wp-content/themes/enfold/css/avia-snippet-widget.css?ver=5.3.1.1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-dynamic-css' href='/wp-content/uploads/dynamic_avia/enfold_child.css?ver=63bad66d43ca1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-custom-css' href='/wp-content/themes/enfold/css/custom.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-style-css' href='/wp-content/themes/enfold-child/style.css?ver=5.3.1.1' type='text/css' media='all' />
    <script type='text/javascript' src='/wp-includes/js/jquery/jquery.min.js?ver=3.6.1' id='jquery-core-js'></script>
    <script type='text/javascript' src='/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-compat.js?ver=5.3.1.1' id='avia-compat-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/waypoints/waypoints.min.js?ver=5.3.1.1' id='avia-waypoints-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia.js?ver=5.3.1.1' id='avia-default-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/shortcodes.js?ver=5.3.1.1' id='avia-shortcodes-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.js?ver=5.3.1.1' id='avia-module-audioplayer-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/chart/chart-js.min.js?ver=5.3.1.1' id='avia-module-chart-js-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/chart/chart.js?ver=5.3.1.1' id='avia-module-chart-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.js?ver=5.3.1.1' id='avia-module-contact-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js?ver=5.3.1.1' id='avia-module-slideshow-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.js?ver=5.3.1.1' id='avia-module-countdown-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.js?ver=5.3.1.1' id='avia-module-gallery-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js?ver=5.3.1.1' id='avia-module-gallery-hor-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js?ver=5.3.1.1' id='avia-module-rotator-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.js?ver=5.3.1.1' id='avia-module-icon-circles-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.js?ver=5.3.1.1' id='avia-module-icongrid-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.js?ver=5.3.1.1' id='avia-module-iconlist-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.js?ver=5.3.1.1' id='avia-module-hotspot-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.js?ver=5.3.1.1' id='avia-module-magazine-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/isotope.min.js?ver=5.3.1.1' id='avia-module-isotope-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js?ver=5.3.1.1' id='avia-module-masonry-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.js?ver=5.3.1.1' id='avia-module-menu-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.js?ver=5.3.1.1' id='avia-module-notification-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.js?ver=5.3.1.1' id='avia-module-numbers-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.js?ver=5.3.1.1' id='avia-module-portfolio-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.js?ver=5.3.1.1' id='avia-module-progress-bar-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js?ver=5.3.1.1' id='avia-module-slideshow-video-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js?ver=5.3.1.1' id='avia-module-slideshow-accordion-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js?ver=5.3.1.1' id='avia-module-slideshow-fullscreen-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js?ver=5.3.1.1' id='avia-module-slideshow-ls-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.js?ver=5.3.1.1' id='avia-module-tabsection-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.js?ver=5.3.1.1' id='avia-module-tabs-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.js?ver=5.3.1.1' id='avia-module-testimonials-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.js?ver=5.3.1.1' id='avia-module-timeline-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js?ver=5.3.1.1' id='avia-module-toggles-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.js?ver=5.3.1.1' id='avia-module-video-js'></script>
    <script type='text/javascript' src='/wp-includes/js/hoverintent-js.min.js?ver=2.2.1' id='hoverintent-js-js'></script>
    <script type='text/javascript' src='/wp-includes/js/admin-bar.min.js?ver=6.1.1' id='admin-bar-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-hamburger-menu.js?ver=5.3.1.1' id='avia-hamburger-menu-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-parallax.js?ver=5.3.1.1' id='avia-parallax-support-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js?ver=5.3.1.1' id='avia-popup-js-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-lightbox.js?ver=5.3.1.1' id='avia-lightbox-activation-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-sticky-header.js?ver=5.3.1.1' id='avia-sticky-header-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-footer-effects.js?ver=5.3.1.1' id='avia-footer-effects-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-widget.js?ver=5.3.1.1' id='avia-widget-js-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/vendor/regenerator-runtime.min.js?ver=0.13.9' id='regenerator-runtime-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0' id='wp-polyfill-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/hooks.min.js?ver=4169d3cf8e8d95a3d6d5' id='wp-hooks-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/i18n.min.js?ver=9e794f35a71bb98672ae' id='wp-i18n-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/url.min.js?ver=bb0ef862199bcae73aa7' id='wp-url-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/api-fetch.min.js?ver=bc0029ca2c943aec5311' id='wp-api-fetch-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/layerslider/js/layerslider.utils.js?ver=7.6.7' id='layerslider-utils-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/layerslider/js/layerslider.kreaturamedia.jquery.js?ver=7.6.7' id='layerslider-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/layerslider/js/layerslider.transitions.js?ver=7.6.7' id='layerslider-transitions-js'></script>
    

    I hope this helps you.

    Best regards,
    Mike

    in reply to: Double quotes around tracks in audio player #1377985

    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 - 8,671 through 8,700 (of 34,221 total)