Ivica Delic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Published page not showing the same as WP editorCheck your cache and clean them all: WordPress, Hosting, DNS, Browser, Theme,…
- This reply was modified 3 months, 2 weeks ago by Ivica Delic.
Forum: Fixing WordPress
In reply to: Not receiving email to confirm new admin email.Thank you threadi for mentioning our plugin – I was also frustrated with the same issue, so we built it first for our needs, and afterwards decided to make it public for others, too. đ
Forum: Fixing WordPress
In reply to: problems with all-in-one migrationIf AIOWPM suddenly says every backup is âcorruptâ, according to my experience it’s usually not that all your sites got cursed overnight – itâs more often a restore environment / upload / PHP limit issue, or the archive got mangled in transit (browser upload, server timeout, disk full).
First thing I would do is try restoring the sameÂ
.wpress file on a totally different environment (local site or another host) – if it restores there, your backup is fine and the problem is your current server setup.Forum: Fixing WordPress
In reply to: I need a Todo list, but can’t find a solutionI am not sure you will find a native WP block that lets anonymous visitors âcheck offâ items and remember them later. Maybe the simple way is to do it in the browser with localStorage (no login, saved perâdevice/perâbrowser). Add this in a Custom HTML block (or via WPCode/Code Snippets).
- Markup
<ul id=”todo”> <li data-id=”a”>Item A</li> <li data-id=”b”>Item B</li> <li data-id=”c”>Item C</li> </ul>
- CSS
<style> #todo li.done { text-decoration: line-through; opacity:.7; cursor:pointer; } #todo li { cursor:pointer; } </style>
- JS
<script> document.addEventListener(‘DOMContentLoaded’, () => { const KEY = ‘todo-state-v1’; let saved = {}; try { saved = JSON.parse(localStorage.getItem(KEY)) || {}; } catch(e) {} document.querySelectorAll(‘#todo li’).forEach(li => { const id = li.dataset.id || li.textContent.trim(); const setState = (done) => { li.classList.toggle(‘done’, done); li.setAttribute(‘aria-checked’, done ? ‘true’ : ‘false’); if (done) saved[id] = true; else delete saved[id]; localStorage.setItem(KEY, JSON.stringify(saved)); }; // initial li.setAttribute(‘role’, ‘checkbox’); li.setAttribute(‘tabindex’, ‘0’); setState(Boolean(saved[id])); // interactions li.addEventListener(‘click’, () => setState(!li.classList.contains(‘done’))); li.addEventListener(‘keydown’, (e) => { if (e.key === ‘Enter’ || e.key === ‘ ‘) { e.preventDefault(); setState(!li.classList.contains(‘done’)); } }); }); }); </script>
That will toggle strikeâthrough on click and remember it across refresh/days (on that device). If you prefer adding code safely, use WPCode: https://ww.wp.xz.cn/plugins/insert-headers-and-footers/
If you really need cross-device persistence without accounts, youâll need a service (e.g., embed a Notion/Trello checklist) or build a tiny backend keyed by a shareable link – otherwise, I think that localStorage is the best no-login option.
Forum: Fixing WordPress
In reply to: Does a .wpress backup contain log of admin logins with dates?As much as I know – no, a .wpress backup (AllâinâOne WP Migration) includes your site files and a database dump, NOT webâserver logs. WordPress also doesnât log logins by default. So unless you had a security/audit plugin active at the time (e.g., Wordfence, WP Activity Log) that stores events in the DB, you wonât find a âwho logged in whenâ log inside that backup.
If you need the actual login timeline, ask your host for HTTP access logs or security logs for the relevant dates. Thatâs usually the only reliable source once revisions are wiped. Also check if you (or your host) have an earlier backup and restore that page/media from before the vandalism.
If I were you, I would enable an audit trail and harden access by installing activity log plugin (e.g. Streams, WP Activity Log, etc) so you capture edits/logins, add 2FA, change all passwords, review admin users, and scan the site. For general recovery, this is why I keep offâsite backups in addition to host snapshots and test restores regularly.
Forum: Fixing WordPress
In reply to: Changing Administrator EmailYou can change admins via these 2 free plugins without needing to receive any confirmation mails:
https://ww.wp.xz.cn/plugins/admin-email-address-changer/ (full disclosure: this is plugin my colleague and me created)
https://ww.wp.xz.cn/plugins/change-admin-email-setting-without-outbound-email/
Forum: Fixing WordPress
In reply to: Fomatting on my home page has disappeared – and moreHm, likely not a data center issue, I think, as when styling vanishes and other pages 404, itâs usually permalinks or cached CSS.
Try this first: Settings / Permalinks / Save – twice (rebuilds URLs).
Then clear all caches (host/CDN/plugin).
Also, in Elementor go to Tools / Regenerate CSS & Data, then hard refresh. Temporarily turn off any minify/combine/defer.If it is still broken, try disabling all plugins except Elementor/Elementor Pro and test; if fixed, reâenable one by one.
If not, briefly switch to Twenty TwentyâFour; if that fixes it, update/reinstall JupiterX. Also, make sure .htaccess exists (saving permalinks recreates it).If you get stuck, you can restore a recent backup in Bluehost (I hope they have it) and ask support to confirm PHP 8.1/8.2, no disk full, and no security rule blocking assets.
Forum: Fixing WordPress
In reply to: How to clone a website to create other temporary sitesIt’s up to you and your preferences; they all will do the job, I am pretty sure of it: All in one WP migration (my preference), Duplicator, UpdraftPlus, etc….
Forum: Fixing WordPress
In reply to: backup pluginAccording to my own experience – when one backup plugin wouldn’t work on some hosting (e.g, I always start with All in one WP migration), when I try another plugin (like Duplicator) it wouldn’t work (usually due to lack of server’s space, or old PHP version), although in some cases SaaS apps would work (like BlogVault).
- This reply was modified 10 months ago by Ivica Delic.
When something like this happens – that you notice one page on your WP site is much slower than the rest – even though it uses the same template, itâs usually because of something unique on that page, it must be.
Common culprits are heavy or broken shortcodes, slow external embeds (like maps or iframes), or a specific block causing database slowdown.
To troubleshoot, I would clone the slow page and remove sections one at a time, checking the speed after each change. This can help you pinpoint what’s causing the lag, I think. Disabling comments or dynamic content on that page can also help, especially if there is a lot of spam or a plugin conflict.
For deeper insight, you could turn on WP debug mode or use a plugin like Query Monitor to spot any errors or slow database queries. Once you find the issue, you can remove or optimize the problematic element.
Forum: Fixing WordPress
In reply to: Moving a siteThis happened to me on several sites I took over, and in order not to complicate things (I like KISS principle), I used my migration plugin (All in one), and transferred sites from /wp folder to root hosting/domain folder, meaning from http://MoneyDelusions.com/wp to http://MoneyDelusions.com in your case.
Forum: Fixing WordPress
In reply to: change admin emailGreat! Happy for you đ
Forum: Fixing WordPress
In reply to: change admin emailYou can easily fix that with either of these two free plugins (I am a co-author of one of them):
https://ww.wp.xz.cn/plugins/admin-email-address-changer/
https://ww.wp.xz.cn/plugins/change-admin-email-setting-without-outbound-email/
Forum: Fixing WordPress
In reply to: Can’t delete old pluginHi, did you try to delete it via FTP or File Manager in cPanel?
Forum: Fixing WordPress
In reply to: Website Home page carousels got distortedGood luck with your plans!!!
PS I have been using the Smart Slider 3 plugin, I even bought their Lifetime Deal đ