Alvind
Forum Replies Created
-
Forum: Plugins
In reply to: [GenerateBlocks] CTA design issue: torn edge partly hidden by right columnHi there,
Please refer to my reply here:
https://wordpress.org/support/topic/cta-block-above-footer-layout-broken-on-mobile-gp-gb/#post-18602753Forum: Plugins
In reply to: [GenerateBlocks] CTA block above footer: layout broken on mobile (GP + GBHi there,
The Elements module is a GP Premium feature, and WordPress guidelines prevent us from providing support for paid plugins in this forum. Could you please open a topic in the Premium Support Forum instead, so we can assist you further there?
Forum: Themes and Templates
In reply to: [GeneratePress] Error in Korean translationSure, you’re welcome!
Forum: Themes and Templates
In reply to: [GeneratePress] Error in Korean translationIn that case, we have no control over the translation process, as it is managed by the community. If you want to prevent the text from being translated, you can use the code snippet I provided earlier.
Forum: Themes and Templates
In reply to: [GeneratePress] Error in Korean translationCan you try adding this snippet? It essentially prevents the word “by” from being translated automatically.
add_filter('generate_post_author_output', function($output) {
$schema_type = generate_get_schema_type();
$byline = '<span class="byline">by <span class="author%8$s" %5$s><a class="url fn n" href="%2$s" title="%3$s" rel="author"%6$s><span class="author-name"%7$s>%4$s</span></a></span></span> ';
if (!apply_filters('generate_post_author_link', true)) {
$byline = '<span class="byline">by <span class="author%8$s" %5$s><span class="author-name"%7$s>%4$s</span></span></span> ';
}
return sprintf(
$byline,
'',
esc_url(get_author_posts_url(get_the_author_meta('ID'))),
esc_attr(sprintf(__('View all posts by %s', 'generatepress'), get_the_author())),
esc_html(get_the_author()),
generate_get_microdata('post-author'),
'microdata' === $schema_type ? ' itemprop="url"' : '',
'microdata' === $schema_type ? ' itemprop="name"' : '',
generate_is_using_hatom() ? ' vcard' : ''
);
});Adding PHP: https://docs.generatepress.com/article/adding-php/
Forum: Themes and Templates
In reply to: [GeneratePress] Error in Korean translationIs the language for the site you linked set to English in the Settings > General section?
Forum: Themes and Templates
In reply to: [GeneratePress] Error in Korean translationYes, the theme only implements the translation function (or equivalent) to make strings translatable via WordPress localization tools, it does not perform automatic machine translation of the text.
Could you provide the URL of your live site so I can verify whether the issue is reproducible on my end?
Hi there,
Could you let me know the name of the block that is causing the error inside the editor?
Forum: Themes and Templates
In reply to: [GeneratePress] Error in Korean translationHi there,
All theme translations are managed here:
https://translate.wordpress.org/projects/wp-themes/generatepress/
I tested switching my test site to Korean, but I did not encounter the issue. The word still appears as “by” and is not translated. This could indicate that the problem is local to your environment.
Hi Monica,
Could you open a support topic on the Premium Support Forum? WordPress does not allow us to provide support for paid plugins in this forum, but we’ll be happy to assist you there.
Thank you for your understanding!
Forum: Plugins
In reply to: [GenerateBlocks] Generateblocks copy or duplicate block issue.Hi there,
The issue may be related to the way the child theme was generated using the Create Block Theme plugin. If you create the child theme using the proper method, you should not encounter this issue.
Forum: Themes and Templates
In reply to: [GeneratePress] How to host google fonts locallyYou’re welcome!
Forum: Themes and Templates
In reply to: [GeneratePress] How to host google fonts locallyHi there,
If you want to host fonts locally, you can follow our documentation here:
Hi there,
I’m not entirely sure I understand the full issue. Are you referring to the issue with the core Gallery block?
Forum: Plugins
In reply to: [GenerateBlocks] Slow loading and 100% CPU with GenerateBlocksWe don’t provide email support for the free version of the plugin.
GenerateBlocks shouldn’t generate that many database queries. Is this happening on a blank editor screen? If you’re using Query Monitor, can you check whether the database requests are actually coming from GenerateBlocks?