Dave
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Generate password not working – unable to generate new user passwordSo through the Admin/Edit theme section removed all the JS that could from header.php, and no changes.
The error messages still persist, being in
/wp-admin/load-scripts.php
a Woocommerce script (of which was counted out at plugin deactivation,
and http://js.users.51.la/2771713.js
When I can I’ll update load-scripts…and go from there.
Thanks everyone!
Forum: Fixing WordPress
In reply to: Generate password not working – unable to generate new user passwordParis, well at this point the FTP access is being problematic so I can’t backup the site. I’ll see what I can do in cPanel.
Two of the errors are in /wp-admin/load-scripts.php
I’ll replace that when I can get in;
the other is http://js.users.51.la/2771713.js?_=1451955103078
Which seems like a related file but obviously I can’t replace that.
Just throwing some info out there.
Forum: Fixing WordPress
In reply to: Generate password not working – unable to generate new user passwordThanks Paris, I’ll place a wager that it’s the php version as the host mentioned an issue recently with their version of php and another site they’re hosting of ours.
I’ll start there as it seems the quickest route for now.
Thanks Paris! And thus far thanks both of you for your assistance.
Forum: Fixing WordPress
In reply to: Generate password not working – unable to generate new user passwordI also just now cleared functions.php for good measure – no change
Forum: Fixing WordPress
In reply to: Generate password not working – unable to generate new user passwordThese are the errors
Forum: Fixing WordPress
In reply to: Generate password not working – unable to generate new user passwordHey Joe – yes it’s for all users.
Also, I have another client whom uses Windows and he has very similar issues.
Yes there are two jquery errors and the script generating the password is erring too.
Maybe this is a simple install issue…
OK thank you; I’ll take a look at the above.
With respect to creating a child theme, if I am using a multisite (only parent uses Woocommerce), is there anything notable that I have to do, if for instance in the System Status there are files being overridden? Or anything else? I ask because I tried to create one yesterday but it didn’t work – the CSS was messed up which made me consider the current setup as the culprit.
under /wp-content/themes/main/woocommerce/content-product_cat.php, even if I delete the all the contents of the file, nothing changes live on the site under a product category.
I found in; /wp-content/plugins/woocommerce/includes/wc-template-functions.php
on line 292 (or around there) a “<h1 class=”page-title”>” of which I want to change to an H2 and remove the class – but as you know that’s a core file and will be overwritten at some future upgrade.
Why this is in there and not in a theme file is beyond me.
Forum: Plugins
In reply to: [WP Customer Reviews] Feature Suggestion – Review CountHey Jimbo, so have you kept trying? Have you got it to work? Were you able to get the right page ID?
Forum: Plugins
In reply to: [Redirection] redirection: export .htaccess file, or a CSV fileFound it – go to modules, and then you’ll see the CSV option…
Forum: Plugins
In reply to: [Redirection] redirection: export .htaccess file, or a CSV fileLooking for the same here
Forum: Plugins
In reply to: [WP Customer Reviews] Feature Suggestion – Review CountUpdate, forget about my code above. If you’ve already added the session variable in wp-customer-reviews.php just revert back to your previous version – delete it.
Simply add the following into functions.php
function show_review_count() {
global $wpdb;
$dbtable = $wpdb->prefix . ‘wpcreviews’;
$pageID = 4745;
$row = $wpdb->get_results(“SELECT COUNT(*) AStotalFROM$dbtableWHEREpage_id=$pageID ANDstatus=1″);
echo $row[0]->total;
}and wherever you want the review count to display on your site simply add into the HTML:
<?php if (function_exists(‘show_review_count’)) show_review_count(); ?>
Enjoy!
Forum: Plugins
In reply to: [WP Customer Reviews] Feature Suggestion – Review CountThis is a quick working fix, but once the plugin is updated, you’ll have to go into wp-customer-reviews.php, until you see the following on line 394:
$total_reviews = $row[0]->total;
underneath that line add:
$_SESSION[‘approved_count’] = $row[0]->total;
Anywhere you want to use the review count in your theme, just add the following:
$approved_count = $_SESSION[‘approved_count’];
echo $approved_count;Forum: Fixing WordPress
In reply to: Queries about switching over to self-hostedHey Nev, you won’t lose anything – you can purchase your theme here; you can backup all your posts/pages etc and once you find the new host and get everything setup, just import your posts/pages etc. and upload/activate your theme.
From there you’ll have to make some edits here and there to get things right, but in the end, it is much better than hosting with WordPress.com – you’ll have so much more control over your site – as you should.
Forum: Fixing WordPress
In reply to: Fatal errorSee if something here helps you…