bravenewniche
Forum Replies Created
-
Forum: Plugins
In reply to: [iQ Block Country] in home “Page to redirect to” option is not workingA temporary fix that does work, is to turn the individual page where I want people from Canada to be redirected, into a non-blocked page.
Then, in the message that shows on blocked pages, it explains that Canadians cannot access the site, but gives the URL where they can see a message for Canadians.
Sadly, the text box for the blocked message does not allow for HTML, so I can’t make an actual link for them to click – just give them the URL and ask them to paste it in their browser.
At least it’s something for the time being.
Forum: Plugins
In reply to: [iQ Block Country] in home “Page to redirect to” option is not workingAs a temporary fix, I tried putting the URL of the local page I need people redirected to, into the “URL to redirect to” field.
The URL got saved, but when the redirection happens on the front end, I’m getting this error message from the browser
The page isn’t redirecting properly An error occurred during a connection to products.com. This problem can sometimes be caused by disabling or refusing to accept cookies.
Forum: Plugins
In reply to: [iQ Block Country] in home “Page to redirect to” option is not workingHaving the same issue as the first one mentioned.
I’m using V 1.2.18 – WP 6.0.1
On the Home tab of the IQ settings, when I choose a local page to which visitors should be redirected, it doesn’t save my choice and puts in the default Forbidden message.
Forum: Plugins
In reply to: [Download Monitor] Category Site not workingThanks!
That updated code is working for me.
Forum: Plugins
In reply to: [Download Monitor] Category Site not workingI should have noted that I currently have that filter added to our functions.php file but the category links still aren’t working.
//* Fix for Download Monitor URLs - Jan 2022 add_filter( 'dlm_download_category_args', 'dlm_add_url_to_category' ); function dlm_add_url_to_category( $settings ){ $settings['public'] = true; return $settings; }
- This reply was modified 2 years, 10 months ago by bravenewniche.
Forum: Plugins
In reply to: [Download Monitor] Category Site not workingFor those struggling with this issue, a short term fix is to make individual pages for each category, and put in a shortcode, like this:
[wpkb_code][downloads category=buildings][/wpkb_code]
Needs some styling help, but it would give you something for the moment.
Forum: Plugins
In reply to: [Download Monitor] Category Site not workingSame issue here. URL endings like this:
/?dlm_download_category=planning
just go to the home page.
Tried with all plugins/themes off, but still not working.
Tried refreshing Permalinks, still no.
Cleared plugin transients.WP 5.8.3
Download Monitor 4.4.14
Genesis theme
PHP 7.3.33- This reply was modified 2 years, 10 months ago by bravenewniche.
- This reply was modified 2 years, 10 months ago by bravenewniche.
On the newly imported site, I just did an update of the three plugins (including WC) and the Storefront theme, and the Wholesaler fields continue to display just fine.
BTW, the BackupBuddy file that I imported the second time, is the same file I used for the intitial import. Both imports went smoothly, but maybe something go corrupted on the first??
The live site is on an InMotionHosting VPS
I can send you the Woo status reports for both installs – I’ll send them through your website
I’ve just done another Backupbuddy restore from the test server to a folder on the same live server account.
Opening up the site, I find the Wholesale price field is there and prices are showing to wholesale customers.
Now to figure out what could have happened to that first restored site…
On the new server, I’ve tried rolling back all three plugins (including Woocommerce) that were updated after the move, along with the Storefront theme.
That hasn’t helped restore the field.
I’ve double-checked that no new customized Woocommerce code was added after the move.
Forum: Fixing WordPress
In reply to: Cannot disable plugin auto-updates (5.5)Another thing to check for:
If jquery has been broken by updating to WordPress 5.5, checking boxes on the plugins page and trying to disable or enable auto-updating won’t work.
You’ll need the Enable jQuery Migrate Helper plugin to temporarily restore jQuery Migrate until the plugin(s) or theme causing the break are fixed.
As your screenshot shows under Woocommerce -> System Status -> Tools, there are a number of buttons. When you says “cache” do you mean one or both of these two buttons:
WC Transients
Clear transients This tool will clear the product/shop transients cache.Expired Transients
Clear expired transients This tool will clear ALL expired transients from WordPress.Forum: Plugins
In reply to: [Plugin: WooCommerce] Sorting by SKU in admin not working correctlyAnyone had any success with this problem? I found a lot of references to the issue across the internet, but in all cases there hasn’t been any response.
Trying to find a way to hook into column sorting in WooCommerce as I think we need to switch the SKU column to orderby:
‘meta_value_num’ – Order by numeric meta value (available since Version 2.8). Also note that a ‘meta_key=keyname’ must also be present in the query. This value allows for numerical sorting as noted above in ‘meta_value’.
Possibly I’ll just create a custom column for sorting SKUs numerically, following this helpful article:
https://scribu.net/wordpress/custom-sortable-columns.html
Will post back with what I find.
That worked, thanks.