Stebok
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal for WooCommerce] Can we make phone number mandatory?That’s perfect, thanks!
Forum: Plugins
In reply to: [PayPal for WooCommerce] Mixed content on checkout due to imagesFixed the code here for wc-gateway-paypal-express-angelleye.php
public function get_icon() { $image_path = plugins_url() . "/" . plugin_basename(dirname(dirname(__FILE__))) . '/assets/images/paypal.png'; if ($this->show_paypal_credit == 'yes') { $image_path = plugins_url() . "/" . plugin_basename(dirname(dirname(__FILE__))) . '/assets/images/paypal-credit.png'; } $icon = "<img src=\"$image_path\" alt='" . __('Pay with PayPal', 'paypal-for-woocommerce') . "'/>"; return apply_filters('woocommerce_gateway_icon', $icon, $this->id); }
Forum: Plugins
In reply to: [SearchAutocomplete] Option to remove JS jQuery UI libraryNo, it is enqueuing them (as it should be!). The conflict could also be different versions, I noticed you’re using jQuery UI 1.9.2 and Google hosts 1.10.x versions.
It’s not really a big deal, it’s just something I noticed with certain themes.
Twitter API 1.0 is retired as of June 11 2013. Your changelog says it is using API 1.1 but it is still API 1.0 in the code:
includes\top.oauth.php
function update_status($token, $token_secret, $status) { $params = array(); $params['oauth_consumer_key'] =$this->oauth_consumer_key; $params['oauth_signature_method'] = 'HMAC-SHA1'; $params['oauth_timestamp'] = time() + $this->oauth_time_offset; $params['oauth_nonce'] = $this->get_nonce(); $params['oauth_version'] = '1.0'; $params['oauth_token'] = $token; $params['status'] = $status; if ( top_is_debug_enabled() ) { TOP_DEBUG( '..params are ' . print_r( $params, true ) ); } $url = 'https://api.twitter.com/1/statuses/update.json'; $result = $this->do_oauth($url, $params, $token_secret); if ($result) { //$new_params = TOP_parsexml($result); return true; } else { return false; } }
Forum: Fixing WordPress
In reply to: Pagination Redirect Issue in author.php Using Custom Post TypesI have the same problem as you do. I don’t think W3 Total Cache is the culprit though because my .htacess is the default WP
I’m trying to have a button (outside the calendar) that would bring up the event dialog where the person can add their own events. If there is an easier way to do this, I’m all ears.