Bigul Malayi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I make the entirety of a cover block a clickable linkYou are welcome. Glad to hear that you have found a workaround. Thanks for sharing it with us. It will be helpful for our forum users.
Forum: Developing with WordPress
In reply to: Form validation and accents charactersHi @wildapache,
Happy to know your issue is resolved now. It would be great if you could share the workaround you have tried. It will be helpful for our forum users.
Forum: Fixing WordPress
In reply to: How can I make the entirety of a cover block a clickable linkOk. I am getting the expected results after trying with the Twentig plugin. It will enable the following option in Cover Block settings (on the right side of the screen).
Link settings >> Make block clickable >> Stretch inner link to entire block.
Forum: Fixing WordPress
In reply to: How can I make the entirety of a cover block a clickable linkIt looks like the entire Cover block is not clickable. Only a link or text inside the Cover block is clickable. Refer to the following doc links for more details.
Cover block
https://wordpress.com/support/wordpress-editor/blocks/cover-block/
We hope you are using the latest version of WordPress. Which theme are you using?
As a workaround, you can use the Image Block inside the Groups or the Columns block. Or try https://wordpress.org/plugins/twentig/ after a full site backup.
Forum: Developing with WordPress
In reply to: Form validation and accents charactersHi @wildapache,
Happy to know you are getting almost the expected results now. Please note that the strlen() function counts bytes, not characters. Refer to this doc for more details: https://www.php.net/manual/en/function.strlen.php#refsect1-function.strlen-returnvalues
Therefore the following is result is expected.
strlen('à'); // returns 2 or more, not 1Maybe you can try with mb_strlen instead of strlen. Refer to the following doc and sample code for more details.
https://www.php.net/manual/en/function.mb-strlen.php#refsect1-function.mb-strlen-returnvalues
https://www.geeksforgeeks.org/php/php-mb_strlen-function/
$text = $_POST['text'] ?? '';
//Length check
$length = mb_strlen($text, 'UTF-8');Forum: Developing with WordPress
In reply to: Form validation and accents charactersHi @wildapache,
Have you checked the form output? For example, by running the following code on form submission. It will help to confirm whether PHP is receiving the expected value.
var_dump($_POST['text']);Also, please check how the form data is being sent to your PHP script. Are you using the default
application/x-www-form-urlencodedencoding ormultipart/form-data?Forum: Fixing WordPress
In reply to: swapping in new membership pageHi @jstech139,
Happy to know you are getting the expected results now. Was it a cache issue or a conflict with the newly uploaded PDF’s filename?
Forum: Fixing WordPress
In reply to: After 7.01 I can not see any of my postsHappy to know you are getting the expected results after restoring the backup. Just to make sure, have you contacted the EASYINDEX support team? Any feedback from them?
Hi @michellexyz,
You are facing an issue with the Xstore theme. So please contact their support forum for better assistance.
https://www.8theme.com/forums/xstore-wordpress-support-forum/
Forum: Fixing WordPress
In reply to: Blank space on right side of mobile viewHi @colhio,
Can you please share a couple of screenshots to help us better understand the issue? Because I am not able to reproduce it exactly here. Which Mobile browser and OS are you using?
We hope you are using the latest version of the theme and plugins. If not, upgrade to the latest versions after a full site backup, and clear all caches, including browser and server-side caches. Then make sure the bug exists.
Forum: Fixing WordPress
In reply to: Default and hover state in ColorGradientSettingsDropdownHi @anugradewar,
It seems like WordPress core doesn’t have a built-in Gutenberg UI for setting custom hover colors. It has to be handled using React, custom CSS, or CSS variables. Are you building a dynamic block or a static one?Please refer to the following URLs. It may be helpful for you.
https://rudrastyh.com/gutenberg/color-palettes-for-custom-blocks.html
https://stackoverflow.com/questions/77764341/how-to-use-hover-in-gutenberg-custom-blocks
Forum: Fixing WordPress
In reply to: Login password keeps reverting to invalidHi Paul,
You are welcome. Trying with a new subscriber user will also helps to identify the issue. Before that activate the WP activity Log plugin after a full site backup. Then watch the logs closely.
Also make sure you are using the latest version of the plugins and theme.
Forum: Fixing WordPress
In reply to: Login password keeps reverting to invalidHi Paul,
This could be a compatibility conflict. Does it happen with just one subscriber account, or with multiple users who have the Subscriber role?
Also, are you using any security, membership, or user management plugins?
Have you enabled an activity log on the site? If so, it may help identify why the password keeps changing.
If you don’t already have this feature through your security plugin, you could try a plugin like WP Activity Log or Simple History. These plugins can record password changes and other user activity, which may help you find the cause.
Forum: Fixing WordPress
In reply to: Referral plugin compatible with Ultimate Member (Non-MLM)Hi @sheikhshabbir,
The popular WordPress plugins for these features will be AffiliateWP, SliceWP, and Ultimate Affiliate Pro.
Your questions are more related to the Ultimate Member plugin. Therefore, please contact their support forum to confirm the most compatible plugins for these tasks.
Forum: Fixing WordPress
In reply to: Image CaptionsHi @medesigngood,
The way image captions work can vary depending on how the image was added to the post or a page. Image captions stored in the Media Library will not automatically sync to the image block. In some cases, the theme or the plugins may also affect how the captions are displayed. Which theme are you currently using?Please try the following and let us know it helps or not.
- Select the Image block in the editor, then check the sidebar to add the Caption. Most likely, you will be able to edit your existing caption added via the Media Library.
- Open the Image in the Media Library, update the caption there, then reinsert the image into the post/page. Save the changes and check whether the caption is showing as expected for the image or not.
Refer to this doc for more details: https://kinsta.com/blog/wordpress-image-caption/#how-to-add-an-image-with-a-caption-in-the-block-editor