Shawn Hayes
Forum Replies Created
-
Okay, I figured it out. Thank you for the awesome plugin!
//Stop WooCommerce redirect on activation function woocommerce_no_redirect_on_activation() { delete_transient( '_wc_activation_redirect' ); }; add_action( 'init', 'woocommerce_no_redirect_on_activation');
Yes, your devs are correct. It seems to be a Chrome issue.
Sorry about my previous false statement. For some reason I thought I had tested it in Firefox as well. Apparently not.
Did your devs find any clues as to why the issue is showing up in Chrome?
Thank you for looking into to this for me. Really appreciate the fantastic customer service!
Thank you for looking into this for me!
Yes, that’s the issue. Did you have any ideas on how to fix it?
I had an issue with another plugin using isotope in an iframe. I ended up hooking into the ajax call the plugin was using and reloading isotope using jQuery(window).load(function(). I am not sure what the best hook for Elementor would be?
Thanks again for the help!
ShawnThank you for getting back to me! I really appreciate the help.
I am using chrome but I don’t think this issue is browser specific.
Let me know what you think.
Thanks again for the help!
ShawnHi @talldanwp and @bpayton,
Thank you both for the help. Very much appreciated!!
This is exactly what I was looking for. One thousand thanks for the gist.
You === awesome. Me === grateful.
I hope you both have a wonderful New Year!!
Forum: Plugins
In reply to: [One Click Demo Import] Import file json redux framework@capuderg, You da Man, Man!! ??
Thank you for all your hard work on this. Really appreciate it!!
Best regards,
ShawnForum: Plugins
In reply to: [Meta Box] Save Metabox fields when save_post hook fires.Sorry for the duplicate
- This reply was modified 8 years, 2 months ago by Shawn Hayes. Reason: Should have replied to Anh
Forum: Plugins
In reply to: [Meta Box] Save Metabox fields when save_post hook fires.Thank you so much for getting back to me! I really appreciate the help.
Your “autosave” functionality seems like it would be perfect. I can’t seem to get it to work on published posts though. I can see that the autosave.js is being loaded, but unless the status is “Draft” it doesn’t auto save along with the title and content. It also seems to work on drafts whether I have autosave = true or false, so I must be doing something wrong.
Is this feature intended for published posts? Is there something I have to do besides adding
'autosave' => true,
to my $meta_boxes array? Is there any documentation you could point me to on this feature?Thanks again for the help.
ShawnForum: Plugins
In reply to: [One Click Demo Import] Import file json redux framework@capuderg, great work on the plugin!! I just started testing with it yesterday and really like what I have seen so far.
I am using Redux Framework in the theme I am developing and would love to see this plugin support it.
@trungjayce, for now I am using the “pt-ocdi/after_import” hook to make this work. Just use the code below in your functions.php…
function your_prefix_after_import() { $json = get_template_directory().'/includes/demo-data/redux_options_your_file.json'; $json_data = file_get_contents( $json ); $result = json_decode($json_data, true); $redux_framework = ReduxFrameworkInstances::get_instance('your_opt_name'); $redux_framework->set_options($result); } add_action('pt-ocdi/after_import', 'your_prefix_after_import');
Obviously change the file name and Redux Framework option name to your own.
I haven’t tested much, but seems to work well.
Hope this helps.
- This reply was modified 8 years, 5 months ago by Shawn Hayes. Reason: Didn't want to create confusion
Forum: Fixing WordPress
In reply to: How can i increase the width of my form in a particular page pageAll I see is the shortcode. Did you uninstall the plugin?
Forum: Plugins
In reply to: [Yoast SEO] Breadcrumb Permalinks vs Product Page Permalinks, woocommerceThis is an explanation why the permalink structure is the way it is.
https://docs.woothemes.com/document/removing-product-product-category-or-shop-from-the-urls/There are a couple of premium plugins that change this, but so far the ones I have found are not to my liking.
This one looks good: https://www.perfectseourl.com/
But $120 seems way over priced.
I will keep looking and update if I find a solution.
Thanks.