sbrinley
Forum Replies Created
-
Hey, I finally got back to this issue and have marked it as unresolved. Thanks!
Here’s the dropbox link: https://www.dropbox.com/s/b3xpk7cp4d6j4gt/BackWPUp-logreport.txt?dl=0
- This reply was modified 4 years, 6 months ago by sbrinley.
Okay, I’ve been busy and didn’t get a change to come back to this. I’m finally here and posting the log.
Is there a place I can post the link privately, so not even logged in WP users can see it?
I removed the link because I realized it would be published. Where can I send you a copy of the log?
Hey, that fixed it. Glad to see it was resolved.
The gallery here. Yes, it does seem to work when I’m logged out. https://staging5.sbrinley.com/artist-journey/
As of May 26, 2020 it’s broken again.
Forum: Reviews
In reply to: [Ninja Tables – Easy Data Table Builder] Import Doesn’t Work1. It does
2. That didn’t help
3. Nothing happens when I click the “import” button. Nothing at all.@jameswirth, I got it figured out.
1) Those double-quotes should be two single quotes
2) The posted code includes curly quotes and everything needs switched to straight quotes
3) This code is unnecessarily backwards compatible with PHP 5.2
4) Keep setting at “Customer Shipping Address”Here’s the code I used:
add_filter( 'woocommerce_countries_base_postcode', function () { return'80903'; } ); add_filter( 'woocommerce_countries_base_city', function () { return'COLORADO SPRINGS'; } );
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] Buttons on Custom Post TypesMy developer figured out a work around. Paste the code below into your theme’s function.php file. Make sure you change the “mytheme” in “mytheme_add_fasc_assets” to something appropriate for you.
function mytheme_add_fasc_assets() { if ( !is_admin() ) { return; } global $current_screen; $type = $current_screen->post_type; if ( $type == 'post' || $type == 'page') { return; // FASC plugin is already doing this } ?> <script type="text/javascript"> var fasc_ajaxurl = '<?php echo admin_url( 'admin-ajax.php' ); ?>'; var fasc_ver = '<?php echo FASC_BUTTONS_VERSION_NUM; ?>'; </script> <?php } add_action( 'admin_head', 'my theme_add_fasc_assets' );
Yes, please. I’m trying to figure this out too, but can’t figure out an answer.