cheonmu
Forum Replies Created
-
Hi,
I use the [TOC] shortcode to insert a TOC into my posts.
On mobile only, I want the TOC to be collapsed by default and expanded via a button.
On desktop, on the other hand, I want it to be expanded by default.
Screenshot -> https://i.imgur.com/4xkhN1C.jpeg
Webpage link -> https://vietnamguide.co.kr/%eb%b2%a0%ed%8a%b8%eb%82%a8-%ec%97%ac%ed%96%89/
Thank you.
Forum: Plugins
In reply to: [Yoast SEO] Is there a way to add classes to Breadcrum’s separates?Hi
I solved it by simply modifying the Separator between breadcrumbs option as follows:
<span class="sperate">?</span>
It seems to work fine for me.
Thank you.
- This reply was modified 5 months, 2 weeks ago by cheonmu.
Hi
This issue can be temporarily resolved by modifying the class-uagb-post.php file.
Fromif ( 'full_post' === $attributes['displayPostContentRadio'] ) {
$excerpt = get_the_content();
} else {
$excerpt_length_fallback = UAGB_Block_Helper::get_fallback_number( $attributes['excerptLength'], 'excerptLength', 'post-timeline' );
$excerpt = UAGB_Helper::uagb_get_excerpt( $post->ID, $post->post_content, $excerpt_length_fallback );
}to
if ( 'full_post' === $attributes['displayPostContentRadio'] ) {
$excerpt = strip_shortcodes( get_the_content() );
} else {
$excerpt_length_fallback = UAGB_Block_Helper::get_fallback_number( $attributes['excerptLength'], 'excerptLength', 'post-timeline' );
$excerpt = UAGB_Helper::uagb_get_excerpt( $post->ID, strip_shortcodes( $post->post_content ), $excerpt_length_fallback );
}I hope this helps if anyone is experiencing the same problem.
thank you.
While checking the code, I found out that the code I put in my functions.php was the cause.
The issue has been resolved and thank you so much for your quick response.
Hi, @spacetime
hello. I have disabled the caching plugin and enabled remote debug.
The website address is https://vietnamguide.co.kr/%eb%b2%a0%ed%8a%b8%eb%82%a8-%ec%97%ac%ed%96%89/
Ad conteiner number is 18.
I have it set to insert an ad after every 10th P, starting from the 3rd P.
Could you please check my website, thank you.
- This reply was modified 5 months, 4 weeks ago by cheonmu.
Forum: Fixing WordPress
In reply to: Problems with %Encoding in Non-English URLsHi, @brandon555
Thanks for answering.I tried applying your code, but I can’t access the website with the message that a fatal error occurred. So I disabled it. ;(
Forum: Plugins
In reply to: [WooCommerce] How to add an arrow to an input field in a Woocommerce block?hello. The CSS you provided works beautifully.
I have one more question. On websites using the Flatsome theme, the label of the input field is shifted downward.
So, when you enter text in the input field, duplication occurs.
Screenshot -> https://i.imgur.com/nT2na0O.jpeg
I didn’t apply any CSS to this block… Could this be a problem due to the font I’m using?
thank you
<font _mstmutation=”1″></font>
Forum: Plugins
In reply to: [WooCommerce] How to add an arrow to an input field in a Woocommerce block?Forum: Plugins
In reply to: [WooCommerce] How to add an arrow to an input field in a Woocommerce block?Hi @serafinnyc
I’m using the Flatsome theme.
But when I test it with Twenty Twenty-Four theme, there is no arrow.
Screenshot -> https://i.imgur.com/wDJy3IS.jpeg
Thank you.
- This reply was modified 6 months, 3 weeks ago by cheonmu.
Hi, @cteduard
Thank you so much for your reply!
Forum: Plugins
In reply to: [Gutenberg] About RestAPI and posts written via Gutenberghello.
Yes. The same problem occurs when using a block structure. The Rest API does not include Gutenberg’s block information in the api.
You can see my API here https://seototo.net/wp-json/wp/v2/posts
"content": { "rendered": "\n\u003Cp\u003EThis is a paragraph block.\u003C/p\u003E\n", "protected": False }
But i can use html tag that classic editor can support, such as P tags. I can switch to Gutenberg from the classic editor with just push of a button.
However, The problem occur when we use Gutenberg blocks, which are not supported by the Classic Editor.
The classic editor doesn’t recognise blocks like Toc, Gallery, FAQ, etc. so when i publish a post via the Rest API, those parts won’t be published.
I’m not sure if this is exactly a Rest API issue or a Gutenberg issue.
What I found is that when publishing via the Rest API, the post is published in the classic editor as it does not include Gutenberg block information, and any blocks that are not supported by the classic editor are not displayed.Forum: Plugins
In reply to: [W3 Total Cache] About Database IDs in Redis CacheSorry, it was my fault for not changing the database max value in the redis config ;(
- This reply was modified 8 months, 2 weeks ago by cheonmu.
Forum: Plugins
In reply to: [W3 Total Cache] Can Object (Database) Cache make website slower?Hi, @vmarko. Thanks for answering.
Here are the results of my Object cache tests I’ve tested this several times, but the results are similar.
https://i.imgur.com/lLxx1Bo.jpeg
https://i.imgur.com/vaYSS7Y.jpeg
Thanks!
Forum: Plugins
In reply to: [W3 Total Cache] Can I enable database and object cache at the same time?@vmarko, Thank you for your kind response!
It seems like there’s no way around it ;(
solutions to this problem would be to create a big synonym dictionary, or use JS to modify the user’s query to the correct string for searching.
I think either way is not simple things. thanks for letting me know!