Bigul Malayi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: dashboard not displaying correctlyHi @maxsalad
The earlier “Could not create directory” error may be related to the current issue.
Could you please try the following after a full site backup:
- Clear all caches:
- Any caching plugin or server-side cache
- Browser cache (Ctrl + Shift + R)
- Disable all plugins:
- Rename the
/wp-content/plugins/folder toplugins-oldusing FTP. - Refresh the Dashboard.
- If the menu returns, rename the
/wp-content/plugins/folder back, then reactivate the plugins one by one to identify the problematic plugin.
- Rename the
- Switch to a default theme:
- Temporarily rename your active theme folder in
/wp-content/themes/. - WordPress should automatically fall back to a default theme if one is installed.
- Temporarily rename your active theme folder in
- Reinstall WordPress core:
- Download the latest WordPress package from ww.wp.xz.cn.
- Replace the contents of the
wp-adminandwp-includesfolders. - Do not overwrite
wp-config.phpor thewp-contentfolder.
Also, since you previously saw “Could not create directory” errors, please check the file permissions:
- Folders: 755
- Files: 644
Please let us know whether the admin menu returns after disabling the plugins, and share your PHP version if possible.
Forum: Fixing WordPress
In reply to: Reset/Manage Prototype EnvironmentHi @xrl8,
Thank you for the clarification. Based on the environment names you mentioned (link, dev, prototype, archive, and syndicate), this appears to be a custom or legacy WCMS rather than a standard WordPress site feature.
As a quick check, look for any Bulk Actions, Select All, or List View options that may allow publishing multiple files at once. You could also check the Prototype environment for any Publish All, Sync, or Reset options.
Since this is a legacy government system, the fastest help will likely come from your agency’s internal web/CMS team or CDC support. If you can share the exact name of the system, we may be able to point you to more specific documentation.
Forum: Fixing WordPress
In reply to: Analytics Not LoadingHi @supplementplace,
This error is usually caused by a JavaScript conflict, a plugin/theme conflict, or corrupted WooCommerce Analytics data.As a first step, could you please try the following after a full site backup?
- Clear all caches, including your browser cache, site cache (WP Rocket, LiteSpeed Cache, etc.), and CDN cache if applicable.
- Temporarily switch to a default theme such as Storefront or Twenty Twenty-Four and check whether Analytics loads correctly.
- Disable other plugins one by one, especially analytics, optimization, or security plugins, to identify any conflicts. It may be helpful to start with recently installed or updated plugins.
Could you also let us know:
- Which versions of WordPress and WooCommerce are you currently using?
- Are there any additional errors shown in the browser’s Developer Console?
- Have there been any recent updates or changes on the site before the issue started?
These details should help us narrow down the cause of the issue.
Forum: Fixing WordPress
In reply to: Reset/Manage Prototype EnvironmentHi @xrl8,
Please check if your hosting provider offers a staging environment, you may be able to use it to test changes without affecting the live site.
However, if the publishing restrictions are coming from the WCMS platform itself, you may need to check the WCMS documentation or contact their support team for further guidance.
Could you please provide a bit more information?
- Which platform/hosting or application is this prototype environment part of?
- Are all files affected, or only specific ones?
- Do you see any option to reset or recreate the prototype environment?
These details will help us better understand the setup and suggest the most appropriate next steps.
Forum: Developing with WordPress
In reply to: wp_get_attachment_image_attributes ignores fetchpriorityHi @webec,
Have you received any feedback from Astra Pro or WP Rocket support regarding this issue? If so, could you please share their findings or recommendations?
Maybe you can try the following functions:
https://developer.ww.wp.xz.cn/reference/functions/wp_get_loading_optimization_attributes/
https://developer.ww.wp.xz.cn/reference/functions/the_post_thumbnail/
WordPress manages fetchpriority through its loading optimization system, so these functions should be a good place to start when testing fetchpriority=”high” on a featured image.
Forum: Fixing WordPress
In reply to: Fatal error: Uncaught TypeError: call_user_func_array()It looks like the issue is due to a core file version mismatch in your WordPress installation. Have you migrated the site recently or manually upgraded WordPress?
Try the following steps after a full site backup (especially wp-config.php and the wp-content folder).
- Check your current WordPress version in wp-includes/version.php.
- Download the exact same version of WordPress from ww.wp.xz.cn.
- Unzip it and replace all files in:
- wp-includes/ folder
- wp-admin/ folder
- Root files (like wp-settings.php, wp-load.php, etc.)
- DO NOT overwrite wp-config.php or anything inside the wp-content/ folder.
- Clear your browser cache and any site/server cache.
This fixes most cases where core files got mixed up during a manual or failed update.
If it still doesn’t work, try disabling all plugins (by renaming the plugins folder) and switching to a default theme, such as Twenty Twenty Four.
Let me know your current WordPress and PHP versions if the problem persists.
A similar issue: https://stackoverflow.com/questions/79904023/wp-is-valid-utf8-is-undefined-wordpress-6-9-1
Forum: Localhost Installs
In reply to: Local Install – WAMP – DropboxI guess it makes the things complex. Instead of trying with Dropbox you can use a host spacing.
Forum: Fixing WordPress
In reply to: Fatal Error Will Not Let Me Do AnythingTake a full site backup. Then rename the-events-calendar & events-calendar-pro folders from *wp-content/plugins* folder. Then check you can log in or not.
If you have Event Calendar Pro licence contact them directly. They can help you better.
Forum: Fixing WordPress
In reply to: Fatal Error Will Not Let Me Do AnythingLogin to your FTP and delete/rename one of the plugins from *wp-content/plugins* folder
Forum: Installing WordPress
In reply to: Errors during installation of WPTry with the latest version of WordPress in a fresh installation. Which version of PHP are you using?
Forum: Fixing WordPress
In reply to: Fatal Error Will Not Let Me Do AnythingIf it has happened after recent upgrade or if you having Event Calendar Pro license contact their support directly
Forum: Installing WordPress
In reply to: How do I install WordPressHi,
You can install Mamp – https://www.mamp.info/en/ on your machine to install WordPress locally
Check the following tutorials for more details.
https://codex.ww.wp.xz.cn/Installing_WordPress_Locally_on_Your_Mac_With_MAMP
Hi Serge,
Please post the query in our WPML support forum http://wpml.org/forums/
—
With RegardsBigul
Dear wonderm00n,
Sorry, not sure about it. It’s not a feature we have
Dear LIJE,
Please try following code and let me know your feedback.
global $wp_query; $post = $wp_query->post; $photos = get_post_meta($post->ID, 'wpcf-photo'); foreach($photos as $photo){ echo '<a rel="group" href="'.$photo.'"><img src="'.$photo.'" alt="" style="width:140px;height:auto;margin:0 4px;" width="140" /></a>'; } - Clear all caches: