Title: ayac2002's Replies | WordPress.org

---

# ayac2002

  [  ](https://wordpress.org/support/users/ayac2002/)

 *   [Profile](https://wordpress.org/support/users/ayac2002/)
 *   [Topics Started](https://wordpress.org/support/users/ayac2002/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ayac2002/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ayac2002/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ayac2002/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ayac2002/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ayac2002/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Firelight Lightbox] Can’t log into WP dashboard/ admin after update](https://wordpress.org/support/topic/cant-log-into-wp-dashboard-admin-after-update/)
 *  [ayac2002](https://wordpress.org/support/users/ayac2002/)
 * (@ayac2002)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/cant-log-into-wp-dashboard-admin-after-update/#post-10122423)
 * I 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](https://wordpress.org/support/users/ayac2002/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Eventbrite API] No descriptions in iframes on list page, details page 404](https://wordpress.org/support/topic/no-descriptions-in-iframes-on-list-page-details-page-404/)
 *  [ayac2002](https://wordpress.org/support/users/ayac2002/)
 * (@ayac2002)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/no-descriptions-in-iframes-on-list-page-details-page-404/#post-8246142)
 * This 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Theme not connecting – white screen of death on site only](https://wordpress.org/support/topic/theme-not-connecting-white-screen-of-death-on-site-only/)
 *  Thread Starter [ayac2002](https://wordpress.org/support/users/ayac2002/)
 * (@ayac2002)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/theme-not-connecting-white-screen-of-death-on-site-only/#post-6232220)
 * Found 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] Detailed Instructions please](https://wordpress.org/support/topic/detailed-instructions-please/)
 *  [ayac2002](https://wordpress.org/support/users/ayac2002/)
 * (@ayac2002)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/detailed-instructions-please/#post-5382952)
 * Update: 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] Detailed Instructions please](https://wordpress.org/support/topic/detailed-instructions-please/)
 *  [ayac2002](https://wordpress.org/support/users/ayac2002/)
 * (@ayac2002)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/detailed-instructions-please/#post-5382917)
 * I 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](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WooCommerce Custom Statuses] Does not work in WordPress 4.0 and Woo 2.2](https://wordpress.org/support/topic/does-not-work-in-wordpress-40-and-woo-22/)
 *  Thread Starter [ayac2002](https://wordpress.org/support/users/ayac2002/)
 * (@ayac2002)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/does-not-work-in-wordpress-40-and-woo-22/#post-7885297)
 * Since 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/](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](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WooCommerce Custom Statuses] Does not work in WordPress 4.0 and Woo 2.2](https://wordpress.org/support/topic/does-not-work-in-wordpress-40-and-woo-22/)
 *  Thread Starter [ayac2002](https://wordpress.org/support/users/ayac2002/)
 * (@ayac2002)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/does-not-work-in-wordpress-40-and-woo-22/#post-7885274)
 * The solution is here: [https://gist.github.com/claudiosmweb/e68e891d593c4c989d9d](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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Custom Order Statuses in 2.2.2](https://wordpress.org/support/topic/custom-order-statuses-in-222/)
 *  [ayac2002](https://wordpress.org/support/users/ayac2002/)
 * (@ayac2002)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/custom-order-statuses-in-222/#post-5286273)
 * THANK 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….
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Menu - Create Mobile-Friendly Menu] Font isn't site default, but browser default](https://wordpress.org/support/topic/font-isnt-site-default-but-browser-default/)
 *  Thread Starter [ayac2002](https://wordpress.org/support/users/ayac2002/)
 * (@ayac2002)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/font-isnt-site-default-but-browser-default/#post-5291812)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Latest Tweets] Tweet Times Wrong?](https://wordpress.org/support/topic/tweet-times-wrong/)
 *  [ayac2002](https://wordpress.org/support/users/ayac2002/)
 * (@ayac2002)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/tweet-times-wrong/#post-4627442)
 * 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!

Viewing 10 replies - 1 through 10 (of 10 total)