Forum Replies Created

Viewing 30 posts - 18,091 through 18,120 (of 35,261 total)
  • Author
    Posts
  • 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

    in reply to: Accordion Toggle Failing To Work #1191162

    Hey slui,
    Thank you for the login, your jQuery script was using “.live()” which was removed from jQuery in v1.9, I replaced it with the recommended “.on()” and now your accordions and slideToggle contact form work.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to install latest theme? #1191158

    Hi,
    Thank you for the WordPress logins, they worked for me, but the FTP logins didn’t, please check.
    Also, did you upload your latest theme zip file download from Envato to one of your sites for us to use?

    Best regards,
    Mike

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

    Hey Romovick,
    Thank you for the login, I see right now your child theme is not active so the codes in the child theme functions.php are not active.
    You can easily create the shortcode needed for your popup by using the Classic Editor and the shortcode wand this will let you use the same tool to create the contact form as on your /contact/ page.
    Are you going to be using the “popup anything” plugin for your popups?

    Best regards,
    Mike

    Hi,
    Thanks for the screenshot, within the /enfold/lang/nb_NO.po and nb_NO.mo files I found the “Replies” didn’t have a translation, what should it say? I can edit this for you and send you the new file and also submit it to the dev team to be added to the next update.

    Best regards,
    Mike

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

    Hi,
    When I look at your site all 3 columns link to /services/ can you link one to /services/#technology so we can see the error.
    To remove the screen reader link from the columns, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    jQuery(window).load(function(){
      jQuery('a.av-screen-reader-only').remove();
      });
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Landing page full width and height (no scrolling) #1191144

    Hey Elena,
    Thanks for the link, to have the socket be fixed to the bottom of the screen try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #landing-footer {
    position: fixed;
        bottom: 0;
    }

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

    Best regards,
    Mike

    in reply to: fixed or limited main navigation item width? #1191135

    Hi,
    Thanks for the link to the page, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #menu-item-814 > a,#menu-item-804 > a,#menu-item-898 > a {
    	width: 110px;
        line-height: 28px !important; 
        text-align: center;
        padding-top: 30px !important; 
    }
    

    After applying the css, Please clear your browser cache and check.
    Expected results
    2020-03-07_095837.png

    Best regards,
    Mike

    in reply to: top image in woocommerce category #1191123

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

    #top.archive #main .template-shop.content .page-thumb img {
    	width: 100% !important;
    }

    On some of your categories the “page-thumb” is not present, do all of your categories have a thumbnail image in the product categories option? If so perhaps there is a plugin conflict, have you tried disabling your plugins and checked?

    Best regards,
    Mike

    in reply to: Sidebar Thumbnails Size #1191121

    Hi,
    To make the widget price amount larger, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .product_list_widget span.woocommerce-Price-amount.amount {
    	font-size: 15px !important;
    }

    After applying the css, Please clear your browser cache and check.
    According to this article you can make the email not mandatory by adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter( 'woocommerce_billing_fields', 'ts_unrequire_wc_phone_field');
    function ts_unrequire_wc_phone_field( $fields ) {
    $fields['billing_email']['required'] = false;
    return $fields;
    }

    Please give this a try.

    Best regards,
    Mike

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

    Hi,
    Unfortunately, nested ID or anchors will not work, this is just a limitation with html.

    Best regards,
    Mike

Viewing 30 posts - 18,091 through 18,120 (of 35,261 total)