Title: daileycon's Replies | WordPress.org

---

# daileycon

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 80 total)

1 [2](https://wordpress.org/support/users/daileycon/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/daileycon/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/daileycon/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/daileycon/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/daileycon/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/daileycon/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wise Chat] User Shows Up in All Channels](https://wordpress.org/support/topic/user-shows-up-in-all-channels/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [7 years ago](https://wordpress.org/support/topic/user-shows-up-in-all-channels/#post-11534023)
 * It’s the “Enable Offline Users” setting. If checked all users show up in all 
   channels. I’m just going to leave that unchecked. Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wise Chat] mod_security issue](https://wordpress.org/support/topic/mod_security-issue-2/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [7 years ago](https://wordpress.org/support/topic/mod_security-issue-2/#post-11533981)
 * I had to turn mod_security off. I couldn’t visit my site because I kept getting
   blocked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wise Chat] User Shows Up in All Channels](https://wordpress.org/support/topic/user-shows-up-in-all-channels/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [7 years ago](https://wordpress.org/support/topic/user-shows-up-in-all-channels/#post-11525748)
 * Yes, every page is set for a different channel.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Asgaros Forum] Code Button to Editor](https://wordpress.org/support/topic/code-button-to-editor/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/code-button-to-editor/#post-11167838)
 * “Use minimalistic editor” is DISABLED
 * haha that worked! Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Asgaros Forum] Code Button to Editor](https://wordpress.org/support/topic/code-button-to-editor/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/code-button-to-editor/#post-11167800)
 * I’ve tried that one but I couldn’t get it to work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MultiVendorX - WooCommerce Multivendor Marketplace AI Powered Solutions] Set Type and Remove Option](https://wordpress.org/support/topic/set-type-and-remove-option/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/set-type-and-remove-option/#post-11074463)
 * I can’t get that code to work after the update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MultiVendorX - WooCommerce Multivendor Marketplace AI Powered Solutions] Set Type and Remove Option](https://wordpress.org/support/topic/set-type-and-remove-option/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/set-type-and-remove-option/#post-11069099)
 * I’ve tried every way possible and I just can’t get Virtual and Downloadable to
   be auto checked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MultiVendorX - WooCommerce Multivendor Marketplace AI Powered Solutions] Hide Phone Address TimeZone & Store Location](https://wordpress.org/support/topic/hide-phone-address-timezone-store-location/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/hide-phone-address-timezone-store-location/#post-11057837)
 * That worked thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MultiVendorX - WooCommerce Multivendor Marketplace AI Powered Solutions] Set Type and Remove Option](https://wordpress.org/support/topic/set-type-and-remove-option/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/set-type-and-remove-option/#post-11053154)
 * Would adding the following code work to enable Virtual Downloadable? Then I just
   need a solution to hide the options all together.
 *     ```
       add_filter( 'product_type_options', 'autocheck_vd');
   
       function autocheck_vd( $arr ){
           $arr['virtual']     ['default'] = "yes"; 
           $arr['downloadable']['default'] = "yes"; 
           return $arr;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Gift Cards] Cart page and checkout page issues](https://wordpress.org/support/topic/cart-page-and-checkout-page-issues/)
 *  [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/cart-page-and-checkout-page-issues/#post-6931124)
 * I’ve removed this from class.yith-woocommerce-gift-cards.php and it cleaned up
   my cart. But will the gift card coupons still work?
 *     ```
       if ( is_cart () ) {
                       ?>
                       <div class="<?php echo apply_filters ( 'yith_ywgc_cart_discount_classes', "coupon" ); ?>">
   
                           <label
                               for="discount_code"><?php echo apply_filters ( 'yith_ywgc_cart_discount_label', __ ( "Dissscount code: ", 'yith-woocommerce-gift-cards' ) ); ?></label>
                           <input type="text" name="coupon_code" class="input-text" id="discount_code" value=""
                                  placeholder="<?php echo apply_filters ( 'yith_ywgc_cart_discount_placeholder', __ ( "Dissscount code", 'yith-woocommerce-gift-cards' ) ); ?>">
                           <input type="submit" class="button" name="apply_coupon"
                                  value="<?php echo apply_filters ( 'yith_ywgc_cart_discount_submit_text', __ ( "Apply discount", 'yith-woocommerce-gift-cards' ) ); ?>">
   
                       </div>
   
                       <?php
                       return false;
                   }
       ```
   
 * _[Moderator Note: Please post code & markup between backticks or use the code
   button. Your posted code may now have been damaged by the forum’s parser.]_
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Gift Cards] Cart page and checkout page issues](https://wordpress.org/support/topic/cart-page-and-checkout-page-issues/)
 *  [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/cart-page-and-checkout-page-issues/#post-6931123)
 * Where do I even look to find out what the issue could be? Looks like a css issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Gift Cards] Cart page and checkout page issues](https://wordpress.org/support/topic/cart-page-and-checkout-page-issues/)
 *  [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/cart-page-and-checkout-page-issues/#post-6931122)
 * This is also breaking my cart page with the same issues. I’m using the Aurum 
   theme. Has this already been updated to fix the issue? I’m using version Version
   1.0.10.
 * Thanks.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Zerif Lite] PHP 7 Error](https://wordpress.org/support/topic/php-7-error/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/php-7-error/#post-7124410)
 * Resolved.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Zerif Lite] PHP 7 Error](https://wordpress.org/support/topic/php-7-error/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/php-7-error/#post-7124409)
 * Please delete this. Wrong theme, I’m an idiot
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Zerif Lite] PHP 7 Error](https://wordpress.org/support/topic/php-7-error/)
 *  Thread Starter [daileycon](https://wordpress.org/support/users/daileycon/)
 * (@daileycon)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/php-7-error/#post-7124324)
 * I just switched back to 5.6 and loaded fine.

Viewing 15 replies - 1 through 15 (of 80 total)

1 [2](https://wordpress.org/support/users/daileycon/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/daileycon/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/daileycon/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/daileycon/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/daileycon/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/daileycon/replies/page/2/?output_format=md)