Rituparna Sonowal
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce FedEx Ground Shipment not displaying@caleb Burks, Hi Please check this question too :
https://www.ads-software.com/support/topic/woocommerce-fedex-ground-shipment-not-displaying-us-to-us/Forum: Plugins
In reply to: [Livefyre Comments 3] woocommerce reviews wont showI know it’s 11 months old question but this problem still exist. Can you please tell me what you have done to solve it?
Thank you for replying. My case was different though. I was using old html code for the form that generated from the old website and it’s ajax url was pointing to that website.
When I changed the AJAX URL it started working.
This is what we need to solve this issue. Hope it will help someone:
function newPayment_gateway_icon( $icon, $id ) { if ( $id === 'paypal' ) { return '<img src="' . get_stylesheet_directory_uri() . '/images/paypal.png" alt="PayPal" />'; } else { return $icon; } } add_filter( 'woocommerce_gateway_icon', 'newPayment_gateway_icon', 10, 2 );
Forum: Plugins
In reply to: [Appointments] Need help to setup shortcodesThank you very much for you help ??
Forum: Plugins
In reply to: [Appointments] Need help to setup shortcodesHi Bojan,
Many thanks for quick reply. Let me share my complete requirements.
Our school is organizing one-on-one parents meeting with two of our school representative. Parents can have option to select one of our two representatives as well as can select their desired location from two locations(drop-down).
Also at the same time there may be meeting on two locations as we have two providers.
So can please guide how to configure the plugin so that it will meet our requirements.
If you need more data please let me know.
Thanks
Forum: Localhost Installs
In reply to: Unable to change Permanent LinkI’m glad to hear that it has solved your problems ??
Forum: Localhost Installs
In reply to: Unable to change Permanent LinkHi,
This is most probably your Apache rewrite module is not on. To turn it on: click on the WAMP icon –> Apache –> Apache Modules –> look for rewrite_module and if it has no ticked mark then click on it –> then restart WAMP
If still not working then please let me know.
Forum: Localhost Installs
In reply to: Please, why am I receiveing this error messageHi,
Most probably it is due to not loading of a php library. Please search for
extension=php_ldap.dll in php.ini file, if there is “;” before the line then remove it and save the file.Or please share your php error log, you can access by clicking on the wamp icon.
Forum: Localhost Installs
In reply to: Please, why am I receiveing this error messageThis is not sufficient! please tell us after doing what you are receiving this error?
Thanks
Forum: Localhost Installs
In reply to: Error establishing a database connectionNo! since you are working on your local machine so no security issue and we almost all do like that ??
cheers
Forum: Localhost Installs
In reply to: Error establishing a database connectionHi,
Can you make sure that your localhost is working by typing https://localhost/ in your browser after running XAMPP.Did you use manual installation? If yes then use these:
/** The name of the database for WordPress */ define('DB_NAME', 'dbname'); /** MySQL database username */ define('DB_USER', 'root'); /** MySQL database password */ define('DB_PASSWORD', ''); /** MySQL hostname */ define('DB_HOST', 'localhost');
Also check your table prefix:
$table_prefix = 'wp_';