Giter Site home page Giter Site logo

wpsf / wpsf-dev Goto Github PK

View Code? Open in Web Editor NEW
13.0 2.0 7.0 3.45 MB

Clone Of CodeStar but with more powerfull and reliable

CSS 35.18% JavaScript 8.71% PHP 56.11%
wordpress wordpress-framework wordpress-settings wordpress-settings-api wp-theme-settings wp-plugin wp-plugin-settings wp-options wordpress-options-plugin options-framework

wpsf-dev's Issues

Adding wpsf_get_option and wpsf_set_options

This framework lacks two important functions.

wpsf_get_option () and wpsf_set_option ()

Here they are:

if ( ! function_exists( 'wpsf_get_option' ) ) {
	/**
	 * Get option.
	 *
	 * @param  string  $option_name
	 * @param  string  $default
	 * @return mixed|string|null
	 */
	function wpsf_get_option( $option_name = '', $default = '' ) {
		$options = apply_filters( 'wpsf_get_option', get_option( WPSF_OPTION ) );

		if ( ! empty( $option_name ) && ! empty( $options[ $option_name ] ) ) {
			return $options[ $option_name ];
		} else {
			return ( ! empty( $default ) ) ? $default : null;
		}
	}
}
if ( ! function_exists( 'wpff_set_option' ) ) {
	/**
	 * Set option.
	 *
	 * @param  string  $option_name
	 * @param  string  $new_value
	 * @return void
	 */
	function wpsf_set_option( $option_name = '', $new_value = '' )  {
		$options = get_option( WPSF_OPTION );

		if ( ! empty( $option_name ) && ! empty( $options[ $option_name ] ) ) {
			$options[ $option_name ] = $new_value;
			update_option( WPSF_OPTION, $options );
		}
	}
}

Put this function in functions/helpers.php

Shortcode in settings panel not work

As the title suggests, the "Add Shortcode" button in the textarea section of the "WPSF Modern" control panel does not work.

I think it would be a very useful function. Is it possible to give us an eye and maybe a fix?

A thousand thanks.

wpsf - OR condition issue

Conditions in dependency field

 'dependency'   => array( 'footer-left-side|footer-right-side', 'OR|OR', 'custom|custom' ), 
  • The above dependency condition working only in AND condition

illegal string offset

once finished configuration wpsf give issues like this

Warning: Illegal string offset 'errors' in D:\xampp\htdocs\projects\clarup\clarup-wp\wp-content\themes\clarup\inc\wpsf-framework\classes\settings.php on line 368

this issue was occured only at first time loaded
Uploading image.png…

Nested Group

Nested group element value is not saved properly and at first click first accordion child group returns more then one accordion which is equal to parent accordion.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.