tomasjenikovsky
Forum Replies Created
-
Hi @arnaudbroes,
Reinstall worked. To be honest, I was worried if I reinstall the plugin, my settings will be gone – that’s why I left this as a last option. But it seems the custom settings data remained.
Thanks for help and info about the reason of the issue.
Forum: Themes and Templates
In reply to: [Blockpage] Remove green blinking cursor on mouseHi sendgo,
I wanted to remove that too, so I just deleted from the theme file style.css the CSS code below:
.blockpage-cursor {
border-radius: 50%;
background: #08b786;
width: 24px;
height: 24px;
pointer-events: none;
position: absolute;
z-index: 999;
transition: all 2s ease-out;
transition-property: border-radius;
animation: blockpageAnimCursor 0.6s infinite alternate;
} .blockpage-cursor.focus {
border-radius: 50%;
transition: all 0.6s ease-out;
animation: hoverCursor 0.6s;
opacity: 0;
}
@keyframes blockpageAnimCursor {
from {
transform: scale(1);
}
to {
transform: scale(0.5);
}
}
@keyframes hoverCursor {
from {
transform: scale(1);
}
to {
transform: scale(2.5);
}
}You can delete the code directly in that file or you can use GUI theme editor under /wp-admin/theme-editor.php. Surely make a backup of the code/file before you do any changes.
Forum: Themes and Templates
In reply to: [Pentatonic] Overlay menu does not print on mobile screenAllright, fixed it by my way – just changed header to different one. Not ideal, but menu works …
Forum: Themes and Templates
In reply to: [Pentatonic] Overlay menu does not print on mobile screenNothing? ๐
Hello,
Thanks for the reply.
I host everything myself on my own linux based VM. For the NAS I create SSL Let’sEncrypt cert myself too via mentioned certbot.
I will look again into the options of installing SSL certs on my NAS, I have root access there. Unfortunately the OS has very limited options.
I see now in my first post I described the issue with ftps connection in opposite way – When I try to connect XCloner with ftps, the initial connection on port 21 (8021 in my case) works, but when it tries to connect to data transmission port, it tries to connect to local IPv4 from LAN and not to the public one. I guess it gets the LAN IPv4 address during the greet connection. I need to tell ftp service it should use the public address all the time (I have the range for transmission ports forwarded from the public address on the router). For example Filezilla or other clients I tried works fine. Isn’t here any possibility I could try in configuration of XCloner to make the ftps working properly?
Thank you.
In meantime I discovered the excerpt formatting disappeared after update WP to 6.3 and it’s a known issue. Fortunately there exists workaround what brings the formatting back.
It’s just needed to create this php snippet:
function filter_post_excerpt_attrs( $metadata ) { if ( 'core/post-excerpt' === $metadata['name'] ) { $metadata["attributes"]["excerptLength"] = false; } return $metadata; }; add_filter( 'block_type_metadata', 'filter_post_excerpt_attrs', 10 );After that my bullet prints in the product short-descriptions showed up again.
Hello,
I discovered the excerpt formatting disappeared after update WP to 6.3 and it’s a known issue. Fortunately there exists workaround what brings the formatting back.
It’s just needed to create this php snippet:
function filter_post_excerpt_attrs( $metadata ) { if ( 'core/post-excerpt' === $metadata['name'] ) { $metadata["attributes"]["excerptLength"] = false; } return $metadata; }; add_filter( 'block_type_metadata', 'filter_post_excerpt_attrs', 10 );After that my bullet prints in the product short-descriptions showed up again.
Hello Adam,
Thanks for your reply.
After I created this topic I checked the last version of Poema theme and it was last updated onย May 15, 2023, so the problem is surely in some of update of Woocommerce plugin thus I created support request under WC plugin page here.
In general I have problem with bullet points, which I see correctly in editor of short description of WC product in WP administration (like on this screenshot) but on my www presentation the bullet points in short description (.wp-block-post-excerpt__excerpt) are completely missing (screenshot no. 3). It’s like the list-style of text data just not correctly project to the presentation, it looks just like a single block of unformatted text.
Unfortunately I don’t have any screenshot of the page from the past where the bullet points worked as they should – but I really know it worked..
Hi,
Wow, thanks for the fast reply! I really appreciate your help – the code works!
I just had to add one more CSS for Spotify player too:
.video-placeholder-normal {
position: absolute !important;
top: 0 !important;
}It’s possible to close this case, thank you once again!
Forum: Plugins
In reply to: [WooCommerce] How to translate string “Add an address for shipping options”Hi, thanks for your reply!
I tried to find my string via Loco Translate too and I found it translated only in templates/cart/cart-shipping.php:64.
I posted translate suggestion on translate.ww.wp.xz.cn now.
Have a great day.