Forum Replies Created

Viewing 30 posts - 1 through 30 (of 58 total)
  • Author
    Posts
  • in reply to: Block swipe for Easy Slider #1492507

    Hi,

    I tried both to no avail. I did use (max-width: 1024px) to include iPad. I cleared the cache on Safari and also used Brave browser, which I never used for that web site on that device.

    Best regards,
    Serge

    in reply to: Easy Slider title and caption below images #1492011

    Hi,

    Nailed it! We need to set overflow visible to both ul.avia-slideshow-inner and li.avia-slideshow-slide. Here is the complete CSS:

    div.liste-recette div.avia-inner-caption h2.avia-caption-title {
    	font: inherit;
    	color: black;
    	background: none;
    	line-height: 1.2;
    	padding-left: 0;
    	padding-right: 0;
    }
    div.liste-recette div.avia-caption-content p {
    	color: black;
    	background: none;
    	line-height: 1.2;
    	padding-top: 0;
    	padding-left: 0;
    	padding-right: 0;
    }
    div.liste-recette ul.avia-slideshow-inner {
        margin-bottom: 100px;
        overflow: visible;
    }
    div.liste-recette li.avia-slideshow-slide {
        overflow: visible;
    }
    div.liste-recette div.av-slideshow-caption {
        bottom: -90px;
        width: 100%;
        padding: 0;
        left: 0;
    }

    Best regards,
    Serge

    in reply to: External control for Easy Slider #1491995

    Hi Mike,

    Thank you so much for taking the time to write and test this code !!! This is the best support ever !
    It did work on first attempt. I just added a 5-star review on Theme Forest.

    Serge

    in reply to: Hierarchy for portfolio entries #1491793

    Hi,

    Is there anyway to achieve that? The reason I want to use hierarchy is to inherit the parent page URL. This way, the submenu URLs could be relative and therefore identical for all recipes: ./ingredients, ./sauce, ./preparation, etc. This would be much easier to build and maintain.

    And the reason I was using portfolio items is to use a portfolio grid to display the cook book. I intend to style and filter it like this page:
    https://www.photographie-tous-azimuts.com/cours-photo/

    Best regards,
    Serge

    in reply to: Hierarchy for portfolio entries #1491759

    Hi Ismael,

    As mentioned on this topic, I did add the following code to the functions.php file of my child theme in order to enable hierarchy for portfolio items:

    add_action('init', function() {
        function avf_portfolio_cpt_args_mod( $args ) {
            $args['hierarchical'] = true;
            $args['supports'][] = 'page-attributes';
            return $args;
        }
        add_filter( 'avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod' );
    });

    Then, I used Page attributes of the child portfolio item to set its parent page. The URL of child pages displayed when I modify the page is:
    https://www.cuisine-chinoise.org/recette/saute-aux-huit-tresors/ingredients/
    but it acts as an invalid URL when used.

    The topic owner did mention a problem and sait he fixed it, but does not tell how he did.

    Best regards,
    Serge

    in reply to: Full width background image in colour section #1491652

    Thanks Ismael,

    Is it possible to fix it with custom CSS to always show the whole image and get it smaller vertically on wide screens? I don’t want the image take too much space vertically. This is why it has wide panoramic proportions.

    Best regards,
    Serge

    in reply to: Hamberger menu trigger #1471038

    Hi Mike and Guenni007,

    Actually, I realize the answer were in the Guenni007’s code to start with. Kriesi, you should update the doc to include his code that takes care of the Search icon! Thanks you both, it woks perfectly now. Enfold is a very nice theme.

    Best regards,
    Serge

    in reply to: Hamberger menu trigger #1470965

    Hi,

    Yes, when the screen size reaches 1023px it does appears, but smaller (the size for the regular menu). Then, when the screen reaches around 700px, it finally grows to hamburger menu size.

    I was testing this by resizing my browser window. The problem also occurs on my iPad Pro in portrait mode, where the magnifying glass is smaller than the hamburger menu. On my iPhone 15 Pro, it is OK since the screen is small enough in both landscape and portrait mode.

    Best regards,
    Serge

    in reply to: Hamberger menu trigger #1470963

    Hi Guenni007 and Mike,

    Thanks. You are right: looks like this was a cache problem. Usually, changes to Quick CSS don’t cause cache problems, unlike global.css changes.

    However, there was still a problem remaining: the CSS removes the search magnifying glass on mobile phones. Without the CSS, the magnifying glass appears next to the hamburger menu. This is a very nice feature I want to keep. So I added the code below inside the @media section. It does works but, as I resize the window, the magnifying glass first appears at small size before growing to hamburger menu size as the window shrinks smaller. Looks I need to target more CSS to force the magnifying glass icon to hamburger size at 1023px, but I can’t figure which one…

    #top #header .noMobile.menu-item.menu-item-search-dropdown.menu-item-avia-special {
    cursor: pointer;
    display: block!important;
    }

    Best regards,
    Serge

    in reply to: Hamberger menu trigger #1470939

    Hi,

    The CSS had the side effect of removing the search icon in the main menu on phones. I moved the CSS to the Quick CSS of my dev site for you to see.

    Serge

    in reply to: Openi Accordion Tabs with Javascript #1470123

    Hi,
    I did, of course, removed the PHP code.
    Thanks for your excellent support.
    Serge

    in reply to: Openi Accordion Tabs with Javascript #1470049

    Hi Ismael,

    I added the script section of your code into a code block with a window.addEventListener call I already had for other purposes.

    However, I did found a simpler solution: I now use accordion on small screens only (767px or less). On large screen, I use a simple code block with checkboxes only. This way, there is no need to make accordion open and deal with the resulting #tags that are added to the page URL when opening/closing accordion sections.

    BTW, when I add code like the one below into accordion contents, the onClick parameter gets stripped out the next time I edit the accordion:

    <div><input type="checkbox" class="filtre-de-cours" id="en-personne" name="en-personne" value="1" onclick="filtrerLesCours()"><label for="en-personne">En personne</label></div>
    <div><input type="checkbox" class="filtre-de-cours" id="en-ligne" name="en-ligne" value="2" onclick="filtrerLesCours()"><label for="en-ligne">En ligne</label></div>
    <div><input type="checkbox" class="filtre-de-cours" id="hybride" name="hybride" value="3" onclick="filtrerLesCours()"><label for="hybride">Hybride</label></div>

    Thanks,
    Serge

    in reply to: Openi Accordion Tabs with Javascript #1469956

    Hi Ismael,

    I have copied the code to the single page where I want this behaviour. It worked, but the page ends up scrolled to the first accordion and the page URL has the #last-accordion-id tag. If I refresh the page, the tag is changed to #last-accordion-id-closed and there is an extra line at the bottom of the column containing the accordion.

    Thanks,
    Serge

    in reply to: CSS Glitch for Icon Box #1466710

    You can close it, of course.
    Thanks for your help.
    Serge

    in reply to: CSS Glitch for Icon Box #1466652

    Hi Ismael,

    The problem disappeared by itself! I guess it was a browser cache problem…

    Serge

    in reply to: Masonry Spacing Gone #1395656

    Thanks Nikko,

    Will this be fixed in a future release?

    Best regards,
    Serge

    in reply to: Timeout after 5 min. on page change #1366810

    HI,

    I have already spent too many hours on this problem. I worked-around by removing content.

    Best regards,
    Serge

    in reply to: Timeout after 5 min. on page change #1365196

    Hi,

    I did add define(‘WP_MEMORY_LIMIT’, ‘128M’); in CONFIG.PHP and confirmed the limit change in the Site Health page. No go. Still get a time out when I duplicate the «Prochains cours» special header at the end of the 007 test page and save changes.

    BTW, the PHP config limits from my hosting provider setting page are memory_limit = 512M and post_max_size = 128M. I see those values in the Site Health page too.

    Best regards,
    Serge

    in reply to: Timeout after 5 min. on page change #1364926

    Hi,

    Thanks for your patience.

    I did not remove any private test pages, but private pages redirect to 404 if you are not logged with admin status. (Your account has admin status.)

    On the prod site, I removed the button row on the original page and I was able to add back the code block. I didn’t try to add back the button row because this page is important, and the current state, although not ideal, is usable by customers.

    I made no change on the 007 test page because it is easy to reproduce the problem on it with only 100% Enfold code. I know reproducing a problem is essential to fix it.

    One question: is there a limit on page size? Looks like, if I remove something, I can add something else…

    Best regards,
    Serge

    in reply to: Timeout after 5 min. on page change #1364265

    Hi,

    When you write «we are able to reproduce the issue there», do you mean on your own test site?

    Did you notice those YouTube requests on your site or mine? If it is mine, how did you discover this?

    There are YouTube embedded videos in several blog posts. In older posts, like this one, it is a simple link in WordPress non-Gutenberg editor. On newer posts, like this one, it is a Video media item from Enfold.

    I have found that Yoast SEO inserts the text below in the Header section of all pages in my site, no matter the page have embedded video or not. I don’t know if this can cause YouTube requests:

    {"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://www.photographie-tous-azimuts.com/#/schema/logo/image/","url":"https://www.photographie-tous-azimuts.com/wp-content/uploads/2018/01/Logo-horizontal.png","contentUrl":"https://www.photographie-tous-azimuts.com/wp-content/uploads/2018/01/Logo-horizontal.png","width":1450,"height":463,"caption":"Photographie tous azimuts inc."}

    I have tried to disable Yoast SEO and the time out problem still occurs.

    Best regards,
    Serge

    in reply to: Timeout after 5 min. on page change #1364144

    Hi,

    Thank you for your time.

    I am able to get a time out with only 100% pure Enfold stuff. Just duplicate the special header «Prochains cours» near the bottom of the page and save. Boom! Time out! No Events Manager stuff, no Gravity Forms stuff. Only pure Enfold stuff.

    Best regards,
    Serge

    in reply to: Timeout after 5 min. on page change #1363979

    Hi,

    I did remove the contact form and got the same result. BTW, I have the same contact form on all pages without problem. Also, an identical page on the dev machine does not have the problem. The problem occurs only on this page (and any identical copy of it) and only on the dev server. I didn’t put any script tags in my page (and don’t know that it is).

    Login credentials for both prod and dev servers are in the private section. Don’t update Events Manager on the prod server! If you do, it will break the site. (I am working on it on the dev machine.) This private page is a copy of the problematic page. It has the same problem. I strongly suggest you do your tests there. I created an identical page on the dev server, ans it does not have the problem.

    Best regards,
    Serge

    in reply to: Gridline Problem After 4.8.7 Update #1327516

    Woops! I hate people who don’t read posts entirely! 😕
    Now it works. Thanks for your patience.

    Best regards,
    Serge

    in reply to: Gridline Problem After 4.8.7 Update #1327365

    I tried that and it did not solve the problem.

    in reply to: Promo box with image responsiveness problem #1324445

    Hi Ismael,

    It really depends on the length of the words inside the text vs the size of the window/phone/tablet. If you resize the window on a desktop browser, at some point the button will overlap the text and/or the image. I have added a third promo box with shorter text where the image overlaps the button on an iPhone XR.

    Here is a WeTransfer link showing the behaviour on 3 different window sizes.

    Best regards,
    Serge

    in reply to: Promo box with image responsiveness problem #1324337
    This reply has been marked as private.
    in reply to: Logo disappeared from header after Enfold 4.8.6.4 update #1323636

    Hi Rikard,
    Thanks for the really quick response. I love Enfold!
    Serge Froment

    Yes, you can close the thread. Thanks.

    in reply to: Sidebar problem after updating to WP 5.7.1 #1298114

    Yes, you can close the thread. Thanks.

    Hi Rikard,

    Plugin conflict again. It disappeared after I updated 2 Gravity Forms add-on, Yoast SEO and AcyMailing. I don’t know which one is the culprit but keeping a WordPress site up-to-date is a bummer! I do a backup every night, sure, but I cannot roll back because Event Manager transactions occurs anytime.

    Best regards,
    Serge

Viewing 30 posts - 1 through 30 (of 58 total)