Forum Replies Created

Viewing 30 posts - 17,041 through 17,070 (of 34,221 total)
  • Author
    Posts
  • Hi,
    As I understand your issue the navigation bar is transparent when you scroll down, and you would prefer white, in this case find your css for #header_main_alternate.sticky0815 and add background-color: #fff; to it.
    the full css should be:

    #header_main_alternate.sticky0815 {
        position: fixed;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        box-shadow: 0 5px 25px #aaa;
        transition: box-shadow 0.5s ease;
        background-color: #fff;
    }

    Best regards,
    Mike

    in reply to: Add a pop up Booking form #1191295

    Hi,
    First add this code to the end of your functions.php file in Appearance > Editor:

    function popup_inline() { ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
    	jQuery('.open-popup-link').magnificPopup({
    	  type:'inline',
    	  midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href.
    	});
    });
    </script>
    <?php }
    
    add_action('wp_head', 'popup_inline');

    Next add your popup content in a code block at the bottom of your page

    <div id="test-popup" class="white-popup mfp-hide">
    <p>PLACE CONTENT HERE</p>
    </div>

    Then for your links use this format and be sure to target the correct ID’s:

    <a class="open-popup-link" href="#test-popup">Show popup</a>

    To use a button you will need the use the shortcode wand to get the shortcode for the button with the link of #test-popup and you will have to add the class open-popup-link manually in the shortcode, and then add the shortcode to a code block element were you want the button to show.
    Then add this to your Quick CSS:

    .white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 500px;
    margin: 20px auto;
    }

    Best regards,
    Mike

    Hi,
    Please try adding the css above as it makes the caption show.

    Best regards,
    Mike

    in reply to: Add a pop up Booking form #1191284

    Hi,
    Thank you for the FTP access, when I checked your site again it was working again, so I activated your child theme and imported your theme settings and checked that it looked correct.
    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    1) ok, Archieve.php didn’t work, do you want to try the script I added above that removes the “PORTFOLIO ELEMENTS” ?
    2) I believe your Autoptimize or some caching is still serving the code I commented out, can we disable Autoptimize while testing?
    The titles for the image links are returning empty but I not seeing any code to do that. I have some code that gets the alt caption of the image and copies it to the link title for the same image.
    if we need it.

    Best regards,
    Mike

    in reply to: top image in woocommerce category #1191278

    Hi,
    Thank you for the login, I’m not sure why this occurs, when the filters are used the image container is removed so the image doesn’t show. I wrote this workaround that will add the image container only on an archive page with the category term “term-43” only if the image container is missing, I believe this covers all of the “if’s”
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function add_archive_thumb_for_term_earrings(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $('#top.archive.term-43').each(function() {
      	if($('.entry-content-wrapper .page-thumb').length) { } else { 
      	$('<div class="page-thumb"><img width="845" height="276" src="https://www.alinyerushalmi.co.il/wp-content/uploads/2019/09/earrings-alin-845x276.jpg" class="category_thumb" alt=""></div>').insertAfter('.woocommerce-notices-wrapper');
      	}
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_archive_thumb_for_term_earrings');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Add a pop up Booking form #1191274

    Hi,
    Please include FTP access in the Private Content area.

    Best regards,
    Mike

    Hi,
    Sorry I’m not sure I understand, the script above removes the title container “ELELEMNTI PORTFOLIO” and doesn’t add anything, the only other way to remove the title container is to edit the archive.php and remove echo avia_title(array('title' => avia_which_archive())); from line 20 then place this modified file in your child theme.
    Thanks for the login, I believe I fould the code and commented it out, please clear your browser cache and check. If this is correct I can remove it completely.

    function article_titles_attr(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $(".slide-entry").each(function(){
        var space = " ", returnValue = "";
        var pagetitle = $(".a2a_kit").attr("data-a2a-title");
        var captiontext = $(this).find("h3.slide-entry-title").text();
        $(this).find("img").attr("title",captiontext + space + pagetitle );
    	  $(this).find("img").attr("alt",captiontext + space + pagetitle);
    
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'article_titles_attr');
    
    function magazine_titles_attr(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $(".av-magazine-entry").each(function(){
        var space = " ", returnValue = "";
        var pagetitle = $(".a2a_kit").attr("data-a2a-title");
        var captiontext = $(this).find("h3.av-magazine-title").text();
        $(this).find("img").attr("title",captiontext + space + pagetitle);
    	  $(this).find("img").attr("alt",captiontext + space + pagetitle);
    
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'magazine_titles_attr');

    Best regards,
    Mike

    in reply to: direct link to content element tab #1191271

    Hi,
    Ok, so not linking to a tab section but a tab element, such as the link in the Private Content area.
    So this works when the tab element is in the initial opened tab section, because it is visible. But doesn’t work in a closed tab section because the page finds the tab element in the DOM even though it is not visible because the DOM doesn’t know it’s not visible.
    If you go to the tab section you will see the tab element is active, because the DOM did find it.
    I hope I have explained this well.
    I imagine some javascript could take a url with two hash tags or IDs and first go to the correct tab section and then go to the tab element.

    But as it stands now you need to link to the tab section for the tab element to be viewable, the tab element link will not make the tab section viewable.

    Best regards,
    Mike

    in reply to: Add a pop up Booking form #1191267

    Hi,
    To switch from your parent theme to the child theme and retain your same settings please follow these steps, first with your parent theme active go to Enfold Theme Options > Import/Export > Export Theme Settings File and download your theme settings file for fallback.
    then activate your child theme and ensure your Enfold Theme Options > Performance > JS & CSS file merging and compression is turned off along with any caching plugins, then go to Enfold Theme Options > Import/Export > Import Settings From Your Parent Theme and import, then go to your homepage and clear your browser cache a couple of times and check that the settings have taken effect.
    If it doesn’t look quite right then check that your Enfold Theme Options > Performance > JS & CSS file merging and compression is turned off and clear your browser cache a couple of more times.
    If still not quite right, then go to Enfold Theme Options > Import/Export > Import Theme Settings File and upload the theme settings file you saved earlier, and clear your browser cache a couple of more times.
    This should all work fine the first time, I only added the extra steps “just in case”.

    I tried to login to your site but got the error There has been a critical error on your website. if you need help with this then please explain any steps you took that might have caused this and include FTP access, or see if your webhost has a recent backup that you can roll back to.

    Best regards,
    Mike

    Hi,
    Please find the link to the two files in the Private Content area, then upload to your site via FTP or your cPanel file manager at
    \wp-content\themes\enfold\lang\
    and save a backup of your original two files for fallback.
    Then clear your browser cache and check.

    I see in the “nb_NO.po” there are many translations not completed, it is only 6% done. We are thankful to all of the translators that assist with this thread, if you would like to contribute to your language you could use the free software Poedit and open the “nb_NO.po” file to edit it, which also updates the “nb_NO.mo” file and then upload the two files to the thread for it to be added to the theme.
    Any help would be great, thank you.

    Best regards,
    Mike

    in reply to: Sticky Menu on Mobile not sticky #1191255

    Hi,
    Oh, I see, thanks.

    Best regards,
    Mike

    in reply to: top image in woocommerce category #1191253

    Hi,
    Glad this is working for you, for question 2 please include admin login in the Private Content area so we can investigate further.

    Best regards,
    Mike

    in reply to: Gallery layout edit #1191251

    Hi,
    Thank you for the feedback, for the horizontal gallery the activate starting thumbnail is all the way to the left, and the gallery doesn’t start moving until the fifth one is activate, or the fifth click.
    So I think two settings that will help is “Active Image Style” = “enlarge image” this will visually show which image is the active one even if the gallery is not side scrolling, and the “Initial Active Image” = “5” this will set number 5 as the active one so the next click scrolls the gallery.
    2020-03-08_070430.png
    To add some space to the top of the comments container, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.single-post #main div.comment-entry.post-entry {
    	padding-top: 50px !important; 
    }

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

    Best regards,
    Mike

    in reply to: No Animations on the latest Version (4.7.3) #1191248

    Hi,
    Thank you for the feedback, but it sounds like we are talking about two issues, the first is that in your v4.7.3 you don’t see the column animation tab as pictured above.
    and the second issue is that when you install a child theme your imported theme settings don’t seem correct?
    Is this correct?

    For installing a child theme please try these steps, first in your parent theme disable your Enfold Theme Options > Performance > JS & CSS file merging and compression then export your theme settings file to your desktop.
    Then activate your child theme and ensure to disable your Enfold Theme Options > Performance > JS & CSS file merging and compression then import your saved theme settings file. Then go to your Enfold Theme Options > General Styling > Quick CSS field and add a blank space so you can click the big blue button “Save all changes”, click save. Then if you have and caching plugins or minifying or Autoptimize you will need to clear these a few times or disable temporarily while you are clearing the site cache.
    Then go to your homepage and clear your browser cache a few times until the site looks right.
    If this still doesn’t work for you please include an admin login so we can try.
    As for the first issue, please include an admin login so we can investigate.

    If you updated this theme lately did you overwrite the theme directory via FTP with the new version?

    Best regards,
    Mike

    Hi,
    To remove the archive post title Try adding this code to the end of your functions.php file in Appearance > Editor:

    function remove_archive_post_title(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $('#top.archive h3.post-title.tag-page-post-type-title').remove();
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_archive_post_title');

    please ensure that your Enfold Theme Options > Performance > Load jQuery in your footer is not checked and none of your caching plugins or minifying plugins are moving the jQuery to the footer.

    For your second question, I had changed the alt and title tags in the images, and now you want to remove this and allow the alt and title tags to be natural?
    I’m sure I did this with jQuery like above, but I don’t recall exactly as it was some time ago, If I can login and look at your scripts I can probably find the right one to remove.

    Best regards,
    Mike

    in reply to: Column Link not working for custom link with anchor #1191243

    Hi,
    Thank you for the feedback, I tried recreating your page on my localhost and for the column links I used:

    http://test.test/index.php/elements/
    http://test.test/index.php/elements#av_section_3
    http://test.test/index.php/elements#av_section_4

    Notice that between the page “elements” and the IDs “#av_section_4” there is no backslash just the hash tag. Please try adjusting your links like this, as this worked correctly for me.

    Best regards,
    Mike

    in reply to: icons next to social media icons #1191237

    Hi,
    Thank you for the login, I changed the approach a little because I had some trouble uploading the flag icon font, so to your social profiles I added “Tumblr” & “Soundcloud” thinking you would not be using these in the future, so please add the links you want for the flags to these.
    Then I added this css to show the flags instead of these two icons:

    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);
    }

    Then I added this function to your functions.php to change the icon titles to the names of the flags on hover:

    function custom_flag_titles(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $('li.av-social-link-tumblr a').attr({title:'Great Britain'});
      $('li.av-social-link-soundcloud a').attr({title:'Sweden'});
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_flag_titles');

    Please clear your browser cache and check.

    Best regards,
    Mike

    Hey quistict,
    Sorry for the late reply and thanks for the login, It seems your slideshow caption was set to “visibility: hidden;”
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field to correct:

    .avia_transform .av_slideshow_full .avia-caption-content, .avia_transform .av_slideshow_full .avia-caption-title, .avia_transform .av_fullscreen .avia-caption-content, .avia_transform .av_fullscreen .avia-caption-title, .avia_transform .av_fullscreen .avia-slideshow-button, .avia_transform .av_slideshow_full .avia-slideshow-button {
        visibility: visible !important; 
    }

    Best regards,
    Mike

    in reply to: MailChimp Dropdown Field Styling #1191189

    Hi,
    Sorry for the late reply, to change your border to 1px, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top div .av-dark-form input[type=text],#top div .av-dark-form select {
    	border-width: 1px !important;
    }

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

    Best regards,
    Mike

    in reply to: Issue with Product Variation #1191188

    Hi,
    Sorry for the late reply, for the variations to show the different images I changed your Product gallery setting at Enfold Theme Options > Shop Options > Product gallery > WooCommerce 3.0 product gallery
    Now your images are changing.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, do you want to remove the text “Elementi di portfolio” or just the H3 that wraps it?
    Since this is your title for your portfolio page you should be able to remove the whole element by changing the “title” option for the page. Try setting to “hide both”:
    2020-03-07_173145.png

    Best regards,
    Mike

    in reply to: Add quantity checkout page woocommerce #1191185

    Hi,
    Sorry for the late reply, according to this article there is a function you can add to your functions.php to change the quantity for specific products.

    Best regards,
    Mike

    Hi,
    Thanks for the login, on your page you are getting the error Failed to load plugin url: https://[your-site]/schultz/wp-content/plugins/popup-maker/assets/js/mce-buttons.min.js?version=1.9.1 this could be causing the plugin to not work correctly, on this page /historie/ how is the popup triggered, I don’t see any shortcode or link for the popup.
    I tested the “popup maker” plugin on a new install but it didn’t work correctly, I also tested the free WP Popups Lite and it did work correctly showing a icon and image shortcode in the popup. Perhaps give this one a try.
    We have a built-in lightbox popup that you can add icons, images, and shortcodes to. Here are the instructions to create

    Best regards,
    Mike

    in reply to: Sticky Menu on Mobile not sticky #1191177

    Hi,

    @Guenni007
    thanks for the alternative, I will submit to the dev team for review.

    Best regards,
    Mike

    in reply to: icons next to social media icons #1191175

    Hi,
    I now get the error: “Unknown username”

    Best regards,
    Mike

    in reply to: Moving image out of a div #1191174

    Hi,
    Thank you for the login, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    span.logo,span.logo a {
    	overflow: visible !important; 
    	z-index: 99;
        position: relative;
    }

    This should allow the logo “tails” to hang down over the image.

    Best regards,
    Mike

    in reply to: Gallery layout edit #1191172

    Hi,
    Thank you for adding the “OUR CATEGORIES” but it is only a paragraph of text, this will need a custom class in order to move it successfully without accidentally moving unwanted elements. Try using this html for your text:
    <p class="move-text">OUR CATEGORIES</p>
    then you can use this function

    function text_after_related_posts
      <script>
    (function($) {
      $(document).ready(function(){
         $('#top.single-post p.move-text').detach().insertAfter('.related_posts');
      });
     })(jQuery);
     </script>
    <?php
    }
    add_action('wp_footer', 'text_after_related_posts');

    For the horizontal gallery use this function

    function horizontal_gallery_after_related_posts
      <script>
    (function($) {
      $(document).ready(function(){
         $('#top.single-post .av-horizontal-gallery').detach().insertAfter('.related_posts');
      });
     })(jQuery);
     </script>
    <?php
    }
    add_action('wp_footer', 'horizontal_gallery_after_related_posts');

    Best regards,
    Mike

    in reply to: Changing Enfold files in my Child theme #1191169

    Hi,
    Odd, the version 4.7.3 that I received included a child theme with the above code in the functions.php, perhaps it’s a beta version, I thought it was added to everyone’s version. My mistake.

    Best regards,
    Mike

    in reply to: icons next to social media icons #1191167

    Hi,
    Some people use plugins to restrict certain countries or their web server, not the theme.
    Login is not working, please check.

    Best regards,
    Mike

Viewing 30 posts - 17,041 through 17,070 (of 34,221 total)