To break a long word in item label pdf.

To break a long word in item label pdf. When table with nested table is created and added columns, the nested table columns data were overlapped with the parent table columns. The nested table was removed and added rows and columns in the table, the overlapping issue was corrected. Thus break the long word.

How to display quantity pricing as a table, dropdown & quantity box according to individual items in the pdp page

To display quantity pricing as of table and dropdown, we have to first create a field and passing those values through Netsuite. Then need to create sub filed value for eg: (Normal quantity pricing & Enhnaced quantity Pricing). We have create a var in the proper view for getting the values there as True/ false.… Continue reading How to display quantity pricing as a table, dropdown & quantity box according to individual items in the pdp page

Styling may not be Compactable with Windows Mail app in Outlook

It is possible that the styles we are using may not be compatible with the Windows Mail app in Outlook. In order to make the style applicable for desktop app as well, we may need to modify the code by using inline styles rather than relying on external stylesheets. Outlook is known to have limited… Continue reading Styling may not be Compactable with Windows Mail app in Outlook

Insert Contents into the table of database

The contents can be inserted by using the function given below: function my_plugin_insert_db() {  global $wpdb;  $username = ‘wordpress’;  $email = ‘test1@wordpress.com‘;  $table_name = $wpdb->prefix . ‘db_plugin’;  $wpdb->insert(  $table_name,  array(  ‘username’ => $username,  ’email’ => $email,  )  );  }  if(isset($_POST[‘button2’])) {      global $wpdb;      $username = $_POST[“fname”];      $email = $_POST[“email”];      $table_name =… Continue reading Insert Contents into the table of database

Using JQuery fn to find out the specific element in the table

Suppose there are names and Id given for every individual person in a table and we want to find out the specific customer name &Id. We can use JQuery function to find out that. By using this fn: Here #myInput is the input which we give and according to that it will filter the table(row… Continue reading Using JQuery fn to find out the specific element in the table