DickRaney
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Lazy Load breaking NextGen GalleryI use Smush and turned on lazy load there and turned it off in Autoptimize, so I can’t test that very easily.
It was a lazy load issue
I tried everything. Changed to default theme, disabled plugins including cache and optimization, ran debug and still there was no logging of why login was being blocked. But deactivating Wordfence worked. Finally I just decided I had to try another plugin which is working so far. Thanks anyway for the suggestions.
Live Traffic doesn’t show the blocked logins. Seems like the block happens before anything else. As I said, we don’t get any kind of response from the browser either.
I just sent the diagnostics info via email as requested.
Forum: Plugins
In reply to: [HTML Forms - Simple WordPress Forms Plugin] Spam BlacklistThis plugin adds that feature to Gravity Forms
https://gravitywiz.com/documentation/gravity-forms-blocklist/
- This reply was modified 6 months, 4 weeks ago by DickRaney.
Forum: Plugins
In reply to: [Extra Fees for WooCommerce] HazMat FeesActually, I found out that the HazMat fee is charged per box and up to four gallon containers can fit in one box, so we need a way to charge the fees like this:
- Only charge HazMat fee on certain products and only in gallon size or larger.
- Charge the HazMat fee per box containing hazardous products
- Pack up to 4 gallons of hazardous products in single box
Examples:
- order one 1-gallon container of a hazardous item = HazMat Fee x 1 (one box)
- order four 1-gallon containers, only 2 of them are hazardous = HazMat Fee x 1 (one box)
- order four 1-gallon containers, all of them are hazardous = HazMat Fee x 1 (one box)
- order five 1-gallon containers, 4 of them are hazardous = HazMat Fee x 1 (all hazardous in one box)
- order five 1-gallon containers, all of them are hazardous = HazMat Fee x 2 (two boxes)
So, only charge the fee on first hazardous item and then every 4th one.
Forum: Plugins
In reply to: [Extra Fees for WooCommerce] HazMat FeesThat shows how I could set up an extra fee for the HazMat fee on for size option 1 gallon or larger. Does it also allow to charge the extra fee per each item? So, if there is a $25 fee for a 1-gallon jug, can it charge $50 if they order 2 of them? And if they order 1 gallon of another product that has the same fee, it would need to charge $75 since there are 3 items that have HazMat fees.
Forum: Plugins
In reply to: [Cart Additional Fee For WooCommerce] HazMat FeesIs there any update on this feature?
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] Private Custom Post TypeHere is how the post type is registered
$labels = array(
'name' => _x('Artist', 'post type general name'),
'singular_name' => _x('Artist', 'post type singular name'),
'add_new' => _x('Add New', 'Artist'),
'add_new_item' => __('Add New Artist'),
'edit_item' => __('Edit Artist'),
'new_item' => __('New Artist'),
'view_item' => __('View Artist'),
'search_items' => __('Search Artist'),
'not_found' => __('No Artist found'),
'not_found_in_trash' => __('No Artist found in Trash'),
'parent_item_colon' => '',
'menu_name' => 'Artist'
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'has_archive' => false,
'hierarchical' => false, // 'false' acts like posts 'true' acts like pages
'menu_position' => 20,
'supports' => array('title','editor','custom-fields','thumbnail'),
);
register_post_type('artist',$args); // name used in queryWe have not setup any kind of PDF template in DK PDF.
Forum: Plugins
In reply to: [SEOPress - On-site SEO & Analytics] Disable for Custom post TypePerfect. Thanks!
Forum: Plugins
In reply to: [SEOPress - On-site SEO & Analytics] Disable for Custom post TypeThe custom posts need to be visible to public, just no SEO stuff.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Custom Post Type not conencting to Post GridI see this was resolved. I have the same issue. How did you resolve it?
This support forum isn’t very useful if none of the solutions are provided. May as well not even have a search feature.
- This reply was modified 1 year, 4 months ago by DickRaney.
I am getting a similar warning:
AH01071: Got error ‘PHP message: PHP Warning: Undefined property: stdClass::$title in /var/www/vhosts/thewebsite.com/httpdocs/wp-content/plugins/easy-facebook-likebox/facebook/frontend/views/templates/template-fullwidth.php on line 234’
I am only showing 20 users per page. I updated the plugin and didn’t get an error when filtering for either verified or unverified users. However when I reset my allowed memory from 2048MB to 1024MB, I do get a fatal error filtering for verified (26,482) users. No error filtering for unverified (190) users. So it is better but not perfect.
When I increased the memory limit to 2048 MB I don’t get the error, but the results list doesn’t look right at all. I am filtering for “unverified” users and as you can see in this screenshot https://snipboard.io/9qEJ1A.jpg the user accounts show as verified. So something just isn’t working right. Also, 2048 MB seems like an very high memory requirement.