digitaltransformation
Forum Replies Created
-
Clients having the same issue. Was this implemented?
OK, thanks. FYI there are a lot of sitewide tracking scripts that need to be located right below the closing head for no script tracking.
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] Working but not Tracking TransactionsI figured it out on my own, there was a plugin conflict when I enabled the additional enhanced analytics option.
For anyone with a similar problem, disable all your non-essential non-woocommerce plugins and test. If it works, enable the plugins one by one until it stops working, and that’s probably your only issue.
In this case it was a Google Tag Manager Plugin, which I deleted and manually set up the tags needed directly in Tag Manager.
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] Working but not Tracking TransactionsIt was tracking them, but now it’s not.
Forum: Plugins
In reply to: [String locator] Is it possible that the tool is not looking at all files?Reposting reply as I put it in another thread.
Hi Marcus,
I just tried the updated plugin. The first time I ran it, I ran it thru the whole directory and after about 30 seconds received the following.
“Not Found
The above error was returned by your server, for more details please consult your servers error logs.”But there was no detailed error shown.
So I tried to search thru just “all themes” and it worked! I don’t have a lot of files, but I still think the issue might be the server timing out.
This is super useful, thank you so much for updating this! I was able to find and fix what I was looking for in the theme in seconds.
Bill
Forum: Plugins
In reply to: [String locator] No results found!Hi Marcus,
I just tried the updated plugin. The first time I ran it, I ran it thru the whole directory and after about 30 seconds received the following.
“Not Found
The above error was returned by your server, for more details please consult your servers error logs.”But there was no detailed error shown.
So I tried to search thru just “all themes” and it worked! I don’t have a lot of files, but I still think the issue might be the server timing out.
This is super useful, thank you so much for updating this! I was able to find and fix what I was looking for in the theme in seconds.
Bill
Forum: Plugins
In reply to: [String locator] Warning about maximum timeSorry, I forgot about this. It turns out that the server was under a DOS attack.
Forum: Plugins
In reply to: [String locator] Is it possible that the tool is not looking at all files?Hi Markus,
I was searching for “Unique gift items for kids and teens!” and then “Unique” on https://www.kidtivity.com/marketplace/ it’s a hardcoded subtitle.
Does it really search thru everything? I found it after downloading the site back-up in the titles.php file. The folder structure is: wp-content>themes>theme-name>lib>titles.php
It did find the file when I searched for titles. So that’s good!
File:
Namespace Roots\Sage\Titles;/**
* Page titles
*/
function title() {
if (is_home()) {
if (get_option(‘page_for_posts’, true)) {
return get_the_title(get_option(‘page_for_posts’, true));
} else {
return __(‘Latest Posts’, ‘sage’);
}
} elseif (is_post_type_archive(‘marketplace’)) {
return “Kidtivity Marketplace <small>Unique gift items for kids and teens!</small>”;
} elseif (is_post_type_archive(‘tribe_events’)) {
return “All Kid and Teen Events in CT”;
} elseif (is_archive()) {
return get_the_archive_title();
} elseif (is_search()) {
return sprintf(__(‘Search Results for %s’, ‘sage’), get_search_query());
} elseif (is_404()) {
return __(‘No Results Found, Please Try a Different Search’, ‘sage’);
} else {
return get_the_title();
}
}