Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter Manthy

    (@manthy)

    Καλησπέρα,
    το πρόβλημα προέκυψε επειδή από τη μεριά της η Alpha Bank δεν είχε ενεργοποιημένους δοκιμαστικούς κωδικούς για τον λογαριασμό μας. Τους ενεργοποίησαν και το plugin δούλεψε απροβλημάτιστα.
    Ευχαριστώ πολύ!

    Thread Starter Manthy

    (@manthy)

    Δεν γνωρίζω, έχω στείλει σχετικό αίτημα και στην τράπεζα και περιμένω απάντηση. Θα σας ενημερώσω.

    *************
    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?

    Same problem here…

    In the settings in custom taxonomies there are Product Categories, Product Tags, Shipping Classes & Categories. Nowhere Attributes…

    Manthy

    (@manthy)

    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
    );

    Source: http://releasethegeekinside.me/wp-e-commerce-bug-remove-payment-instruction-in-receipt-purchase-email/

    Manthy

    (@manthy)

    That 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!

    Manthy

    (@manthy)

    aldodager Did you find the solution to this?? The “exclude” part stopped working for me too…

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