Tomoki Shimomura
Forum Replies Created
-
Forum: Reviews
In reply to: [Flip Box Block] EXCELLENT !Thank you for your review! Your review is encouraging.
I will just keep creating works that are loved☺️I can’t reproduce the issue. Can you share the code for your block?
Forum: Plugins
In reply to: [VK Simple Copy Block] デフォルトのパディング@dd32
Thanks for your comment.As mentioned on Trac, you’re not using the correct text-domain still, as it needs to match your plugin slug on ww.wp.xz.cn.
I see. Matching the slug translated the text domain in edit.js!
But the description in block.json is not translated.Have there been any string changes since 0.1.6?
No. There is no change.
Forum: Plugins
In reply to: [Flip Box Block] Can´t See the block in the blocks libraryForum: Plugins
In reply to: [Flip Box Block] Messed up on mobilesorry for the late reply
I think it’s because the height of the FlipBox Block setting on mobile is not enough for the elements placed inside.
Forum: Plugins
In reply to: [Flip Box Block] Firefox Back ProblemReply and mark as resolved
Forum: Plugins
In reply to: [Flip Box Block] Firefox Back ProblemFireFox bug fixed in version 0.1.20.
Thanks for the report.Forum: Plugins
In reply to: [Flip Box Block] Firefox Back ProblemThanks for the report troyw2015!
I too can confirm that the problem is happening in FireFox.
I will aim to fix it in the next update.Sorry about that.
I was restricting access to the admin panel
strpos( $_SERVER[‘SCRIPT_NAME’], ‘admin-post.php’)
I was able to solve it by adding a conditional branch of
Thank you for your reply!
I don’t know if this change has anything to do with it, but the unsubscribe page doesn’t work anymore!
https://kb.mailpoet.com/article/221-customize-your-unsubscribe-page
I’ve added [mailpoet_manage text = “Manage yoursubscription”] to the fixed page and created [mailpoet_page] for the unsubscribe page and set it up.
On that page, I get the setting to change the status, but it is not saved.
Why is this?
Thank you for your reply!
I was able to subscribe when a new user was registered
Is it possible to subscribe to an existing user?
sorry
I was able to solve it.//All in One SEO Pack 4.0 Before if (!empty(get_post_meta($post->ID, '_aioseop_description', true))) { $meta_description = get_post_meta($post->ID, '_aioseop_description', true); } //All in One SEO 4.0 After if (function_exists('aioseo')) { $aioseo_description = aioseo()->meta->metaData->getMetaData($post)->description; if(!empty($aioseo_description)) { $post_id = get_the_ID(); $get_post = get_post($post_id); $meta_description = aioseo()->meta->description->getPostDescription($get_post); } }- This reply was modified 5 years, 2 months ago by Tomoki Shimomura.
Thanks for the reply!
Then it’ll work in a loop!I just can’t get the empty or not empty condition to work anymore.
//All in One SEO Pack 4.0 Before if (!empty(get_post_meta($post->ID, '_aioseop_description', true))) { $meta_description = get_post_meta($post->ID, '_aioseop_description', true); } //All in One SEO 4.0 After if (function_exists('aioseo')) { $aioseo_description = aioseo()->meta->metaData->getMetaData($post)->description; if(!empty($aioseo_description)) { $meta_description = $aioseo_description; } } echo $meta_description;The above code works fine.
//All in One SEO 4.0 if (function_exists('aioseo')) { $post_id = get_the_ID(); $get_post = get_post($post_id); $post_description = aioseo()->meta->description->getPostDescription($get_post); if (!empty($post_description)){ $meta_description = $post_description; } } echo $meta_description;However, if you use getPostDescription, you won’t be able to determine if it’s empty or not.