helpwporg
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal Express Checkout] Doesn't seem to work properlyI also faced same issue and after debugging I have found it is a SSL verification issue.
After adding
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
code in paypalapi.php file on line number 96 it fixed the issue but it is not showing the amount on paypal while paying but it able to successfully complete the transactionMods please remove the websites url from the original post. I have resolved the issue. The solution is use allow directive in .htaccess.
<Files "sitemapindex.xml"> allow from all </Files>Forum: Plugins
In reply to: using sweet captcha in template fileHi luckdragon
Thanks for replying,
I have checked the sweetcaptcha can be used with contact form 7 using shortcodes so I was trying to use it with in template file that have a custom form on it using custom code. Do you know how can I use it with in custom template.
Thanks
Sorry for late response.I have implemented it. thank you all for your reply.
Forum: Themes and Templates
In reply to: Making blog page menu selected on single post pageadd_filter('nav_menu_css_class' , 'add_nav_class' , 10 , 2);has done the trick.
Thank you.