Forum Replies Created

Viewing 30 posts - 21,781 through 21,810 (of 34,223 total)
  • Author
    Posts
  • in reply to: Picture and text zoom on smartphone #1074677

    Hi,
    I took a look at your magazine element that is showing the text “Link a:” in the title attribute, which shows on thumbnails hover.
    So I couldn’t remove the text “Link a: ” but I was able to replace the entire title attribute with the h3 text that goes with the image.
    When I checked other pages I didn’t see this text “Link a: ” being added to the magazine titles, so I added the script to the top of the page in a “code block” so that it will only work on this one page. We can make it work on more pages that have the same error, but check this page first.

    <script>
    (function($){
      $(document).ready(function(){
      $(".av-magazine-entry").each(function(){
        var captiontext = $(this).find("h3.av-magazine-title").text();
        $(this).find("a").attr("title", captiontext);
    
    });
    });
    })(jQuery);
    </script>

    Please see the page link in the Private Content area.

    Best regards,
    Mike

    Hi,
    I have deleted the “enfold-old”, you can clean out the accounts, thanks for your patience and using Enfold.
    We will go ahead and close this then.

    Best regards,
    Mike

    in reply to: Remove Highlighting from Main Menu Link for Posts #1074648

    Hi,
    First please export your theme settings file, so you will have a backup.
    2019-03-04-215903
    Then install your child theme and activate it.

    Then when you go to the import/export options page you will find a new option to “Import Settings from your Parent Theme”
    2019-03-04-220741

    If you have any problems afterward, you can import the parent theme settings file that you saved earlier, via “Import Theme Settings File”

    So, yes it’s the same process, just in this specific order.
    It will save your customizations from the General Styling > Quick CSS
    But your customizations in your parent functions.php, should be moved manually to your child theme functions.php

    Best regards,
    Mike

    in reply to: No follow – Customer Review Link to their websites #1074635

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

    Best regards,
    Mike

    in reply to: Avia builder not loading in Enfold 2017 demo pages #1074632

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

    Best regards,
    Mike

    Hi,

    @likegluelikecrew

    I would like to take a look and try to update your site. Please include a admin login & FTP access in the Private Content area of a new thread, as this is not your thread your login info will not be private if posted here.
    Please post the link to your new thread here so I can quickly find it.

    Best regards,
    Mike

    in reply to: WooCommerce, Enfold, Shortcodes and after_theme_setup #1074625

    Hi,
    I’m glad this helped, this will be included in the next update. I can’t explain what the issue was, but the dev team was able to solve it.
    I assume we can close this now, but I like to ask. Shall we close this then?

    Best regards,
    Mike

    in reply to: Wrong Category showing up on Menus #1074619

    Hi,

    @Havi
    interesting slider concept. For your menu item did you want some assistance in removing a single category from being highlighted in the menu?
    We could remove the “current-menu-item” class from every page within the category, with javascript.

    Best regards,
    Mike

    in reply to: Event Calendar Pro Embedded Theme Buttons #1074612

    Hi,

    @trentscott
    , Sorry for the late reply, I missed your post, Thank you for the FTP access, I renamed your current theme to “enfold-old” then I uploaded the new “enfold” and checked that your site is working correctly. Please also check for yourself.
    I was not sure where to see the issue on your site, so please check and let us know.
    Once you are happy you, (or I) can delete the “enfold-old” via ftp, (not the WP theme page)
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.

    @Justin Please include a admin login & FTP access in the Private Content area so we can assist with your site.
    I would recommend opening a new thread because if you share it here it will not be private.
    Please post a link to the new thread here so I can find it.

    Best regards,
    Mike

    Hi,
    I took another look, the class was being added, but the middle if statement was not executing, I thought it was before.
    Anyways I found out that you can’t use “if”, or “else if” that way, it must be “else” like this:

    (function($) {
        $(document).ready(function(){
        if ($("body").hasClass("news-cat")) { 
            $('.avia-post-nav').css({ 'display': 'block' });
          }
    	else ($("body").hasClass("artists-cat")) { 
            $('.avia-post-nav').css({ 'display': 'block'});	 
    	   }	   
    	else ($("body").hasClass("writers-cat")) { 
            $('.avia-post-nav').css({ 'display': 'block'});
    	   }
        else {
            $('.avia-post-nav').css({ 'display': 'none'});
        }
        });
    
    })(jQuery);

    This seems to work now, please check.

    Best regards,
    Mike

    in reply to: use post on more websites #1074090

    Hi,
    Please follow the link above, you will see that you will add this code near the top of your functions.php file in Appearance > Editor:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
      return "debug";
    }

    right after this line:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Best regards,
    Mike

    in reply to: No follow – Customer Review Link to their websites #1074086

    Hi,
    Oh, I see, to add nofollow to the testimonial links,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function add_nofollow_testimonial_links(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $("a.aviablank.avia-testimonial-link").attr("rel", "nofollow");
     });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_nofollow_testimonial_links');

    Best regards,
    Mike

    in reply to: WooCommerce, Enfold, Shortcodes and after_theme_setup #1074083

    Hi,

    @dermachiel
    glad to hear :)


    @kevinmcgillivray
    did the patch work for you? Shall we close this then?

    Best regards,
    Mike

    in reply to: Squeezed Content #1074082

    Hi,
    Happy to help, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: 1/4 cloumns layout #1074079

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

    Best regards,
    Mike

    in reply to: scrolling not jumping #1074076

    Hi,
    Here is the instructions to the dot menu
    Please click the css toggle to see the css used

    Best regards,
    Mike

    in reply to: Animated number set programmatically #1074073

    Hi,
    You will find it here: \enfold\config-templatebuilder\avia-shortcodes\countdown\countdown.js

    Best regards,
    Mike

    in reply to: use post on more websites #1074071

    Hey diefleischerei,
    Sort of, Enable Avia Layout Builder Debugger; on both sites, then copy the shortcodes below the editor and paste into the new site.
    Typically images are not transferred, you will need to manually add the images and then choose then in the new site.

    Best regards,
    Mike

    Hey andras,
    If I understand correctly, you would like the “current-menu-item” to be highlighted only if the transparent header is not present.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .av-main-nav>li.current-menu-item>a>.avia-menu-text,.av-main-nav>li.current-page-ancestor>a>.avia-menu-text {
      color: red!important;
    }
    #header.av_header_transparency .av-main-nav>li.current-menu-item>a>.avia-menu-text,#header.av_header_transparency .av-main-nav>li.current-page-ancestor>a>.avia-menu-text {
      color: white!important;
    }

    Best regards,
    Mike

    in reply to: Blog headline in post and blogsite #1074062

    Hi,
    To replace the h2 post title tags with h3, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    jQuery(window).load(function(){
      var el = document.querySelector('h2.post-title.entry-title');
             el.outerHTML = '<h3 class="post-title entry-title"itemprop="headline">' + el.innerHTML + '</h3>';
     });
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    To remove the lines, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    span.post-meta-infos,div.post_delimiter {
    display:none !important;
    }

    Best regards,
    Mike

    in reply to: HTTP MIXED CONTENT IN HEADER #1074061

    Hey hanneska,

    The

    prefix="og: http://ogp.me/ns#" 

    is for the Open Graph protocol it is not default. But when I look at your site the mixed content error looks like it’s coming from your favicon
    Please see the link in the Private Content area.

    Best regards,
    Mike

    in reply to: How to move the search box into the sidebar? #1074058

    Hey Flugtraeumer,
    To add the search bar to the sidebar please add the following code to functions.php file from Appearance > Editor

    add_shortcode('avia_search', 'get_search_form');

    Add the following shortcode in a HTML widget

    [avia_search]

    Best regards,
    Mike

    in reply to: 1/4 cloumns layout #1074054

    Hey lzeuner,
    I took a look at your page and it turns out to be the second one in on the top line, the image-container is align-right, where all of the other ones are align-center
    Please check the settings for that one.

    Best regards,
    Mike

    in reply to: Sidebar widget shortcode missing #1074049

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

    Best regards,
    Mike

    in reply to: Avia layout builder not working in The Events Calendar #1074047

    Hi,
    Thank you for the FTP access, I renamed your current theme to “enfold-old” then I uploaded the new “enfold” and checked that your site is working correctly. Please also check for yourself.
    While your site seems to be working correctly, I’m not sure where to see the error, Please clear your browser cache and check.
    Once you are happy you, (or I) can delete the “enfold-old” via ftp, (not the WP theme page)
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.

    Best regards,
    Mike

    in reply to: Squeezed Content #1074046

    Hi,
    Well I tried again, hopefully it will work this time :)
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Change background-image for mobile #1074045

    Hi,
    Since the product gallery is a part of woocommerce, I would think they would have an addon,
    Perhaps: WooCommerce – Embed Videos To Product Image Gallery
    I also found this article: Adding media/video to your WooCommerce product gallery
    Best regards,
    Mike

    in reply to: Enfold table shortcode not displaying anymore #1074041

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

    Best regards,
    Mike

    in reply to: Remove Highlighting from Main Menu Link for Posts #1074039

    Hi,
    Using a child theme is a good idea, as you are building your site you will surely add more customizations and a child theme helps protect your customizations.

    Please use our pre-built child theme
    You will want to take a couple of steps, 1: please export your theme settings at: Enfold Theme Options > Import/Export > Export Theme Settings File to your computer, this is just for backup.
    2: Once you install your child theme, please import your parent theme settings at:
    Enfold Theme Options > Import/Export > Import Settings from your Parent Theme
    Then you’ll need to re-set your menu options.
    Finally, sometimes it is necessary to save your theme options one more time, to encourage the settings to be saved and activated in the merged /wp-content/uploads/dynamic_avia/ folder, a simple way to do this is to go to General Styling > Quick CSS field and place a space in the field so the theme options “Save all changes” button is clickable.

    Best regards,
    Mike

    in reply to: Recommended Directory Plugin #1074035

    Hi,
    Sorry we don’t have a directory of plugins, but we do have a thread: Recommended plugins, but as it’s very long it may be better to search Google like this: “Enfold””name of your plugin”
    This forum is well indexed by Google, but if you don’t know which plugin to use it will be tricker.
    I’m not sure what you are looking for in a directory plugin, but why not use the portfolio ajax element, it gives you a nice image and title, then when you click it there is lots of room for text, links, and more images.
    It is big and bold, and it will make your directory stand out.
    There are thousands of people using those plugins, and they all look the same.

    Best regards,
    Mike

Viewing 30 posts - 21,781 through 21,810 (of 34,223 total)