Forum Replies Created

Viewing 30 posts - 6,601 through 6,630 (of 34,677 total)
  • Author
    Posts
  • in reply to: Background color not showing up #1411584

    Hey jnightingale,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .cog-form__container {
    	background-color: #0056a6 !important;
    }

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

    Best regards,
    Mike

    in reply to: Table element with link #1411583

    Hey Stefan,

    Assuming that this is a Pricing Table element and you want to add a different link to each inner table:
    Enfold_Support_2443.jpeg
    First add the custom class table-link to the table element developer settings:
    Enfold_Support_2441.jpeg
    Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function ($) { 
        $(".table-link .pricing-table-wrap:first-child").wrap(function() {
           var link = $('<a/>').css({'display':'table','width':'33%','float':'left'});
           link.attr('href', 'https://google.com');
           return link;
        });
        $(".table-link .pricing-table-wrap:nth-child(2)").wrap(function() {
           var link = $('<a/>').css({'display':'table','width':'33%','float':'left'});
           link.attr('href', 'https://duckduckgo.com');
           return link;
        });
        $(".table-link .pricing-table-wrap:nth-child(3)").wrap(function() {
           var link = $('<a/>').css({'display':'table','width':'33%','float':'left'});
           link.attr('href', 'https://bing.com');
           return link;
        });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    note that each of the three inner tables have a different URL
    While this works, it has a drawback that the link changes the display of the table which changes the width, the script adds a hard width to the table to correct this issue but then it is not very response. Perhaps you don’t mind this, but I recommend just using the button that is in the table for your links.

    Best regards,
    Mike

    in reply to: Do not show frames and fields #1411582

    Hey schweg33,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.woocommerce-shop .container_wrap_first {
    	 border: none;
    }
    #top.woocommerce-shop .product-sorting {
    	display: none;
    }
    #top.single-product .avia-wc-30-product-gallery-lightbox {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: Mailchimp Widget Not Showing #1411581

    Hi,
    Perhaps, the email field is showing in the theme options and on my test site it shows on the frontend for a published page, try editing the element again and saving again to reload it, if this doesn’t work then publish the page and check again.

    Best regards,
    Mike

    in reply to: Masonry gallery alignment issue #1411580

    Hey James,
    Thanks for your patience and the link to your site, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function($) {
    $('#av-masonry-2-item-3398 img').height($('#av-masonry-2-item-3398 img').height() + 15);
    $('#av-masonry-1-item-3400 img').height($('#av-masonry-1-item-3400 img').height() + 15);
    }(jQuery)); 
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');
    

    Best regards,
    Mike

    in reply to: Error in Avia Shortcode Parser #1411579

    Hey lzevon,
    Glad you were able to find the issue is with the slashs in the GravityView shortcode, slashs in shortcode is very unusual, have you tried to escape the slashs like this:
    [gv/\widgets/\page_size] [/gv/\widgets/\page_size]
    If that doesn’t work then try making a new shortcode with no slashs to call that shortcode using do_shortcode
    I don’t see that we can correct this plugin in the theme.

    Best regards,
    Mike

    in reply to: menu and portfolio gap question #1411576

    Hi,
    Please don’t add css into the developer setting fields, only add CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    Best regards,
    Mike

    in reply to: Dash or hyphen for sub-bullet #1411575

    Hey beverlystone,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia_textblock ul li ul li:before {
    	content:'-';
    	padding-right: 5px;
        color:#000 !important;
        font-size: 20px;
    }
    .avia_textblock ul li ul li {
    	list-style: none;
    	padding-left: 1em;
        text-indent: -2em;
    }

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

    Best regards,
    Mike

    in reply to: How to dequeue enfold css and js files #1411574

    Hi,
    Unfortunately you can not control the objects inside an iframe, you would need to dequeue the items for the page that is going to be used as an iframe before it is used.
    So your iframe page would only be used for the popup and not directly accessed.
    Since your popup is only a contact form why not add it to your page hidden and show in a lightbox popup?

    Best regards,
    Mike

    in reply to: move text boxes (grid) on mobile version #1411573

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #top #av_section_2 .avia-builder-el-first.first.flex_column_div {
    	margin-top: -400px;
    }
    }

    Feel free to adjust the negative margin to suit, this worked on the three pages that you linked to and should work on any other pages with the same structure.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: about your Enfold template #1411572

    Hi,
    Your shortcode [best_selling_products limit="4" column="4" paginate="true" orderby="rand"] is already set to show random items with orderby=”rand” but I found that the shortcode best_selling_products is very old and should be used with old versions of woocommerce. According to this article you should try this shortcode: [products class="columns-4" limit="4" column="4" orderby="rand"] to show random products.
    If you want to use this you will need to also add this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .woocommerce.columns-3.columns-4 li:nth-child(4) {
    	clear: none;
    	margin-right: 0;
    }
    .woocommerce.columns-3.columns-4 li.last {
    	    margin-right: 1% !important;
    }

    To make each product grid & product image & product header caption in each grid all equal height you could add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function equal_height_product_grid_image_header() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
      (function($){
        $('.products.columns-3,.products.columns-4').each(function(){  
         var $items = $('li',this);
         var $image = $('li .thumbnail_container img',this);
         var $header = $('li .inner_product_header',this);
         var itemsHeight = Math.max.apply(Math, $items.map(function(){
             return $(this).height();
         }).get());
         var imageHeight = Math.max.apply(Math, $image.map(function(){
             return $(this).height();
         }).get());
         var headerHeight = Math.max.apply(Math, $header.map(function(){
             return $(this).height();
         }).get());
         $items.height(itemsHeight);
         $image.height(imageHeight);
         $header.height(headerHeight);
      });
      })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'equal_height_product_grid_image_header');

    The only problem is that your secondary images that show on mouse-over which are added by the plugin WooCommerce Product Image Flipper are not the same heights, so you would need to change all of those secondary images because on hover a white space is shown.

    Best regards,
    Mike

    in reply to: Site not loading on mobile #1411571

    Hi,
    Thanks for your patience and the link to your site, when I check your site was not loading with multiple errors:
    Uncaught ReferenceError: jQuery is not defined typically this occurs when a script is called before jQuery is loaded.
    I see that you have a plugin Async JavaScript, when I disable it and clear your caching plugin your site loads on desktop & mobile.
    I left the plugin disabled, believing that you would want your site to load, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: change h1 color #1411570

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hey BeeCee,
    Thanks for your patience and the link to your site, the custom 404 page doesn’t work when the maintenance mode is enabled, I tested by disabling your maintenance mode for a minute and your custom 404 page showed when I entered random letters.
    Thanks for pointing our the needed update for our 404 page option, I notified the team.

    Best regards,
    Mike

    Hey newvisionnew,
    To remove the text-transform for all or your special heading h1 on your whole site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .template-page .entry-content-wrapper .av-special-heading-h1 h1{
    	text-transform: none;
    } 

    After applying the css, please clear your browser cache and check.
    Please note that if you use all caps in the backend when you edit the element then it will still show as all caps in the frontend, so you need to ensure the backend is written as you want to see it.
    If you also want this for your special heading h2 try this css:

    #top .template-page .entry-content-wrapper .av-special-heading-h2 h2{
    	text-transform: none;
    } 

    Best regards,
    Mike

    in reply to: Issue with 2/3 and 1/3 with Image Using Easy Sliders #1411566

    Hey condonp,
    Thanks for your patience and the link to your site try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .av_one_third .avia-slideshow-inner {
    	height: 100% !important;
    }

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

    Best regards,
    Mike

    in reply to: Woocommerce single product design and sidebars #1411564

    Hey germanvoice,
    Thanks for your patience, to change the font color and size of the price try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.single-product .price span {
    	color: red;
    	font-size: 18px;
    }

    the expected results:
    Enfold_Support_2429.jpeg
    To show more information try adding it to the Product short description below the product data:
    Enfold_Support_2431.jpeg
    the expected results:
    Enfold_Support_2433.jpeg
    By default the sidebar widgets are shown below the product images:
    Enfold_Support_2435.jpeg
    To show the sidebar on the right side like in posts try this solution.
    Enfold_Support_2437.jpeg
    but it will make the image smaller because ther is less room, you could make the product page full width with this css:

    .responsive #top.single-product .container_wrap_first > .container {
        max-width: 100%;
    }

    the expected results:
    Enfold_Support_2439.jpeg

    Best regards,
    Mike

    in reply to: Multi language #1411560

    Hi,
    Please note that after you install the plugin you will need to go to your pages and see the notice at the top of the page:
    Devi tradurre la tua pagina statica iniziale in Italiano, English. it is a link guiding you to translate your pages and follow the steps.
    To adjust your menu go to your menus, and select the language, and edit the menu for each language.
    You then need to translate each element on each page for your additional languages, this is a big job and I can’t translate your site for you as it is outside the scope of our support. I know based on your other threads you may find this challenging so I recommend hiring a freelancer to help you.

    Best regards,
    Mike

    in reply to: left sidebar problem #1411558

    Hi,
    I see that you are using Enfold v4.9.2.1 this version is not WordPress v6 ready, please update to Enfold v5.6.2
    Please note that if you have a header.php or footer.php in your child theme, you will need to remove these before you update.
    These will cause errors in your theme. We do not recommend adding these files to your child theme, it is the most common reason for errors when updating. If you have them in your child theme please remove these files and any customizations you wish to make should be done in your child theme functions.php

    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg
    Best regards,
    Mike

    in reply to: Issue with the Enfold “Maichimp sign up” #1411557

    Hi,
    @Enfoldfanatic please ensure that you have reverified the mailchimp API key at Enfold Theme Options ▸ Newsletter ▸ Mailchimp after you updated, and then you must edit the mailchimp element and re-save it and the page. If this doesn’t work then try the version linked below, I have tested it and it works correctly.

    Best regards,
    Mike

    Hey rup,
    Thank you for your patience and the link to your site, I tested this on my demo site and the fullscreen button in the HTML5 video player indeed shows as on your example site, I disabled all of your plugins except the four WPML plugins and the fullscreen button then showed, try disabling your plugins, except the four WPML plugins, and then reactivate each one individually until you find the one causing the conflict.

    Best regards,
    Mike

    in reply to: Mailchimp Widget Not Showing #1411555

    Hi,
    Thanks for the login, I updated your site to v5.6.3 and now your Mailchimp Available Lists are showing in the Enfold Theme Options ▸ Newsletter ▸ Mailchimp ▸ Available Lists please check.

    Best regards,
    Mike

    in reply to: Change Font Size in the Text Section of a Tab Element #1411554

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Images/Lightbox Issues #1411553

    Hey EinsElfManufaktur,
    Thank you for your patience, as I understand the issue on your homepage is there is a black overlay on your images:
    Enfold_Support_2423.jpeg
    this is because the black overlay is enabled for the images:
    Enfold_Support_2425.jpeg
    So you could remove the overlay for each image or try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to make the overlay transparent:

    .page-id-451 .avia-image-container .av-caption-image-overlay-bg {
        background-color: transparent;
    }

    For your blog page I believe the error is that when you mouseover an image the link icon overlay doesn’t go away on mouseleave:
    Enfold_Support_2427.jpeg
    this is because of this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    * {
        opacity: 1 !important; 
        -webkit-transition: none !important;
        transition: opacity none !important;
    }

    if you remove this css the issue will be solved, please note that using the wildcard “*” as a css selector will affect all elements on your site, often causing unexpected results, it is much better to use detailed selectors in your css to avoid issues.

    Best regards,
    Mike

    in reply to: Hide draft pages and posts from menu #1411550

    Hey BeeCee,
    I tested this on top level menu items and sub items and found that this is working correctly.
    Please note !is_user_logged_in is for users that are not logged in, so whem you test use a incognito tab so you are not logged in.

    Best regards,
    Mike

    Hi,
    Thank you for sharing your solution, I tested it on my demo site and it works good 🎉
    I’m sure future users will benefit from your work, do you want to leave this thread open and answer questions from future users, or do you want it closed?

    Best regards,
    Mike

    Hi,
    Unfortunately I don’t see any login info in the Private Content area, do you?
    I tested the Private Content area and it is woking correctly:
    Enfold_Support_2417.jpeg
    Are you login to the forum site and posting there?

    Best regards,
    Mike

    Hey!
    Test the Private Content area

    Best regards,
    Mike

    in reply to: Updates Changing Fonts and Colours #1411545

    Hi,
    I did the update from the theme section on the dashboard, but first I disabled Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and clear your cache plugin.
    To update download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Adsense ads cut off on mobile #1411544

    Hi,
    When I check the middle ad looks fine, if it is cut off intermittently then that would point to ads are sometimes shown in a larger format than mobile, there should be a why to choose only mobile sized ads to show.
    The ads are shown in iframes and the inner divs of the iframe can not be adjusted localy, it is a limitation of iframes.

    Best regards,
    Mike

Viewing 30 posts - 6,601 through 6,630 (of 34,677 total)