Forum Replies Created

Viewing 30 posts - 17,821 through 17,850 (of 35,075 total)
  • Author
    Posts
  • Hi,
    Sorry, we don’t have a solution for this, however, you could try using this plugin and function: Woocommerce Product Price in Search Result

    Best regards,
    Mike

    in reply to: Fontello Icons not working #1193189

    Hi,

    @Guenni007
    Thank you for pointing this out, I did find the entypo-fontello paper-airplane in another post and used the same
    ( 'font' =>'entypo-fontello', 'icon' => 'ue8b7');
    Good tip 🙂

    Best regards,
    Mike

    in reply to: Open image in lightbox with custom button #1193188

    Hi,

    @Guenni007
    Thanks for sharing, @navindesigns please try adding this css.

    Best regards,
    Mike

    in reply to: Telegram Icon #1193154

    Hey Stephan,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['telegram']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue8b7');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Telegram'] = 'telegram';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Then add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #wrap_all .av-social-link-telegram:hover a {
        color: #fff;
        background-color: #add4ef;
    }

    That should give you this:
    2020-03-14_194649.png

    Best regards,
    Mike

    in reply to: Demo Import Not Working #1193147

    Hi,
    Sorry for the late reply, we could try to import the Enfold 2017 demo for you but we will need to reset your site, meaning all of your current content will be lost, is this ok?
    Typically, this error occurs when the site is on a “WordPress Managed” hosting which sometimes blocks the import of the images and assets from our server. Please include FTP access so we can upload the images directly and bypass the “block”

    Best regards,
    Mike

    in reply to: Headline Rotator – Typewriter #1193146

    Hi,
    Glad Jordan could 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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Generate custom buttons #1193145

    Hi,
    Your css was correct but it had some hidden characters in it that I removed for you, this is the new css:

    #top #main .my-button .avia-button {
    	background: #fff;
    	border: 3px solid red !important;
            color: red !important;
    }
    #top #main .my-button .avia-button:hover {
    	background: green;
    	color: #fff !important;
    }

    Please clear your browser cache and check, and adjust the color to suit.

    Best regards,
    Mike

    in reply to: Open image in lightbox with custom button #1193139

    Hey navindesigns,
    Thanks for the login, I see that you have 5 buttons, so I assume you will need 5 different popups.
    First we will add the jQuery for the popup in your functions.php

    function popup_inline() { ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
    	jQuery('.open-popup-link').magnificPopup({
    	  type:'inline',
    	  midClick: true
    	});
    });
    </script>
    <?php }
    
    add_action('wp_head', 'popup_inline');

    Then we will add this css to your Quick CSS:

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

    Then we will add five popups to a code block element on the page, you can edit the part PLACE CONTENT ONE HERE by adding text and image shortcodes or html code:

    
    <div id="one-popup" class="white-popup mfp-hide">
    <p>PLACE CONTENT ONE HERE</p>
    </div>
    <div id="two-popup" class="white-popup mfp-hide">
    <p>PLACE CONTENT TWO HERE</p>
    </div>
    <div id="three-popup" class="white-popup mfp-hide">
    <p>PLACE CONTENT THREE HERE</p>
    </div>
    <div id="four-popup" class="white-popup mfp-hide">
    <p>PLACE CONTENT FOUR HERE</p>
    </div>
    <div id="five-popup" class="white-popup mfp-hide">
    <p>PLACE CONTENT FIVE HERE</p>
    </div>
    

    then for your buttons I added the link like this:
    <a class="open-popup-link" href="#two-popup"><div class="btnFloorPlanMobile">VIEW FLOOR PLAN</div></a>
    notice each link has a different anchor to open a different popup.
    Now there is a little white space where the hidden code block is on the page, so I added this to the code block to hide the white space:

    <style>
    #after_section_1 {
    	display: none !important;
    }
    </style>

    Please clear your browser cache and check the buttons and popups.

    Best regards,
    Mike

    in reply to: 6 columns are not working #1193136

    Hi,
    Have you tried to Enable the Avia Layout Builder Debugger and copied the shortcode from the documentation page to your test page
    2020-03-14_163233.png
    Then to test the css on the one page, just paste this into a code block element:

    <style>
    /*----------------------------------------
    // Create more than six Columns
    //--------------------------------------*/
    
    
    
    #av-extra-columns .entry-content-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    }
    
    
    #av-extra-columns .column-top-margin {
    margin-top: 0 !important;
    }
    
    
    #av-extra-columns .flex_column {
    width: 14%;
    flex-basis: 14%;
    margin-left: 2%;
    margin-top: 20px!important;
    }
    
    
    #av-extra-columns .flex_column.first {
    clear: none!important;
    margin-left: 2%;
    }
    
    
    /* Two columns in mobile */
    
    
    
    @media only screen and (max-width: 768px) {
    #av-extra-columns .flex_column {
    margin-bottom: 20px!important;
    margin-top: 20px!important;
    /* Width of the container */
    flex-basis: 40%;
    }
    
    #av-extra-columns .flex_column:nth-child(even) {
    margin-left: 10%!important;
    }
    }
    </style>

    Best regards,
    Mike

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

    .ajax_search_response > H4 {
    	display: none !important;
    }

    Best regards,
    Mike

    in reply to: Menu quest underline #1193130

    Hi,
    Please link to your site so we can examine your sectors.

    Best regards,
    Mike

    in reply to: Font-Manager.class.php #1193128

    Hi,
    Thank you for the login, this error occurs when there is an error in downloading the icon-font, I removed it from your Enfold Theme Options > Import/Export > Iconfont Manager and the error is now gone. Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: No update of enfold and wordpress possible #1193127

    Hey Whippert,
    I see that you are using Enfold v3.8.4, you will need to update the theme, the latest version is v4.7.3
    After you update the theme you will be able to update WordPress.
    The easiest and safest way to update is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    in reply to: Error importing enfold travel demo #1193126

    Hey Mateo,
    Thank you for the login, it looks like among your tries you were able to import the demo, please take a look at your site.

    Best regards,
    Mike

    Hi,
    Thank you for the links, I see that you have a menu hidden with your header, but you don’t have any menus created because you don’t use any menus. Please try creating a new menu with no menu links and then assign it to your main menu.
    Since the headers are hidden the menu should also be, but now in the source code, there shouldn’t be any links.

    Best regards,
    Mike

    in reply to: Fontello Icons not working #1193108

    Hi,
    It is possible to use FONT AWESOME but it will not be in the icon choices, you will have to use the snippets such as:
    <i class=”fab fa-telegram-plane”></i>
    to add FONT AWESOME, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function Font_Awesome_5(){
        ?>
        <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
        <?php
        }
    add_action('wp_head', 'Font_Awesome_5');

    we can make a feature request for the “TELEGRAM icon”, is it for the mobile and desktop messaging app?

    Best regards,
    Mike

    Hi,
    In your cPanel please go to your “File Manager”
    2020-03-14_101810.png
    then find your \wp-content\themes\enfold-child folder and add the includes folder.
    2020-03-14_102615.png
    and then upload the file into your new folder.
    You can upload images to https://savvyify.com/img/ and paste the image code into your posts.

    Best regards,
    Mike

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

    Hi,
    For a sticky header on mobile try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_sticky_header(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){       
         var scroll_start = 0;
         var startchange = $('#header');
         var offset = startchange.offset();
          if (startchange.length){
         $(document).scroll(function() { 
            scroll_start = $(this).scrollTop();
            if(scroll_start > offset.top) {
              document.getElementById('header').classList.add('sticky-top');
             } else {
              document.getElementById('header').classList.remove('sticky-top');
             }
         });
          }
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_sticky_header');

    and this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
    .sticky-top {
        position:fixed!important;
        top:0!important;
        z-index:10000!important;
    }
    }

    Best regards,
    Mike

    Hi,
    I wouldn’t say this is a lack of priority, it’s a matter that correcting a WordPress core file from within a theme takes time, we can’t make a release that replaces the file, we have to come up with another solution especially since the filter WordPress published for this doesn’t seem to be working.

    Best regards,
    Mike

    in reply to: How to link to tabs #1193100

    Hi,
    I see that when linking directly from another page or site to https://kosmetikandnails.ch/#nails the tab opens but the page doesn’t scroll down to the tab. to correct try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_id_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $("a.av-section-tab-title").each(function() {
       var $this = $(this);       
       var _href = $this.attr("href"); 
       var itemId = _href.substring(1, _href.length);
       $this.attr("id", itemId);
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_id_script');

    it adds an “id” to the tab link so the page will scroll to the tab.
    If the link to the tab is clicked on the same page the offset doesn’t always work so add this code to the end of your functions.php file in Appearance > Editor to apply an offset to the tabs:

    function custom_offset_script(){
      ?>
      <script>
    (function($){
    	var width = $(window).width()
    	if ((width >= 768)) {
        $('a.av-section-tab-title[href*="#"]:not([href="#"])').click(function() {
        var offset = -130; // <-- change the value here
        if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
            var target = $(this.hash);
            target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
            if (target.length) {
                $('html, body').animate({
                    scrollTop: target.offset().top + offset
                }, 1000);
                return false;
            }
        
        }
        
    });
    } else {}
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_offset_script');

    Best regards,
    Mike

    in reply to: Sidebar Thumbnails Size #1193092

    Hi,
    3) yes the padding is removed from the tabs on mobile, this allowed the large tabs to have the same width as the container and not create multiple rows. But you could have top and bottom padding if you change the css to this:

    @media only screen and (max-width: 767px) {
    #top div div.product .woocommerce-tabs ul.tabs li a, #top div div.product .woocommerce-tabs ul.tabs li.active a {
        padding: 9px 0px!important;
    }
    }

    Best regards,
    Mike

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

    Hi,
    Thank you for the login, I have installed your child theme and imported your parent theme settings.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1193077

    Hi,

    @peterolle
    thanks, I was hoping to find a reason your alt & title for the alternate logo is not working. I have again installed a clean version on my localhost with only the woocommerce plugin and no functions, and once I add the alt & title to the alternate logo the alt & logo reflects the change.
    2020-03-14_051140.jpg
    So I can’t confirm your issue, I will ask the rest of the team to try to recreate to error and offer suggestions to correct.
    Thank you for your patience.

    Best regards,
    Mike

    in reply to: Enfold – Lawyer Demo #1193074

    Hi,
    Try this link: https://www.dropbox.com/s/tdy21xu2tlwm9rg/justice.zip?dl=0

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1192883

    Hi,

    @peterolle
    login page is still giving the WordFence “You are temporarily locked out” error, please check.

    Best regards,
    Mike

    in reply to: A couple of questions about demos installation #1192881

    Hi,
    1) Thanks for the screenshots, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #main .slide-entry {
        width: 100% !important; 
    }
    .responsive #top #wrap_all #main .content .entry-content-wrapper {
        padding: 0px !important; 
    }
    .responsive #top #wrap_all .container {
        width: 95% !important; 
        max-width: 95% !important; 
    }
    }

    2) Typically the theme options will tell you when there is an update and you can update through the theme options, but you must have a “valid Envato private token” in the theme options, but on your site I see this is empty, please follow the instructions on the theme options page.
    3) glad that helped.

    Best regards,
    Mike

    Hi,
    Thank you for the ftp access, on the topic of restoring the title attribute to the linked thumbnails of your blog posts such as the link in the Private Content area, I found that the postslider.php was missing the title attribute on line 699 $title
    I have adjusted your child theme postslider.php so your natural titles will show.
    I also found that to remove the “portfolio elements” from the same page the “tag.php” needed to be adjusted, I did this and added the file to your child theme, so now the heading doesn’t show and no scripts or css is used to hide it, as requested.
    I reenabled all of your plugins and customizations except for the two jQuery scripts that you didn’t want to use anymore in your original request.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Update has broken my Code #1192852

    Hi,
    Thank you for the login, I see in your “site health” you have a “Rest API” error:
    Error: [] cURL error 28: Operation timed out after 10001 milliseconds with 0 bytes received
    This is typically a server issue, this article suggests some possible solutions or this one.

    Best regards,
    Mike

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

    Hi,
    Typically installing the child theme is easy, I just tried to explain the possible hangups “just in case”
    A child theme is used as your theme that you can edit and customize and the customizations will not be lost when you update the parent theme (enfold)
    When you don’t use a child theme and you edit the theme files or add functions in the functions.php these changes are lost when the parent theme is updated because the files are replaced with the new theme files.
    Child theme files or functions.php are not replaced when the theme is updated.
    If you have already edited the parent theme files or added functions in the functions.php, once you have installed your child theme you will need to move these customizations to your child theme.

    Best regards,
    Mike

    in reply to: grid column failure #1192579

    Hi,
    Thank you for the feedback, I copied your failed post to my localhost via the Avia Layout Builder Debugger
    and then I removed the nested columns and placed all of the content in the grid rows 2/3 + 1/3 and saved and viewed the page a couple of times and also tried editing it a couple of times and each time the grid rows remained in place in the frontend and the backend.
    Please go to the test page in the Private Content area and test the frontend and the backend, it seems that it is stable now.

    Best regards,
    Mike

Viewing 30 posts - 17,821 through 17,850 (of 35,075 total)