@bjoux21

Thanks, your video helped me choose this plugin over the other solutions. :D

@theclovergent2143

Thank you so much for this video!
Bought the unlimited license using your affiliate link. I haven't started making wordpress websites, just learning more front-end and ui/ux for now. One day I'll quit my riot police job and become a freelancer, so I will definitely be grateful I made this purchase early.
I'm sure the pricing will increase and will most probably turn into a subscription.

@simonepagnini6735

Great tutorial, I must understand how to use the hooks, as sometimes my site crashes when choosing the wrong one...

@vovi547

Great video James, thanks. I've been using code snippets for years but I can really see why this is worth buying now. It wasn't clear at all in the oxygen groups.

@nu_papis

Thank you sir, purchased through aff link
Love your channel btw

@thebibleproof

Hi James,  AS has been part of my standard kit since the initial beta. It more than does the job of Code Snippets and Insert Headers and Footers plugins, and I'm sure there are more it could eliminate.  I subscribed ;-)

@twrborkent

Buying it from your aff link!

@SgtSOB

Excellent video James!  I was curious as to what scripts you typically use with your sites?  Thanks!

@wendy-fitfabwebsites795

Thanks for another great vid. Like you, I install it on every install now.

@RMSAnalyst

Excellent

@urbanfugitive

persuaded - thanks

@derekt.utterbach5099

Thanks for the video - I purchased through your affiliate link too. Any thoughts on Oxygen Attributes? Do you have an knowledge of Rapid API and implementing API in Oxygen. I noticed every time I try to put in JavaScript code in Oxygen I would get a code 200 Server error. Hopefully this will remedy that! Also if you have any scripts you could share or make a video of that too.

@veaceslavpascaru7294

Hi James! Thanks a lot for nice tutorial. I was wondering if you know how to order css snippets of I have more than one. Thanks

@IsotropicDesign

If you get it, here's a way to set up an admin bar menu shortcut: 

<?php
add_action('admin_bar_menu', 'add_toolbar_items', 100);
function add_toolbar_items($admin_bar){
    $admin_bar->add_menu( array(
        'id'    => 'open-as-link',
        'title' => 'Advanced Scripts',
        'href'  => get_site_url() .'/wp-admin/tools.php?page=advanced-scripts',
        'meta'  => array(
            'title' => __('Open AS In New Tab'), 
            'target'  => '_blank',
        ),
    ));
}

@MrChakuza17

I use currently the code snipped plugin. I like the option there to seach for snippets or code strings. I didn‘t saw that option in this plugin. Is there a seach option?

@vikasgautam2701

Is Version 2.0 still in Beta, because I have purchased it today, but the plugin version available is still 1.1.0. Even there is no update available for version 2.0. Many features which you described in the tutorial are not available in version 1.1.0.

@piximdesign

i really like this video ,i need to know one think how to create json file ,i need to create pwa progressive web apps, that way i needed this tricks,please give me answer..?

@mmkventures9743

Thanks for the video. Buying it via your link right now. One question please: Is it possible to write any PHP code to effect the wp-config.php file using this plugin (e.g., to disable cron) or does that always need to be done by editing the wp-config file?

@howuseehim

Ain't working for me I am trying to add a custom cursor but nothing seems to work 😭

@mikesam7258

What hook to set if I want place code to <body>? Sometimes directly after <body>, sometimes close to </body>. Thank you