dnordyke
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Indexing Timing Out Even on 1 RecordI did try some other plugins but we are leveraging some features of your plugin that others do not offer. If I had a premium license would you be able to take a look at the site and help us out?
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Indexing Timing Out Even on 1 RecordI have some custom fields, one of which links to vimeo videos but nothing too crazy.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Indexing Timing Out Even on 1 RecordHi Mikko,
I tried switching to 2016 theme and disabled all but 2 other plugins (WPToolset) and I’m running in to the same issue.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] HTTP Error on media uploadConfirming krazysage solution worked for me. On Hostmonster hosting.
Thank you krazysage!
D
@danieliser good catch! I had changed the url of that endpoint and was using it instead of ‘order-received.’ Changing it to ‘order-received’ worked. Thanks!
@danieliser I’m interested in the filter. Here is what I have but I cannot get it to work. I tried following this https://gist.github.com/danieliser/32aff18fbf245c58c7fe and this https://wordpress.org/support/topic/automatically-opening-popup-on-woocommerce-endpoint?replies=13
function my_custom_popup_trigger( $is_loadable, $popup_id ) {
if ( $popup_id == ‘6905’ ) {
return is_wc_endpoint_url( “request-received” );
}
return $is_loadable;
}
add_filter( ‘popmake_popup_is_loadable’, ‘my_custom_popup_trigger’, 1000, 2 );Thanks for your help,
David
Forum: Plugins
In reply to: [WooCommerce] Problems with too many variations causing out of stock errorHad the same issue with the Bridge theme. Updating the outdated template files fixed the issue. Thank you!
D
Forum: Plugins
In reply to: [Psychological tests & quizzes] Can Results be assigned to user accounts?Awesome, thanks for the update!
Forum: Fixing WordPress
In reply to: Facebook sharing not working – "429 Too many requests"The only way I was able to work around this issue was to:
1. Disable Jetpack
2. Install a different plugin for sharing. I chose https://wordpress.org/plugins/sharepress/ which turns out to have some nice features that Jetpack didn’t have.I have had no problems with the 429 errors since switching.
Forum: Fixing WordPress
In reply to: Facebook sharing not working – "429 Too many requests"Same issue, and yes I am using GoDaddy hosting.
Go to line 322 of the custom-contact-forms-front.php file of the custom contact forms plugin folder.
You can change the from name there.
EX:
$mail->FromName = ‘Your preferred from name’;