wyclef
Forum Replies Created
-
Forum: Plugins
In reply to: [Melapress File Monitor] Plugin has been initialising for a weekHello, in purging all data and re-initiating everything it seems to have successfully completed a scan. I will continue to monitor this and see if this problem is resolved.
[04-Mar-2024 14:15:17 UTC] SCAN STEP 2 – DIRECTORIES SCANNED, START FILE RUNNER
[04-Mar-2024 14:15:17 UTC] SCAN STEP 3 – START FILE RUNNER
[04-Mar-2024 14:15:33 UTC] SCAN STEP 4 – FILE RUN COMPLETED
[04-Mar-2024 14:15:33 UTC] SCAN STEP 5 – INITIAL FILE COMPARISON RUN COMPLETEForum: Plugins
In reply to: [Melapress File Monitor] Plugin has been initialising for a weekHi, I was previously using the WP File Changes Monitor plugin which was set to auto update which is how I ended up with the Melepress plugin. I did go through the wizard again and a scan started but it never seems to finish and always says Initialising – You may navigate away from this page at anytime.
Possible plugins I use which could be interfering are WP Super Cache, WP Cerber, and IP Geo Block. I am not sure if you are familiar with any of these or how best to troubleshoot this.
Forum: Developing with WordPress
In reply to: Undefined array key in 1 with get_the_titleHere is a little more context
<?php $parentVal = get_the_title($post->post_parent); ?> <?php $parentMainVal = get_the_title($post->ancestors[1]) ?> <?php if (is_page('home')) { ?> <body id="home"> <?php } else if (is_page('special') || ($parentVal == 'Special') || ($parentMainVal == 'Special')) { ?> <body id="special"> <?php } else if (is_page('misc') || ($parentVal == 'Miscellaneous') || ($parentMainVal == 'Miscellaneous')) { ?> <body id="misc"> <?php } else { ?> <body> <?php }?>
This is some old custom code I am rummaging through. Let me know if I need to do more digging.
Forum: Developing with WordPress
In reply to: WordPress workflow using version control?i am mainly interested in something for my own personal workflow. I currently use Mamp for my localhost dev but am just sort of primatively archiving theme revisions manually. It works fine but kind of want to feel of modern times here and not some old dinosaur.
Forum: Developing with WordPress
In reply to: WordPress workflow using version control?Not looking to have the theme in wp repository. Coukd be nice to have it hooked up to wp theme updater.
- This reply was modified 1 year, 2 months ago by wyclef.
Forum: Developing with WordPress
In reply to: Assistance with Child Theme PHPThank you! That last link cleared this up and things now work. I had checked their support articles but I guess missed that one unfortunately.
Forum: Developing with WordPress
In reply to: Assistance with Child Theme PHPOk, we are making progress folks! So if I change the parent theme function to get_stylesheet_directory() and move partials/menus.php to the Child Theme directory and my edits to the PHP in the child theme work. Is this the most practical way to proceed with this and just note the edits made to the parent theme or should I take this a step further and try to get it so no changes need to be made to the parent themes function file and if so how?
Forum: Developing with WordPress
In reply to: Assistance with Child Theme PHPHmmm, thanks so much for taking a look. That doesn’t seem to work either. I see in the parent theme there is a call in the functions file to the file I want to edit. Do you think I need to include this in the child theme function.php?
if ($ok_php) { require_once get_template_directory() . '/partials/menus.php'; }
- This reply was modified 1 year, 3 months ago by wyclef.
Forum: Developing with WordPress
In reply to: Assistance with Child Theme PHPI’m using Uncode. I actually tried to copy the file with the directory structure first. I wonder if I just need to copy the file into the root of the child theme instead?
How can I implement their exclude js file stuff? It looks like they suggest not caching specific js files.
Forum: Plugins
In reply to: [Contact Form 7] How to troubleshoot not receiving messageHow can I send you the website URL privately?
Forum: Plugins
In reply to: [Contact Form 7] How to troubleshoot not receiving messageShould the To and From email not be the same?
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] WP Cerber cerber-load.php?Great, I will update the setting and check the error logs today. I also noticed that if you go to /wp-admin it just redirects to /custom-login-page is this normal behavior? Or is this because my IP is whitelisted?
- This reply was modified 1 year, 7 months ago by wyclef.
Forum: Developing with WordPress
In reply to: Function only for admin area?Yes, seems to work. Thanks!
I am not seeing that that resolved the problem. Any other thoughts on how to troubleshoot?