Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • 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&section=’ . $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&section=’ . $section_slug );
    }

    thanks

    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&section=’ . $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&section=’ . $section_slug );
    }

    thanks

    najam ali shahid

    (@najam-ali-shahid)

    try this
    open file
    plugins => gravity-forms-addons => template-raw.php

    and replace
    $value = esc_html($value); to $value on line number 209

    hope this will help you … ??

    hi,
    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

    najam ali shahid

    (@najam-ali-shahid)

    go to plugin > woocommerce > template > shop > sidebar.php and remove
    <?php
    /**
    * Sidebar
    *
    * @author WooThemes
    * @package WooCommerce/Templates
    * @version 1.6.4
    */

    if ( ! defined( ‘ABSPATH’ ) ) exit; // Exit if accessed directly

    get_sidebar(‘shop’); ?>
    and enjoy … ??

    Use This plugin for regenerate your Thumbnails and for Thumbnails size go to Woocommerce > setting > catalog and change your size which you want…

Viewing 6 replies - 1 through 6 (of 6 total)