najam ali shahid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal error after installing Woocommerce…Hello,
Login to your ftp and open directory wp-content/plugins/woocommerce-gateway-stripe
open woocommerce-gateway-stripe.php file in any editor find below code ( line no: 226 to 232 )
public function get_setting_link() {
$use_id_as_section = version_compare( WC()->version, ‘2.6’, ‘>=’ );$section_slug = $use_id_as_section ? ‘stripe’ : strtolower( ‘WC_Gateway_Stripe’ );
return admin_url( ‘admin.php?page=wc-settings&tab=checkout§ion=’ . $section_slug );
}and replace with below code
public function get_setting_link() {
$use_id_as_section = class_exists( ‘WC’ ) ? version_compare( WC()->version, ‘2.6’, ‘>=’ ) : false;
$section_slug = $use_id_as_section ? ‘stripe’ : strtolower( ‘WC_Gateway_Stripe’ );
return admin_url( ‘admin.php?page=wc-settings&tab=checkout§ion=’ . $section_slug );
}thanks
Forum: Plugins
In reply to: [WooCommerce] Bug report: WooCommerce Stripe GatewayHello,
Login to your ftp and open directory wp-content/plugins/woocommerce-gateway-stripe
open woocommerce-gateway-stripe.php file in any editor find below code ( line no: 226 to 232 )
public function get_setting_link() {
$use_id_as_section = version_compare( WC()->version, ‘2.6’, ‘>=’ );$section_slug = $use_id_as_section ? ‘stripe’ : strtolower( ‘WC_Gateway_Stripe’ );
return admin_url( ‘admin.php?page=wc-settings&tab=checkout§ion=’ . $section_slug );
}and replace with below code
public function get_setting_link() {
$use_id_as_section = class_exists( ‘WC’ ) ? version_compare( WC()->version, ‘2.6’, ‘>=’ ) : false;
$section_slug = $use_id_as_section ? ‘stripe’ : strtolower( ‘WC_Gateway_Stripe’ );
return admin_url( ‘admin.php?page=wc-settings&tab=checkout§ion=’ . $section_slug );
}thanks
Forum: Plugins
In reply to: [Gravity Forms Directory] Fields showing raw html or nothing at alltry this
open file
plugins => gravity-forms-addons => template-raw.phpand replace
$value = esc_html($value);
to$value
on line number 209hope this will help you … ??
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Remove registration box on the log in pagehi,
i need to hide registration box from login page but when i click on Click here to register it redirect to registration page.. when i checked Turns off the registration process, only allows login it totally hide Registration ….Thanks
Forum: Plugins
In reply to: [WooCommerce] Trying to remove sidebar from all Woo commerce PagesForum: Plugins
In reply to: [WooCommerce] WooCommerce: Product image sizes not changeingUse This plugin for regenerate your Thumbnails and for Thumbnails size go to Woocommerce > setting > catalog and change your size which you want…