__( 'ARKCommerce FAQ', 'arkcommerce' ), ) ); } ////////////////////////////////////////////////////////////////////////////////////////// // ARKCommerce FAQ Widget Presentation // // @output ARKCommerce FAQ Widget // ////////////////////////////////////////////////////////////////////////////////////////// public function widget( $args, $instance ) { // Before and after widget arguments are defined by themes echo $args['before_widget']; if( ! empty( $title ) ) echo $args['before_title'] . $title . $args['after_title']; // Output FAQ section echo( ' ' . __( 'Frequenty Asked Questions', 'arkcommerce' ) . '
' . __( 'What is ARK?', 'arkcommerce' ) . '
' . __( 'ARK is a crypto currency that provides users, developers, and startups with innovative blockchain technologies. Its aim is to create an entire ecosystem of linked chains and a virtual spiderweb of endless use-cases that make ARK highly flexible, adaptable, and scalable.', 'arkcommerce' ) . '
' . __( 'Why are ARK prices changing?', 'arkcommerce' ) . '
' . __( 'The store originally prices items in fiat currency and uses automatic exchange rate synchronisation that executes biminutely updates and applies the updated exchange rate on page loads. This makes their conversion into ARK prices reflect exchange rate changes.', 'arkcommerce' ) . '
' . __( "Why mustn't I use an exchange wallet?", 'arkcommerce' ) . '
' . __( 'Because none of the exchanges allow users to enter anything into the SmartBridge field, whereas this store necessitates order number reference entry that enables automatic transaction discovery and order processing by the system.', 'arkcommerce' ) . '
' . __( 'What is order expiry?', 'arkcommerce' ) . '
' . __( 'The store can set up an order expiry period within which customers must execute the ARK payment transaction for their orders, otherwise they get cancelled. This feature serves as a risk management mechanism protecting against crypto currency market volatility.', 'arkcommerce' ) . '
' . __( 'How do I carry out an ARK transaction?', 'arkcommerce' ) . '
' . __( 'Use the ARK Online or ARK Desktop or ARK Mobile wallets to do so. When making a transaction simply follow the instructions provided both upon order placement and inside the order confirmation email. They include store wallet address, SmartBridge reference and the amount total.', 'arkcommerce' ) . '
' . __( 'I paid for my order and got no response!', 'arkcommerce' ) . '
' . __( 'There may be an error storeside that caused automatic order transaction discovery and order processing to fail. Do not hesitate to request assistance via store support channel with your Transaction ID so they are able to manually verify the payment.', 'arkcommerce' ) . '

' ); // After widget arguments defined by themes echo $args['after_widget']; } ////////////////////////////////////////////////////////////////////////////////////////// // ARKCommerce FAQ Widget Administration // // @param array $instance // // @output ARKCommerce FAQ Widget Settings // ////////////////////////////////////////////////////////////////////////////////////////// public function form( $instance ) { // Gather and/or set variables if ( isset( $instance[ 'title' ] ) ) $title = $instance[ 'title' ]; else $title = __( 'ARKCommerce FAQ', 'arkcommerce' ); // Widget admin form echo( '

' ); } ////////////////////////////////////////////////////////////////////////////////////////// // ARKCommerce FAQ Widget Instance Updating // // return arr $instance // ////////////////////////////////////////////////////////////////////////////////////////// public function update( $new_instance, $old_instance ) { $instance = array(); $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : ''; return $instance; } } ////////////////////////////////////////////////////////////////////////////////////////// // END OF ARKCOMMERCE FAQ WIDGET // //////////////////////////////////////////////////////////////////////////////////////////