ayac2002
Forum Replies Created
-
Forum: Plugins
In reply to: [Firelight Lightbox] Can’t log into WP dashboard/ admin after updateI have the same problem too, although I don’t know what the PHP error is. (I don’t have access to our hosting server.) I just deleted recently-updated plugins via FTP until I got to Easy Fancybox and deleting that fixed the problem.
Here are my stats:
- WordPress Version: 4.9.4
- PHP Version: 5.3.29
- MySQL Version: 5.1.69
- Server Software: Apache/2.2.15 (CentOS)
Hope that helps!
- This reply was modified 8 years, 1 month ago by ayac2002.
Forum: Plugins
In reply to: [Eventbrite API] No descriptions in iframes on list page, details page 404This just happened to me, while I was trying to make custom templates in my theme folder. It worked again when I made sure that my new template listing title was “Eventbrite Events.” I tried to be cute and separate my custom template by naming it “Eventbrite Event List” but then the detailed page would 404.
My guess is that the plugin populates the URL by using the template title somehow.
Hope that helps!
Forum: Fixing WordPress
In reply to: Theme not connecting – white screen of death on site onlyFound it, turns out the theme absolutely required that the static front page be set to a specific page in order for the entire site to work. I had to look into commented-out code in an alternate index.php file to find this, I mean REALLY.
Ugh, I hate stuff like that, but at least stuff is showing up…
Forum: Plugins
In reply to: [Facebook] Detailed Instructions pleaseUpdate: I actually just said, “Screw it” with this plugin and inserted the Javascript code directly from Facebook’s Comment Box tool into the HTML of the page. MUCH easier, and actually WORKED.
Forum: Plugins
In reply to: [Facebook] Detailed Instructions pleaseI need some too. 🙁 My client made a Facebook Page (linked to the WordPress site) and I’m trying to get a Like Box and Comment box set up on the WordPress site, and I can’t figure out how to get my “app” for comments connected to the darned Page!
Facebook Developers site also isn’t very forthcoming about how to set up Apps for Pages and vice versa. I really just want to set up a Comment Box, not anything fancy. 🙁
Forum: Reviews
In reply to: [WooCommerce Custom Statuses] Does not work in WordPress 4.0 and Woo 2.2Since the plugin doesn’t work at all, you’ll have to modify your functions.php file. Make sure you have access to that!
This has a good explanation and workaround as well for WooCommerce 2.2+: http://www.sellwithwp.com/woocommerce-custom-order-status-2/
I added two custom order statuses. Just copy this section and change the names:
register_post_status( 'wc-awaiting-shipment', array( 'label' => 'Awaiting shipment', 'public' => true, 'exclude_from_search' => false, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'label_count' => _n_noop( 'Awaiting shipment <span class="count">(%s)</span>', 'Awaiting shipment <span class="count">(%s)</span>' ) ) );Then copy line 26 and change the names:
$new_order_statuses['wc-awaiting-shipment'] = 'Awaiting shipment';To properly register the custom order statuses, I had to change the affected orders to a default status (on-hold is a good one), move over my functions.php file, deactivate all of my plugins, then reactivate them. THEN save the affected orders accordingly.
I would experience the WooCommerce infinite loop bug when saving the new order statuses if I didn’t do that, then my orders disappeared in the front-end. It’s mentioned in the comments, haha.
Forum: Reviews
In reply to: [WooCommerce Custom Statuses] Does not work in WordPress 4.0 and Woo 2.2The solution is here: https://gist.github.com/claudiosmweb/e68e891d593c4c989d9d
Copy/paste it into your theme’s functions.php file and replace “Status Name” with your custom status name. 🙂
Forum: Plugins
In reply to: [WooCommerce] Custom Order Statuses in 2.2.2THANK YOU CLAUDIO!!!
All the blog posts and plugins about this are wrong now because of this change. That is the only solution post-2.2 that worked for me.
Now to spread the word….
Hi Peter,
It just suddenly start working! I have no idea!
Glad to hear it’s working for people other than myself too, haha. So I suppose the issue magically resolved itself….
Forum: Plugins
In reply to: [Genesis Latest Tweets] Tweet Times Wrong?I had this problem and finally fixed it when I used the piece of code above for the functions.php file in the plugin’s lib folder.
Thanks all!