Categories
bigcommerce blog Child theme cms wordpress wordpress

wordpress remove customize section – child theme

stupid like me want such change 😛

#bookmark #remove #customize #section #wordpress

function remove_customize_register() {
global $wp_customize;
$wp_customize->remove_section( 'colors' ); //Modify this line as needed
}

add_action( 'customize_register', 'remove_customize_register', 11 );
Categories
bigcommerce blog

bigcommerce stencil sub category

 
{{#if category.subcategories}}
  
{{/if}}
Categories
bigcommerce blog

node.js, npm, bigcommerce, Stencil CLI, cornerstone… bla bla bla !!!

 

pain free NODE.js https://gist.github.com/isaacs/579814

echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl -O -L https://npmjs.org/install.sh

 

Installing the Command-Line Interface

The first step toward developing on Stencil is to install the Stencil CLI (command-line interface). You can do this via the following command:

npm install -g @bigcommerce/stencil-cli

Adding a Base Theme

git clone https://github.com/bigcommerce/cornerstone.git

after download complete cd cornerstone then run

npm install
stencil init

at the top level of your Stencil Theme. It will ask you a few questions to get your started.

stencil start

to run a local server so you can start developing your theme.

stencil bundle

to validate your code and create a zip bundle file that can be uploaded to BigCommerce.

 

 

https://github.com/bigcommerce/stencil-cli/issues/311

upgrade you cli

npm i -g @bigcommerce/stencil-cli

 

Categories
bigcommerce bigmadness blog offer Theme

Bigmadness.com Xmas Fever 50% off Code: big50off

https://twitter.com/officialstupid/status/676987514045997056

 

Categories
bigcommerce blog ecommerce New Theme

porter responsive bigcommerce theme

 

Categories
bigcommerce blog ecommerce Theme

bigcommercewizard bigcommerce themes membership

Categories
bigcommerce blog

bigcommerce fancybox iframe

$(".iframe").fancybox({
    'overlayShow': false,
    'frameWidth': 500, // set the width
    'frameHeight': 500, // set the height
    'type': 'iframe', // tell the script to create an iframe
});