Forum Replies Created

Viewing 30 posts - 15,511 through 15,540 (of 35,067 total)
  • Author
    Posts
  • in reply to: polylang in socket #1269533

    Hi,
    Thank you I found that the login token is now working so I checked your site and disabled your Enfold Theme Options > Performance > JS & CSS file merging and compression and enabled your Enfold Theme Options > Performance > Delete old CSS and JS files, and this seems to have solved the issue, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Woocommerce #1269532

    Hi,
    Perhaps I’m not understanding correctly, on the linked product page above, you are using variations, for quantity, but every variation is the same price? Is this intentional? I also notice that changing the quantity buttons next to the checkout button doesn’t change the displayed price but it is shown in the checkout.
    But once I’m in the checkout the quantity buttons work correctly, so the issue is with the quantity buttons on the product page correct? I would like to try this structure on my localhost, can you export the product and link in the Private Content area?
    What do you mean by “The programmer from the affiliate program” is this an add-on plugin?

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, I found the “over 40” section near the bottom on mobile, so the words “Modeling Shoots” are in a span together, so it would be hard to break the words, but we can change the “display” to “block” which will put this in a new line under “over 40” and centered.
    Please see the screenshot in the Private Content area.
    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) { 
    #av-layout-grid-2 > div.flex_cell.avia-builder-el-last > div > div > strong > span:nth-child(3) {
    	display: block !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: Login icon in right menu #1269343

    Hi,
    If you want to modify the theme files, I believe you would need to edit: \wp-content\themes\enfold\includes\helper-main-menu.php which would be more contemplated.
    Can I ask why you would want to modify the theme files versus using a built-in object, such as the social icons?

    Best regards,
    Mike

    in reply to: Theme Bug #1269328

    Hi,
    Glad to hear this hepled.
    In the theme styling, the “bold” tag and the “strong” tags are set to different colors, generally, the “bold” tag is the legacy of “strong” but apparently now it is also considered for seo
    While the css solution above will adjust the color, perhaps you should manually correct the tags?

    Best regards,
    Mike

    in reply to: polylang in socket #1269320

    Hi,

    @Guenni007
    thank you for pointing out this solution, and the jQuery Migrate issue.

    @Alexander2021
    thanks for posting a login token by it didn’t work for me. Anyways, I see this error in the browser console:
    Uncaught SyntaxError: Unexpected token '!' >> siteground-optimizer-combined-js-cb7bf8c77e4408bb1dc8aa56163b4b79.js:77
    Please disable all caching and check again, but you may also want to try the jQuery Migrate solution @Guenni007 linked to above.
    I’m glad to hear that you liked the solution I posted, but you may find @Guenni007’s solution better because you can easily wrap any text with the shortcode to hide based on language, [polylang lang="en"]...[/polylang], just a suggestion.

    Best regards,
    Mike

    in reply to: iOS do not support fixed backgrounds #1269314

    Hi,
    Thank you for the feedback, I was able to test your page on a Mac with Safari v14.0.0.1 in developer mode as an iPad, I realize that the width in the css above is incorrect so I changed to 1024px, now the css is working, please check.

    @media only screen and (max-width: 1024px) {
    .avia-safari #top .avia-full-stretch{
    background-attachment: scroll !important;
    }
    }

    Best regards,
    Mike

    in reply to: get coloured background full width with menu on the left #1269307

    Hi,
    Thank you for the feedback, please try this css to make the columns brake on mobile:

    @media only screen and (max-width: 767px) { 
    #top #main .column-natuur {
        width: 100% !important;
    }
    }

    This should work as-is, but I would recommend that you adjust your css above so the width is also in a media query, like this:

    @media only screen and (min-width: 768px) { 
    #top .column-natuur {
        width: 50%;
    }
    }

    In my test for mobile the two columns look like one long paragraph, so you might want to add some padding to the first one like this:

    @media only screen and (max-width: 767px) { 
    #top #main .column-natuur {
        width: 100% !important;
    }
    #top #main .column-natuur:nth-child(1) {
    	padding-bottom: 10px;
    }
    }

    While this works, I would recommend changing the classes to add “first” & “last” to the columns, just to make styling easier in the future.

    <div class="row-natuur">
    <div class="column-natuur-first">your text</div>
    <div class="column-natuur-last">your text</div>
    </div>

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

    Best regards,
    Mike

    in reply to: Randomize a single Post Slider #1269301

    Hi,
    Freut mich zu hören, dass Guenni helfen konnte, danke Guenni. 🙂
    Sollen wir dies dann schließen, es sei denn, wir können Ihnen in dieser Angelegenheit weiterhelfen?

    — Translated with Google —

    Glad to hear that Guenni was able to help, thank you Guenni. 🙂
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Enfold tab: an image disappears with the Weglot translation? #1269298

    Hi,
    Sorry for the late reply, can you create a test page with the 6 tabs with the error so we can see it?
    So with 5 or 7 tabs, all images show, but with only 6 the sixth (last) image doesn’t show in [FR] only?

    Best regards,
    Mike

    in reply to: Adding panel below the menu to appear on all pages #1269033

    Hi,
    Glad this helped, in your shortcode above I don’t see a custom ID or class for the whole color section, adding one could help you apply the style to it easier across your whole site.

    Best regards,
    Mike

    in reply to: anchor use #1269031

    Hi,
    Glad we were able to 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: Theme Bug #1269015

    Hi,
    Thank you for the link to your page and explaining the situation, based on this I found that your H2 headings are not created the same. For example the H2 “WordPress Development” is a “strong” tag, where the “Shopify & E-Commerce” is a “bold” tag, these are styled differently.
    Instead of correcting your tags you could use this css in the Quick CSS field:

    #main .main_color h2 b {color: #000 !important;}

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

    Best regards,
    Mike

    in reply to: Insert/add tags below post? #1269012

    Hi,
    Thank you for the link to your post, but I don’t see the tags, are you using the above shortcode?
    We will need to see the element so we can help style it. Would you like the tags styled like your social share buttons?

    Best regards,
    Mike

    in reply to: LayerSlider on Mobile shows only with margin on top #1269011

    Hi,
    Thank you for the login, I believe what you are describing is that on mobile the header is not transparent, this is the correct behavior.
    So while the header is not transparent the layerslider is shown beneath the header, as in below, so it can be seen.
    Would you like to have a mobile transparent header?
    This css will do that, but note it would be applied to all pages, if you want it to only apply to some pages you can add page ID’s or other classes depending on needs.

    @media only screen and (max-width: 766px) { 
      .responsive #top #main {margin-top: -80px!important;}
      #top #wrap_all .av_header_transparency {background-color: transparent!important;}
      div#header_main > .container {display: block !important;}
      }

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

    Best regards,
    Mike

    in reply to: polylang in socket #1269003

    Hey Alexander2021,
    To do this please create both links in your socket copyright field, and add a custom class to each link like this:
    <a class="nl" href="/privacyverklaring/">Privacy Verklaring</a><a class="en" href="/en/privacy-policy/">Privacy Policy</a>
    Then we will use this css to hide the links individually based on language:

    html[lang="en-GB"] #socket .nl {display: none;}
    html[lang="nl-NL"] #socket .en {display: none;}

    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Login icon in right menu #1268932

    Hey Lidia,
    Sorry for the late reply, to add a login icon next to your social icons, I would recommend going to Enfold Theme Options > Social Profiles > Your social profiles and choose a profile you are not using such as Twitter and enable it with your login link. Then add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top .social_bookmarks li.social_bookmarks_twitter a:before {
      background: url(https://img.icons8.com/offices/30/000000/hot-air-balloon.png) center center no-repeat;
      background-size: contain;
    }
    
    #top .social_bookmarks li.social_bookmarks_twitter a:before{
      content: "";
      display: block;
      width: 30px;
      height: 30px;
    
    }

    This will give you a hot air balloon icon like this:
    2020-12-20_215031.jpg
    Please give this a try.

    Best regards,
    Mike

    in reply to: Layerslider Images Not showing up #1268923

    Hi,
    Sorry for the late reply and thanks for the login, I checked your pages and your images are showing for me:
    2020 12 20 211458
    https://savvyify.com/img/image/fSiNSopr
    I do note that you are using the theme merging & a caching plugin, & Autoptimize
    this “stacking” could cause like this, perhaps try disabling all of these and clear your browser cache, and check again.

    Best regards,
    Mike

    in reply to: Adding panel below the menu to appear on all pages #1268910

    Hi,
    Sorry for the late reply, yes you would use the code you posted, but please note that the quotes the code Rikard posted need to be double quotes next to the [your shortcode] like this:

    function colin_add_christmas_banner(){
      echo do_shortcode("[your shortcode]");
    }
    add_action('ava_after_main_container', 'colin_add_christmas_banner');

    this is because the single quotes in the shortcode will break the function if it also is using single quotes to contain the shortcode. Hope that makes sense.

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, I logged in and corrected the css, now the button is lower, please clear your browser cache and check and see the screenshots in the Private Content area.
    Please note that mobile devices can sometimes be hard to clear, so try a couple of times, if you the button looks similar to the screenshots, and you would still like the button to be lower I will adjust again.

    Best regards,
    Mike

    in reply to: Demo template on mobil #1268907

    Hi,
    Sorry for the late reply, and thanks for the login, I commented out the css above, this looks like a z-index issue. I see some theme settings are not showing on your site because you using 4.7.3, please try updating to 4.7.6.4

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, please review the css posted above and see how on your site the arrows have been converted into HTML entities:
    2020-12-20_172843.jpg
    Typically, this occurs when the css is copied with formating, such as from emails, please try copying the css from the forum code block.

    Best regards,
    Mike

    in reply to: Import demo didn't work #1268899

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

    Best regards,
    Mike

    in reply to: LayerSlider not loading on Homepage #1268898

    Hi,
    Sorry for the very late reply and thanks for the login to your site, I copied your homepage to a test page, Please see the link in the Private Content area, and the layersliders worked there. I don’t see any errors in the browser console but the layerslider elements are empty on your homepage.
    Perhaps try using the test page as the homepage and see if the error still occurs.
    I didn’t find any custom scripts or functions on your site, did I miss them?

    Best regards,
    Mike

    in reply to: anchor use #1268889

    Hey jelle,
    Sorry for the very late reply and thanks for the links, typically anchors are corrected with a offset, padding or margin, to match your header height. I see that you are using the “name” tag to create your anchors:
    <a name="B020"></a>
    please try using “ID” like this:
    <a id="B020"></a>
    Enfold should add the offset automatically when using ID like this. I tested on my localhost to confirm.
    After making this adjustment please clear your browser cache and check.

    PS, please note that ID’s can not begin with numbers.

    Best regards,
    Mike

    in reply to: get coloured background full width with menu on the left #1268885

    Hi,
    Sorry for the very late reply and thanks for the links.
    Please try this css instead:

    #top #main .kleur {
    	left: -5% !important;
        min-width: 111% !important;
        color: green;
        padding-left: 50px;
    }

    Best regards,
    Mike

    in reply to: Issue with masonry layout for blog posts #1268873

    Hi,
    Sorry for the very late reply and thanks for the links, I found that your masonry element was set to show 12 items, but you only have 3 items to show, which should be fine, but from looking at the space it looks like you don’t intend to show more than 3, so I set this to 3.
    I also noticed that your columns were set to auto, which should be fine, but changing this to 3 centered the items, correctly.
    Please clear your browser cache and check.
    I believe there is an issue with one of these settings when the number of items are only a few, if you had 6 or 8 items you may have not seen this issue. I will continue to investigate this and report my findings to the dev team, if you find my adjustments satisfactory please use them.

    Best regards,
    Mike

    in reply to: Randomize a single Post Slider #1268841

    Hi,
    Sorry for the late reply, I’m not sure about this adjustment, so I have asked for assistance, I will reply with a follow-up.

    Best regards,
    Mike

    Hi,
    Sorry for the very late reply and thanks for the links. 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) { 
    #top.home #full_slider_1 .slideshow_align_caption {
        vertical-align: top;
        padding-top: 10%;
    }
    #top.home #full_slider_1 > div > ul > li.active-slide > div > div > div > div > div > div > a {
    	margin-top: 25%;
    }
    }

    Please clear your browser cache and check. Below you will find test screenshots, 320px is the smallest of mobiles, 425px is more common now.

    Best regards,
    Mike

    Hey joax,
    Sorry for the very late reply and thanks for your request, so I understand further, are you displaying a “product grid” element in a “post” type?
    Are you using the Advanced Layout Builder for “post” types, or are you using the ALB shortcodes in a “post” type?
    Is this like you have a blog post and you would display a product in it, such as a “related” product or a “spotlight” product?
    Will these be changed often or will each post be set with a product once?
    Do you have any mockups?

    As for using the masonry as a “related articles” container, the built-in related posts element uses the post “tags” to determine the related posts, the masonry element also lets you choose posts by the tag, so this would be the solution.
    I imagine that you are using the masonry at the bottom of a post, showing perhaps 3 items that are “related”, am I understanding correctly?
    Do you have any mockups?

    Best regards,
    Mike

Viewing 30 posts - 15,511 through 15,540 (of 35,067 total)