Forum Replies Created

Viewing 30 posts - 10,741 through 10,770 (of 25,536 total)
  • Author
    Posts
  • in reply to: Change Woocommerce term for "Cart" #1181154

    Hi KeyshaunSmith,

    I think you can try the following things, for No products in the cart. it is found in woocommerce > templates > cart > mini-cart.php (line 92):

    <p class="woocommerce-mini-cart__empty-message"><?php esc_html_e( 'No products in the cart.', 'woocommerce' ); ?></p>

    According to Woocommerce documentation: https://docs.woocommerce.com/document/template-structure/ you will need to override that template.
    So in your child theme, create a folder called woocommerce then inside it create another folder called cart then copy mini-cart.php from the plugin to the child theme, then modify it.

    As for changing the text, this is the only available information in their documentation: https://docs.woocommerce.com/document/change-add-to-cart-button-text/
    Hope this helps.

    Best regards,
    Nikko

    in reply to: image hover overlay (background color) on mobile #1181152

    Hi Jason,

    :hover doesn’t really cover touch in mobile devices, I tried to look for something that could be helpful and I found this in stackoverflow: https://stackoverflow.com/questions/22559756/changing-hover-to-touch-click-for-mobile-devices#answer-22560108
    Please try to use :active as well.
    Let us know if this helps.

    Best regards,
    Nikko

    Hi GB,

    Just go to Appearance > Menus, then replace the Shop menu item and replace it with your Custom Shop page then just set the Label to Shop.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Masonry Portfolio element #1181148

    Hey MPPcreative,

    Thanks for providing the link to your site.

    1. Please add this CSS code in Quick CSS, located in Enfold > General Styling:

    #top .av-masonry-sort {
        text-align: left;
    }

    2. Add this in Quick CSS as well:

    #top.home .av-masonry-entry-content.entry-content {
        color: #f6b6b7;
    }

    3. I wouldn’t say it’s not possible but I would say it’s a bit complicated and would need some time to build that feature, so we could not really help with it and it’s outside the scope of our support. To build that feature requires knowledge in PHP and JavaScript, then use it to override the default Masonry element ( https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#add-elements-to-alb ).

    Best regards,
    Nikko

    in reply to: My Account page look weird #1181146

    Hey anushikababuv,

    The problem is coming from enfold-child > static > css > bootstrap-grid.min.css (these are the codes responsible):

    .col-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    
    .col-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    To fix it, add this CSS code in Quick CSS (located in Enfold > General Styling):

    #top .u-column1, 
    #top .u-column2 {
        max-width: 46%;
    }

    Best regards,
    Nikko

    in reply to: Sub Menu looking strange #1181140

    Hi SarahKunterbunt,

    We have added this code in your Quick CSS:

    #top .avia_ajax_form input, 
    #top .avia_ajax_form textarea {
        font-family: "open sans condensed",Arial,sans-serif;
        font-size: 15px;
    }

    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Fullwidth Sub menu styling #1181137

    Hi lmzucker432,

    I have inspected your site but I don’t see the code I gave anywhere.
    Can you try to disable CSS file merging and compression in Enfold > Performance? then clear the cache.

    Best regards,
    Nikko

    Hi CommunityHousing,

    I think it will be a bigger issue in the future since Enfold isn’t updated but the version of your WordPress is the latest version.
    Enfold 4.0.7 was made when WordPress was still version 4.x but WordPress has already upgraded to version 5 which is a major version.
    I tried to suppress the issue but it shows another error after fixing one, you can try the following:
    – To suppress this issue:

    Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: regex

    go to wp-content > themes > enfold > js > avia.js remove this codes (line 999 and 1000):

    a:regex(href, .vimeo\.com/[0-9]) , 

    – To suppress this issue:

    Uncaught TypeError: $.AviaTooltip is not a constructor

    go to wp-content > themes > enfold > js > shortcodes.js find these codes (line 36-39):

    new $.AviaTooltip({'class': "avia-tooltip", data: "avia-tooltip", delay:0, scope: "body"});
    		
    //creates icon element tooltip
    new $.AviaTooltip({'class': "avia-tooltip avia-icon-tooltip", data: "avia-icon-tooltip", delay:0, scope: "body"});

    replace with:

    new $.AviaTooltip();
    		
    //creates icon element tooltip
    new $.AviaTooltip();

    Best regards,
    Nikko

    Hi PresentIT,

    I apologize for that :(
    Can you tell us what PHP version is used on that other site?
    Seem’s really weird, the Linkedin icon works fine on your site until it’s passed on the widget and data-av_icon is lost in the process but seems to be works properly on my local installation.

    Best regards,
    Nikko

    in reply to: Masonry Portfolio Thumbnail Image Dimensions Help #1180806

    Hi killyman,

    We’re glad that we could help :)
    Let us know if you need further assistance or if we can mark this thread as resolved.

    Best regards,
    Nikko

    Hi CommunityHousing,

    I apologize for not noticing beforehand but the version of Enfold you’re using is already outdated.
    Please consider updating your site to the latest version of Enfold.
    Please create a backup first and try to create a staging site (basically a clone of your site, placed on a subdomain) and do the updates there first so you won’t risk your live site, if all is good you can proceed on updating your live site.
    Here’s an article that you can follow for creating a staging site: https://themeisle.com/blog/wordpress-staging-site/

    Best regards,
    Nikko

    in reply to: hide attribute alt in image #1180800

    Hi brunet77,

    Please try this code instead, this should hide the tooltip on image hover:

    function add_custom_tooltip(){
    	?>
    	<script>
    		(function($) {
    			$('img').hover(
    				function () {
    					$(this).data('title',$(this).attr('title')).removeAttr('title');
    				}, 
    				function () {
    					$(this).attr('title',$(this).data('title'));
    				}
    			);
    		})(jQuery);
    	</script>
    	<?php
    }
    add_action('wp_footer', 'add_custom_tooltip', 99);

    Best regards,
    Nikko

    in reply to: Masonry Portfolio Thumbnail Image Dimensions Help #1180799

    Hi killyman,

    Yes, so the code would look like this:

    function enfold_customization_modify_thumb_size( $size ) {
      $size['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); // images for fullscreen masonry
      $size['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270); // big images for blog and page entries
      $size['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
      return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );

    One thing also to keep in mind is that this works only for images that is uploaded after this code is added, for older photos you will need to regenerate the images.

    Best regards,
    Nikko

    in reply to: Hide Logo, after scrolling show it #1180797

    Hi burdeMedia,

    The code only includes the logo however the part where it hides the whole header at the beginning is because of this setting: Header visibility and transparency is set to Header is invisible and appears once the users scrolls down, please set it back to No Transparency.

    Best regards,
    Nikko

    in reply to: Fullwidth Sub menu styling #1180455

    Hi lmzucker432,

    Try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    #top .av-submenu-container .avia-menu-text {
        color: white;
        font-size: 20px;
    }
    
    #top .av-submenu-container .avia-menu-text:hover {
        color: yellow;
    }

    Best regards,
    Nikko

    in reply to: Update theme version #1180454

    Hi nox07,

    The updates done on the staging site is most likely just files but not database content.
    If you’ve done some changes in theme options for example you will need to re-apply it, unless you use some database migration plugin which covers this part.
    Also with regards to theme verification, you will most likely need to put the envato token, but aside from that I don’t think you’ll need any theme verification.

    Best regards,
    Nikko

    in reply to: Menu Link highlighted when on that page #1180452

    Hi lmzucker432,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Adjust logo top padding on desktop only #1180451

    Hi manjii,

    The code you posted will only work on tablet in portrait mode but not on landscape.
    Tablet in landscape mode is atleast 1024px in width.

    Best regards,
    Nikko

    in reply to: Masonry Portfolio Thumbnail Image Dimensions Help #1180450

    Hi killyman,

    You would need to upload a similar image dimension for it to move to the left.
    Reptopia image is a bit longer (not similar aspect ratio) with other images, it’s current size is 1136 (width) x 640 (height) px.
    Try to crop it using an image editor and make it 1136 x 639px.
    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Make masonry grid layout more uniform for blog items #1180377

    Hi nolka,

    You can upload it in https://imgur.com/ or any online image sharing sites.
    Then post the link here.

    Best regards,
    Nikko

    in reply to: hide attribute alt in image #1180376

    Hey brunet77,

    You can remove the alt attribute using this code (at it on functions.php):

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
      jQuery('a').removeAttr('alt');
      jQuery('img').removeAttr('alt');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    If you’re referring to the tooltip that shows on mouse over, please replace alt with title.
    Hope this helps.

    Best regards,
    Nikko

    Hi PresentIT,

    I apologize for not being able to come up with a solution yet.
    It’s a weird issue since the code for facebook and linkedin are the same, also in my local server it does work fine even if linkedin’s linktarget is set to blank.
    As for your other website, is it on the same hosting?

    Best regards,
    Nikko

    in reply to: Impossible to import a demo. ERROR MESSAGE #1180370

    Hi Elodie,

    I’m not really sure with the cause of the issue, my guess is that the source of demo is blocked from importing to your site.
    To import, I just imported the demo on my local server, exported all the contents and theme settings then imported it on your site.
    Then do some minor tweaks, like adding widgets and selecting the primary/main menu.

    Best regards,
    Nikko

    in reply to: Hide Logo, after scrolling show it #1180366

    Hi burdeMedia,

    I see, please try adding this code in functions.php:

    function add_hide_logo(){
    ?>
    <script>
    jQuery(window).scroll(function(){
      if(jQuery(this).scrollTop() < 200) jQuery('.logo').fadeOut('slow');
      if(jQuery(this).scrollTop() >= 200) jQuery('.logo').fadeIn('slow');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_hide_logo');

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Sort Portfolio Categories #1180364

    Hi OSLO2019,

    We’re glad that you found a workaround :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Try beta version 4.7.3 #1180362

    Hi BigBatT,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hey ionutb2017,

    Can you elaborate more on what you’re trying to achieve? can you provide a screenshot, or maybe a link to your site and point it to us.

    Best regards,
    Nikko

    in reply to: Variable products woocommerce mobile version display #1180359

    Hey Marco,

    Try adding this css code in Quick CSS, located in Enfold > General Styling:

    @media only screen and (max-width:767px) {
      #top .av-catalogue-price {
        position: static;
      }
    }

    Best regards,
    Nikko

    in reply to: Can't change color style using Modern Black #1180358

    Hi jvgargallo,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hey CommunityHousing,

    Please enable SCRIPT_DEBUG.
    https://wordpress.org/support/article/debugging-in-wordpress/#script_debug

    Best regards,
    Nikko

Viewing 30 posts - 10,741 through 10,770 (of 25,536 total)