Manthy
Forum Replies Created
-
Καλησπέρα,
το πρόβλημα προέκυψε επειδή από τη μεριά της η Alpha Bank δεν είχε ενεργοποιημένους δοκιμαστικούς κωδικούς για τον λογαριασμό μας. Τους ενεργοποίησαν και το plugin δούλεψε απροβλημάτιστα.
Ευχαριστώ πολύ!Δεν γνωρίζω, έχω στείλει σχετικό αίτημα και στην τράπεζα και περιμένω απάντηση. Θα σας ενημερώσω.
Forum: Plugins
In reply to: [WP2Social Auto Publish] Problem with UTF-8*************
Update:
Disabling and enabling again utf-8 in plugin settings seem to somehow fix the problem with the post title, but the site name at the bottom doesn’t show in greek but with questionmarks************
Same problem here. With greek characters. Before update worked smoothly. Now strange characters appear… Fix?
Forum: Plugins
In reply to: [Polylang] Translate woocommerce attributesSame problem here…
In the settings in custom taxonomies there are Product Categories, Product Tags, Shipping Classes & Categories. Nowhere Attributes…
Forum: Plugins
In reply to: [WP e-Commerce Style Email] How to Insert field (payment instructions)I was looking for that too.
This solution seems to work (for test gateway. For custom manual gateways replace _test_ with your gateway):
Place this code at the bottom of function.php file in your theme
function _filter_test_merchant_customer_notification_raw_message( $message, $notification ){ $purchase_log = $notification->get_purchase_log(); if($purchase_log->is_accepted_payment()){ remove_filter( 'wpsc_purchase_log_customer_notification_raw_message', '_wpsc_filter_test_merchant_customer_notification_raw_message', 10, 2 ); remove_filter( 'wpsc_purchase_log_customer_html_notification_raw_message', '_wpsc_filter_test_merchant_customer_notification_raw_message', 10, 2 ); } return $message; } //edit testmode add_filter( 'wpsc_purchase_log_customer_notification_raw_message', '_filter_test_merchant_customer_notification_raw_message', 1, 2 ); add_filter( 'wpsc_purchase_log_customer_html_notification_raw_message', '_filter_test_merchant_customer_notification_raw_message', 1, 2 );Forum: Plugins
In reply to: [WP eCommerce] Excluding categories from a menuThat was my problem too.
I thought of another way to achieve “not displaying specific product categories” in my product categories list.In case someone finds it usefull..
I changed this (in wpsc-products_page.php, in my child theme):
<a href="<?php wpsc_print_category_url();?>" class="wpsc_category_grid_item <?php wpsc_print_category_classes_section(); ?>" title="<?php wpsc_print_category_name(); ?>"> <?php wpsc_print_category_image(get_option('category_image_width'),get_option('category_image_height')); ?> </a>into this:
<a href="<?php wpsc_print_category_url();?>" class="wpsc_category_grid_item c<?php wpsc_print_category_id(); ?>" title="<?php wpsc_print_category_name(); ?>"> <?php wpsc_print_category_image(get_option('category_image_width'),get_option('category_image_height')); ?> </a>Basically this makes it possible to give each “category” its own class.
So then, in my css file, I created a class .c11 and .c12 (11 and 12 is the IDs of the product categories I needed to axclude) and I put in that classes display:none;.
Not the right way maybe… but it gets the job done!
Forum: Plugins
In reply to: [WP eCommerce] Excluding categories from a menualdodager Did you find the solution to this?? The “exclude” part stopped working for me too…