Generating PDF files with JavaScript
December 5, 2021
Generate PDF with JavaScript // Default export is a5 paper, portrait, using milimeters for units var doc = new jsPDF() doc.text(‘Hello world!’, 10, 10) doc.save(‘a5.pdf’)… Read More →
December 5, 2021
Generate PDF with JavaScript // Default export is a5 paper, portrait, using milimeters for units var doc = new jsPDF() doc.text(‘Hello world!’, 10, 10) doc.save(‘a5.pdf’)… Read More →
December 4, 2021
Go to Product under Stores > Attributes. Search for the attribute which’s image change not working and open the attribute. Select Yes on Update Product… Read More →
December 1, 2021
In WordPress, there are a few different ways to include CSS and JavaScript in your site. Here are some options: Enqueueing Scripts and Stylesheets: This… Read More →
November 2, 2021
To get ACF options page on WordPress website use the following code on your functions.php file – if( function_exists(‘acf_add_options_page’) ) { acf_add_options_page(array( ‘page_title’ => ‘Theme… Read More →
November 2, 2021
To Get woocommerce carts total amount use the following code WC()->cart->get_cart_total()
November 2, 2021
To call WordPress Shortcode within a php template use the following code – echo do_shortcode(‘[CONTACT-US-FORM]’);