pouicpouic
Forum Replies Created
-
Thank you Pulak, problem solved!
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a { display: flex; align-items: center; } ea-icon-expand-plus::before, .ea-icon-expand-minus::before {
font-family: 'FontAwesome'!important;font-style: normal;margin-top: .75em; color: #f05050; }Hello Pulak, the icone is displayed because I added some CSS yesterday to activate fontawsome. Before that it was totally blank although
font-family: “ea-fontello” was on screenshot.- This reply was modified 7 months, 4 weeks ago by pouicpouic.
- This reply was modified 7 months, 4 weeks ago by pouicpouic.
- This reply was modified 7 months, 4 weeks ago by pouicpouic.
Since the icon was missing I temporarily put the FontAwesome font back with CSS but I would prefer to use the extension as it is intended.
- This reply was modified 7 months, 4 weeks ago by pouicpouic.
Forum: Everything else WordPress
In reply to: Customize Audio BlockThank you for t-p for your answer, but this article does not describe what I’m looking for.
The “old” media player can be split roughly like this, making customization possible:<div id="" class="mejs-container mejs-container-keyboard-inactive mejs-android mejs-audio" tabindex="0" role="application" aria-label=""> <div class="mejs-inner"> <div class="mejs-mediaelement"> <mediaelementwrapper id=""> <audio preload="" width="" src="" id="" style=""> </audio> </mediaelementwrapper> </div> <div class="mejs-layers"> <div class="mejs-poster mejs-layer" style=""> </div> </div> <div class="mejs-controls"> <div class="mejs-button mejs-playpause-button mejs-play"> <button type="button" aria-controls="mep_0" title="" aria-label="" tabindex="0"> </button> </div> <div class="mejs-time mejs-currenttime-container" role="timer" aria-live="off"> <span class="mejs-currenttime">00:00</span> </div> <div class="mejs-time-rail"> <span class="mejs-time-total mejs-time-slider" role="slider" tabindex="0" aria-label="Curseur de temps" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="00:00"> <span class="mejs-time-buffering" style=""></span> <span class="mejs-time-loaded"></span> <span class="mejs-time-current"></span> <span class="mejs-time-hovered no-hover"></span> <span class="mejs-time-handle"> <span class="mejs-time-handle-content"></span> </span> <span class="mejs-time-float"> <span class="mejs-time-float-current">00:00</span> <span class="mejs-time-float-corner"></span> </span> </span> </div> <div class="mejs-time mejs-duration-container"> <span class="mejs-duration">00:00</span> </div> </div> </div> </div>
I wonder how to express the Audio Block in divs to allow customization? Or is there another way?
Forum: Plugins
In reply to: [Animated Text Block - Apply animation on any text.] animated logoOK, thank you Charles for your answer.
Forum: Fixing WordPress
In reply to: Change More Block linkHello @luishporras, the codex is extensive, it’s the first source I usually check. At first I was looking for a solution in the More block, but I found an answer by changing the more link.
Forum: Fixing WordPress
In reply to: Change More Block linkThank you for your help, which in fact put me on the right track.
I found the solution in the codex:
https://codex.www.ads-software.com/Customizing_the_Read_More
The old way is still working.function remove_more_link_scroll( $link ) { $link = preg_replace( '|#more-[0-9]+|', '', $link ); return $link; } add_filter( 'the_content_more_link', 'remove_more_link_scroll' );
Forum: Fixing WordPress
In reply to: Change More Block linkHello @luishporras, the links are not real links, just dummy examples to show that I would like to get read of the anchor, and link to a-long-post/ in stead of a-long-post/#more
Forum: Fixing WordPress
In reply to: background-image in WP 6.2Thank you, #49106 is exactly the problem I described, I hope a solution will be found.
Forum: Fixing WordPress
In reply to: background-image in WP 6.2Thank you for your reply.
It used to be very easy to add background images, I just find it odd that the Cover Block is now the only block that includes this kind of useful customization.Forum: Themes and Templates
In reply to: [Customizr] Remove the excerptI’m just answering myself. Since I couldn’t find a better way to do this, I modified the declaration in the CSS of the parent theme, taking notes of what I did in preparation for further changes.
.grid-container__classic .tc-grid-caption .tc-g-cont {
/* max-height: 100%;
overflow: hidden;
width: 100%;*/
display: none;
}This works.
Perfect, thank you for your help!
- This reply was modified 1 year, 10 months ago by pouicpouic.
Thank you for your answer. I want to not only edit the text, but completely remove the “Advertisement” part in the Cookie Manager tab. How can I do this?
- This reply was modified 1 year, 10 months ago by pouicpouic.
Forum: Plugins
In reply to: [Audio Player Block - audio player gutenberg block plugin] Demo missingThank you Charles
Hello Lucia,
Thank you for your reply. If the duration is not controlled by the plugin, do you know which core file could do this? Is there a way to change it in function.php?