danifola
Forum Replies Created
-
Hi, here’s the complete log with line number:
PHP Notice: Undefined variable: htmlAfterFirstCombinedDeferScript in /home/u552600260/domains/ikid.club/public_html/wp-content/plugins/wp-asset-clean-up/classes/OptimiseAssets/CombineJs.php on line 455
Hi David,
I thought that it was the theme because of the mention of functions.php file. Now I see that any plugin could have a filter or hook that plays in by functions.php.
Instead of disabling plugins I have a different method for debugging these types of issues.
I go in the server with SSH, and then did a grep command to find the login_headertitle string in the plugins folder. The only one hit was in the my-wp-login-logo folder, so I guess that means it’s that plugin. I’ll ask them to see if they can fix the issue then.
Thanks. DanieleHi David,
This is happening on my test page right now.
The strange thing is that sometimes I get the wpbf-{post-name} correct and sometimes I get 4jezynsj7k or wirjhkdafi. I cannot understand when it shows up correctly, and when not.
I searched for these two ‘terms’ (4jezynsj7k and wirjhkdafi) in my sql database and I could not find them.
Hope that helps to try to find the issue.
Jory, that worked out simpler than I thought. I just used
‘_thumbnail_id’ => $evidencia,
and it worked fine!
Thanks!
Forum: Plugins
In reply to: [Code Snippets] Custom global variable not usable on second snippetThat’s what I was looking for. Thanks Shea
Hi Nastia,
I need to write a table I defined for my specific website. It’s not directly related to the data in the form I created with forminator.
What I need is just to know is what hook to use to setup an action that will insert a record. On a side note, I use the get_form method to get information from the form.So, I just need to capture the event of the form being submitted.
Thanks.
Forum: Plugins
In reply to: [Code Snippets] Custom global variable not usable on second snippetSnippet1:
global $test;
test = “DONE”;
Snippet2:
global $test;
echo “TEST “.$test;To test I defined the snippets as execute once. I executed first Snippet1 and then Snippet2 and I am seeing just TEST.
What am I missing here?
Yes, I worked it out adding the global $wpdb line.
Thanks.