Muhammad Ayoub
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Same issue with muti step form, It gets focus only when mouse is hovered, otherwise not.
There should be a setting/option to change URL in this plugin.
I am using Ultimate member as a membership plugin, So a solution should be provided by you.
Forum: Requests and Feedback
In reply to: Plugin/Theme should show their CSS & JS dependencies sizes@joyously Yes I agree with you a little bit, But as a developer, when I use a plugin, I don’t know about the file size of CSS and JS plugins in enqueueing, I even don’t know the name of files or the total number of files. I think it will be very beneficial for programmers/developers who want to keep their website minimal, want to know which plugin is adding how much CSS & JS.
Forum: Requests and Feedback
In reply to: Improve plugin searchTicket is created here Improve plugin search
I have directly edited plugin files and added custom, its working fine.
php if (is_single()) { // HCB style wp_enqueue_style('hcb-style', LOOS_HCB_URL . 'build/css/hcb_style.css', [], LOOS_HCB_VERSION); // Coloring style wp_enqueue_style('hcb-coloring', LOOS_HCB::$coloring_css_url, ['hcb-style'], LOOS_HCB_VERSION); // Inline Style wp_add_inline_style('hcb-style', LOOS_HCB_Scripts::get_inline_style()); // clipboard.js $is_show_copy = LOOS_HCB::$settings['show_copy']; if ($is_show_copy) { wp_enqueue_script('clipboard'); } // Prism.js wp_enqueue_script('hcb-prism', LOOS_HCB::$prism_js_url, [], LOOS_HCB_VERSION, true); // wp_add_inline_script( 'hcb-prism', 'window.Prism = window.Prism || {}; Prism.manual = true;', 'before' ); // HCB script wp_enqueue_script('hcb-script', LOOS_HCB_URL . 'build/js/hcb_script.js', ['hcb-prism'], LOOS_HCB_VERSION, true); // Global variables to pass to the script wp_localize_script('hcb-script', 'hcbVars', [ 'showCopy' => $is_show_copy, ]); }
Viewing 6 replies - 1 through 6 (of 6 total)