Title: George Stavropoulos's Replies | WordPress.org

---

# George Stavropoulos

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Piraeus Bank WooCommerce Payment Gateway] Cardholder Name is mandatory σε κάθε τρόπο πληρωμής](https://wordpress.org/support/topic/cardholder-name-is-mandatory-%cf%83%ce%b5-%ce%ba%ce%ac%ce%b8%ce%b5-%cf%84%cf%81%cf%8c%cf%80%ce%bf-%cf%80%ce%bb%ce%b7%cf%81%cf%89%ce%bc%ce%ae%cf%82/)
 *  [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/cardholder-name-is-mandatory-%cf%83%ce%b5-%ce%ba%ce%ac%ce%b8%ce%b5-%cf%84%cf%81%cf%8c%cf%80%ce%bf-%cf%80%ce%bb%ce%b7%cf%81%cf%89%ce%bc%ce%ae%cf%82/#post-18104683)
 * Καλησπέρα.
 * Το πρόβλημα(Cardholder Name is a mandatory field!) παραμένει και δεν επιτρέπει
   να γίνουν οι συναλλαγές ούτε με κατάθεση στην τράπεζα.
   Επίσης, δεν εμφανίζεται
   το λογότυπο της τράπεζας Πειραιώς.
 * Έκδοση WooCommerce: 9.3.3
   Έκδοση Piraeus Bank WooCommerce Payment Gateway: 3.0.0
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Variation Swatches for WooCommerce] after update, variations in archive product are gone](https://wordpress.org/support/topic/after-update-variations-in-product-file-are-gone/)
 *  [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/after-update-variations-in-product-file-are-gone/#post-16088563)
 * Hello [@fizanzvai](https://wordpress.org/support/users/fizanzvai/)
    I am facing
   issue on variable products after the last update, too.
 * WP: 6.0.2
    Theme: Astra Version : 3.9.2 Plugin: Variation Swatches for WooCommerce
   2.0.11
 * The variable products have lost the matching with the sizes in my case.
 * [https://prnt.sc/ViDT3Qk_45D1](https://prnt.sc/ViDT3Qk_45D1)
 * Regards George
    -  This reply was modified 3 years, 11 months ago by [George Stavropoulos](https://wordpress.org/support/users/zeus71/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schedule Post Changes With PublishPress Future: Unpublish, Delete, Change Status, Trash, Change Categories] Sort Posts by expiry date](https://wordpress.org/support/topic/sort-posts-bi-expiry-date/)
 *  Thread Starter [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/sort-posts-bi-expiry-date/#post-15724710)
 * Hello [@biboocl](https://wordpress.org/support/users/biboocl/)
    Thanks for your
   suggestion, but it didn’t work.
 * Finally, I made it with the below snippet.
 *     ```
       // Short posts by expiry date
   
           function posts_sort_expirationdate( $query ) {
           if ( is_admin() || ! $query->is_category('your-category-slug') )
               return;
               $query->set(
                   'meta_query', array(
                       'relation' => 'OR',
                       array(
                           'key' => '_expiration-date',
                           'compare' => 'EXISTS',
                       ),
                       array(
                           'key' => '_expiration-date',
                           'compare' => 'NOT EXISTS',
                           'value' => '',
                       ),
                   )
               );
               $query->set('orderby', 'meta_value_num');
           	$query->set( 'order', 'ASC' );
               return;
       }
   
       add_action( 'pre_get_posts', 'posts_sort_expirationdate', 1 );
       ```
   
 * Regards,
    George
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schedule Post Changes With PublishPress Future: Unpublish, Delete, Change Status, Trash, Change Categories] Sort Posts by expiry date](https://wordpress.org/support/topic/sort-posts-bi-expiry-date/)
 *  Thread Starter [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/sort-posts-bi-expiry-date/#post-15624620)
 * Hello [@stevejburge](https://wordpress.org/support/users/stevejburge/)
 * Is it possible to order posts by expirationdate with any hook on theme functions.
   php?
 * Thanks in advance.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schedule Post Changes With PublishPress Future: Unpublish, Delete, Change Status, Trash, Change Categories] Sort Posts by expiry date](https://wordpress.org/support/topic/sort-posts-bi-expiry-date/)
 *  Thread Starter [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/sort-posts-bi-expiry-date/#post-15624613)
 * Hello [@stevejburge](https://wordpress.org/support/users/stevejburge/)
 * Thanks for your support.
    On backend works well, I mean on the frontend.
 * Regards,
    George
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Card Elements for Elementor] Broken page after Elementor update](https://wordpress.org/support/topic/broken-page-after-elementor-update/)
 *  Thread Starter [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/broken-page-after-elementor-update/#post-15510068)
 * Hello [@techeshta](https://wordpress.org/support/users/techeshta/).
 * I have already done it 🙂
 * Regards,
    George
    -  This reply was modified 4 years, 5 months ago by [George Stavropoulos](https://wordpress.org/support/users/zeus71/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Card Elements for Elementor] Broken page after Elementor update](https://wordpress.org/support/topic/broken-page-after-elementor-update/)
 *  Thread Starter [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/broken-page-after-elementor-update/#post-15506489)
 * Hello.
 * Thanks for your quick response. Everything works fine after the update.
 * Kind Regards,
    George
    -  This reply was modified 4 years, 5 months ago by [George Stavropoulos](https://wordpress.org/support/users/zeus71/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Delete reCAPTCHA integration keys in order to send message](https://wordpress.org/support/topic/delete-recaptcha-integration-keys-in-order-to-send-message/)
 *  Thread Starter [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/delete-recaptcha-integration-keys-in-order-to-send-message/#post-15146405)
 * Hello.
    Plugins:
 *     ```
       Contact Form 7 
       Contact Form 7 Multilingual
       Contact Form CFDB7
       Facebook for WooCommerce
       MainWP Child
       MainWP Child Reports
       MC4WP: Mailchimp for WordPress
       One Click Demo Import 	
       Popup Builder 	
       Redux	
       Slider Revolution 	
       ThemeSky 	
       The SEO Framework 	
       UpdraftPlus - Backup/Restore  	
       WooCommerce 	
       WooCommerce Multilingual	
       WP-Optimize - Clean, Compress, Cache 	
       WPBakery Page Builder	
       WPML Multilingual CMS	
       WPML String Translation 	
       YITH WooCommerce Wishlist
       ```
   
 * Theme:
    Drile
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Delete reCAPTCHA integration keys in order to send message](https://wordpress.org/support/topic/delete-recaptcha-integration-keys-in-order-to-send-message/)
 *  Thread Starter [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/delete-recaptcha-integration-keys-in-order-to-send-message/#post-15138483)
 * [https://www.chamailidis.gr/contact/](https://www.chamailidis.gr/contact/)
    -  This reply was modified 4 years, 9 months ago by [George Stavropoulos](https://wordpress.org/support/users/zeus71/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Newsletter - Send awesome emails from WordPress] Server Error 403 when save on List building](https://wordpress.org/support/topic/server-error-403-when-save-on-list-building/)
 *  Thread Starter [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/server-error-403-when-save-on-list-building/#post-12464048)
 * Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Newsletter - Send awesome emails from WordPress] Server Error 403 when save on List building](https://wordpress.org/support/topic/server-error-403-when-save-on-list-building/)
 *  Thread Starter [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/server-error-403-when-save-on-list-building/#post-12463679)
 * Just now noticed that I receiving the following message.
    “The WP scheduler doesn’t
   seem to be running correctly for Newsletter.”
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Advanced Free Shipping for WooCommerce] Great Plugin!](https://wordpress.org/support/topic/great-plugin-12889/)
 *  Thread Starter [George Stavropoulos](https://wordpress.org/support/users/zeus71/)
 * (@zeus71)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/great-plugin-12889/#post-8929399)
 * Hello, Jeroen.
 * How are you? I am sorry for my delayed reply.
 * Everything works like a charm 🙂
 * Perfect job,
    Keep programming.
    -  This reply was modified 9 years, 6 months ago by [George Stavropoulos](https://wordpress.org/support/users/zeus71/).
    -  This reply was modified 9 years, 6 months ago by [George Stavropoulos](https://wordpress.org/support/users/zeus71/).

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