Forum Replies Created

Viewing 30 posts - 17,761 through 17,790 (of 35,026 total)
  • Author
    Posts
  • in reply to: Change bacground color of sidebar #1193239

    Hi,
    Thank you, that makes sense.

    Best regards,
    Mike

    in reply to: Fontello Icons not working #1193238

    Hi,
    Noted, thanks.

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1193237

    Hi,
    Thanks @Guenni007, perhaps I do have a different version, I don’t think so but it would explain this.
    I posted to link to my version in your child theme stylesheet, if you don’t mind trying to install that it would be appreciated.

    Best regards,
    Mike

    Hi,
    Problem 2) I used your keyword checker and used your page link, but I don’t know your language so I wouldn’t know which words are yours. But I don’t find “agrave” on your page like the keyword checker says.
    Problem 3) no I don’t.
    Best regards,
    Mike

    in reply to: top image in woocommerce category #1193231

    Hi,
    Yes, you can install a child theme now, Read about it & Get it here After you activate your child theme you can then move your customizations from your parent theme functions.php, to your child theme functions.php. If you changed any theme files then typically you can add those to your child theme folder, it depends on the file.
    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”.

    Best regards,
    Mike

    in reply to: Error importing enfold travel demo #1193229

    Hi,
    Glad you were able to sort this out, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: 6 columns are not working #1193224

    Hi,
    Thank you for the login, it seems that you can’t use the columns “equal height” option with this. But in your case they all look the same anyways. Please clear your browser cache and check, they are all in a single row now.

    Best regards,
    Mike

    in reply to: top image in woocommerce category #1193201

    Hi,
    Glad to hear, Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: How to link to tabs #1193200

    Hi,

    @Guenni007
    thank you, that is a good point. @KosmetikAndNails please let us know if updating and using @Guenni007 code above helps.

    Best regards,
    Mike

    in reply to: Menu quest underline #1193198

    Hi,
    Thank you for the link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field to remove the underline for sub-menu items:

    #avia-menu ul.sub-menu .menu-item a:hover span.avia-menu-text {
        border-bottom-color: transparent !important;
    }

    Best regards,
    Mike

    in reply to: top image in woocommerce category #1193195

    Hi,
    Glad to hear this helped, so since the function above is adding the “earring” image I wanted it to only work with category term “term-43”
    When I look at your product categories I see you have three categories with images, so each one will need its own function.
    2020-03-15_053300.png
    will there be more than three?
    This function works with all three categories:

    function add_archive_thumb_for_terms(){
      ?>
      <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');
      	}
    });
    $('#top.archive.term-44').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/Bracelet-alin-845x276.jpg" class="category_thumb" alt=""></div>').insertAfter('.woocommerce-notices-wrapper');
      	}
    });
    $('#top.archive.term-42').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/Necklace-alin-845x276.jpg" class="category_thumb" alt=""></div>').insertAfter('.woocommerce-notices-wrapper');
      	}
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_archive_thumb_for_terms');

    notice how I only changed the “#top.archive.term-XX” and the image url for each one, if you follow this you can create as many as you like.

    Best regards,
    Mike

    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

Viewing 30 posts - 17,761 through 17,790 (of 35,026 total)