wyclef
Forum Replies Created
-
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 2 years, 7 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 2 years, 9 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 3 years, 1 month 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?
Forum: Plugins
In reply to: [White Label CMS] Login Custom Background not showingI forgot to mention that the Google ReCaptcha is implemented via the WP Cerber plugin. Guess I will check there as well.
- This reply was modified 3 years, 2 months ago by wyclef.
Forum: Developing with WordPress
In reply to: Function only for admin area?// Hide ACF Content Box function hide_post_box() { global $post; if ( 34 == $post->ID ) { echo '<style> .acf-field-51df1eda4b2ac { display:none; } </style>'; } elseif ( 31 == $post->ID ) { echo '<style> .acf-field-51df1eda4b2ac { display:none; } </style>'; } } add_action('admin_head', 'hide_post_box');Sorry, it looks like some code was stripped out when I pasted before. Where am I missing a bracket?
Yea, there is a post there.
If I go to domain.org/newsletter/news/2019/04/ I see all the month listings but if I go to domain.org/newsletter/news/2019/ it just resolves back to domain.org/newsletter/news/
- This reply was modified 3 years, 4 months ago by wyclef.
I did a print_r on urlSplits and it returned
Array ( [0] => [1] => news-and-events [2] => news [3] => )Which appears like what I want but am wondering why it isn’t working still, if I manually go to the URLs and add year + month number the pages resolve with the data showing up but with just the year nothing, yet it worked fine in 5.4.