aproimage
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal for WooCommerce] 3D secure transactions not completingThanks, that makes sense, I’ve now asked for short tags to be enabled, and in the meantime I’ve adjusted the shortened tag that appeared to be causing the problem, all seems to be doing what it should now.
Forum: Plugins
In reply to: [PayPal for WooCommerce] 3D secure transactions not completingHi, we are nearly there with the production site so should be looking to visit premium support soon.
In the meantime, I’ve come across a new problem on the production server.
When I am on the options page for “PayPal Website Payments Pro (DoDirectPayment)” a lot of code is printed out at the bottom of the screen followed by the credit card details form itself, and the credit card form does not display at checkout.
The code that’s printed out looks like the it is probably the plugin code itself rather than an error message and is as follows
enabled==”yes”) : if ( $this->testmode == “no” && get_option(‘woocommerce_force_ssl_checkout’)==’no’ && !class_exists( ‘WordPressHTTPS’ ) ) return false; // Currency check if ( ! in_array( get_woocommerce_currency(), apply_filters( ‘woocommerce_paypal_pro_allowed_currencies’, array( ‘AUD’, ‘CAD’, ‘CZK’, ‘DKK’, ‘EUR’, ‘HUF’, ‘JPY’, ‘NOK’, ‘NZD’, ‘PLN’, ‘GBP’, ‘SGD’, ‘SEK’, ‘CHF’, ‘USD’ ) ) ) ) return false; // Required fields check if (!$this->api_username || !$this->api_password || !$this->api_signature) return false; return isset($this->avaiable_card_types[WC()->countries->get_base_country()]); endif; return false; } /** * Payment form on checkout page */ function payment_fields() { $available_cards = $this->avaiable_card_types[WC()->countries->get_base_country()]; ?>
Do I need to configure something specific on my server? I have asked to check whether cURL is currently enabled and am awaiting a response.
Many thanks
Forum: Plugins
In reply to: [PayPal for WooCommerce] 3D secure transactions not completingThanks, would it be better to wait until we have the site installed on the server it will ultimately be running on, then everything can be set up and tested in the correct environment, As soon as the client has added content to the site it should be possible to revisit this.
Forum: Plugins
In reply to: [PayPal for WooCommerce] 3D secure transactions not completingApologies for the delay, I’ve been waiting on a response from the host as it’s not my usual development environment.
They have now confirmed that cURL is enabled.
Thanks,
Rob
Forum: Plugins
In reply to: [Stealth Login Page] Why the change? 4.0Just another vote for the old functionality, the new version doesn’t really achieve what I installed it for, so having the option to choose would be useful.
Great plugin though, thanks!
Forum: Plugins
In reply to: [Pronamic Google Maps] Setting a maximum width for the bubbleThanks Remco,
I did try this method before posting my original question but it didn’t quite achieve the desired effect because scroll bars appeared and made things look a little untidy.
Ultimately I ended up using similar code to adjust the layout of content to fit with what was achievable though.
Many thanks
Forum: Plugins
In reply to: [Theme My Login] Theme My Login 6.2 Broken?As above, I also seem to have had an issue relating to the use of TML 6.2 with Cimy User Extra Fields so I’m not sure if this might shed any light on a solution based on the comment from ebloss.
I’ve used these two plugins together for nearly 2 years now without any issues, but I currently get the following message on my front end at the top of profile pages as generated by TML (log in, sign up, profile etc)
Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, ‘cimy_uef_activate’
This warning appears to pertain to wp-includes/plugin.php (line 170)
Despite this warning everything appears to work as it should for me, but I have reverted back to an earlier version of TML simply to stop this warning from showing.
Just to follow up on this, I revisited the following forum post
and added the code provided by talkstar to my wp-config.php after adapting it to my needs, for the main part this does the trick.
$_SERVER['HTTP_HOST'] = $_SERVER['HTTP_X_FORWARDED_HOST']; $_SERVER['REQUEST_URI'] = '/thepromotion' . $_SERVER['REQUEST_URI']; $_SERVER['SCRIPT_NAME'] = '/thepromotion' . $_SERVER['SCRIPT_NAME']; $_SERVER['PHP_SELF'] = '/thepromotion' . $_SERVER['PHP_SELF']; $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_X_FORWARDED_FOR']; define('WP_HOME', 'https://clientsite.com/thepromotion'); define('WP_SITEURL', 'https://clientsite.com/thepromotion');
Many thanks, that’s what I was after,
I nearly had it but got my code in the wrong order somewhere along the line, irony is that’s the simplest thing I had to write all day.
Thanks again
Forum: Themes and Templates
In reply to: background image disappears with gallery pluginSorry I didn’t notice the post background had disappeared, have you tried looking to see if there is an unclosed div anywhere that may have been exposed by the plugin?
Forum: Themes and Templates
In reply to: background image disappears with gallery pluginHi,
I’m not sure if this is the exact problem, but in your default.css you have the following.
.single .post, .single-post
with the background ‘bg.png’
When I removed this background line in Firebug your main background came back on the gallery page.
Hope it works.
Cheers, Rob
Forum: Fixing WordPress
In reply to: Specific user access questionre: esmi
I’ve run both capability manager and Role Scoper on 3.0 in the last few days and both seem fine so far
Forum: Fixing WordPress
In reply to: Specific user access questionHi,
It looks like you probably need to use one of the role manager type plugins, to control what particular user groups on your site can and can’t do.
These plugins range from the fairly straightforward such as capability manager to the more complex such as Role Scoper.
What suits you really depends on your exact requirements, but I’d probably give the more straightforward option a go first as Role scoper probably has a lot of additional functionality that you won’t need.
Hope this helps, thanks, rob
Forum: Fixing WordPress
In reply to: Page templates disappeared after upgradeIt’s also worth noting that, this problem can also arise if you accidentally create two page templates with the same name / identifier at the beginning of the code, therefore if the above solution does not resolve your problem, try checking your page template files.
Forum: Fixing WordPress
In reply to: How do I show custom meta fields or alternate content if empty?All sorted, thanks, added an additional instance of the code to handle div classes.
Really appreciated, thanks.