Skip to content

dedicatedcloud/WW_Snippets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

WordPress & WooCommerce Snippets

WooCommerce

  1. Show product variations chosen at checkout in the information table instead of all the variants.
  2. Store Information Settings Page
  3. Stock display format set to Never show quantity remaining in stock

Woocommerce

Show product variations chosen at checkout in the information table instead of all the variants
Show only the product variations chosen at checkout in the information table instead of all the variants that are attached to that product
add_action( 'woocommerce_before_add_to_cart_quantity', 'wwccs_dynamic_atts_variation' );
  
function wwccs_dynamic_atts_variation() {
   global $product;
   if ( ! $product->is_type( 'variable' ) ) return;
    wc_enqueue_js( " 
      $('input.variation_id').change(function(){
         if( $(this).val() && $(this).val() > 0  ) {   
            $('form.variations_form').find('.variations select').each( function( index, el ){
               var current_select_id = $(el).attr('id');
               var current_select_val = $(el).find('option:selected').text();
               $('.woocommerce-product-attributes-item--attribute_'+current_select_id+' td p').text(current_select_val);
            });
         } 
      });
   " );
}
Store Information Settings Page
Creates a settings page to add information about a store on the WooCommerce Single product page.
// Add custom admin menu for store details
add_action('admin_menu', 'custom_store_details_menu');
function custom_store_details_menu() {
    add_menu_page(
        __('Store Details', 'woocommerce'), // Page Title
        __('Store Details', 'woocommerce'), // Menu Title
        'manage_options', // Capability
        'store-details', // Menu Slug
        'custom_store_details_page', // Function to display the page
        'dashicons-store', // Icon
        20 // Position
    );
}

// Register settings for store details
add_action('admin_init', 'custom_store_details_settings');
function custom_store_details_settings() {
    register_setting('store_details_group', 'store_address');
    register_setting('store_details_group', 'store_hours');
    register_setting('store_details_group', 'store_phone');
    register_setting('store_details_group', 'store_google_map');
}

// Store details settings page
function custom_store_details_page() { ?>
    <div class="wrap">
        <h1><?php _e('Store Details Settings', 'woocommerce'); ?></h1>
        <form method="post" action="options.php">
            <?php settings_fields('store_details_group'); ?>
            <?php do_settings_sections('store_details_group'); ?>
            <table class="form-table">
                <tr valign="top">
                    <th scope="row"><?php _e('Store Address', 'woocommerce'); ?></th>
                    <td><input type="text" name="store_address" value="<?php echo esc_attr(get_option('store_address')); ?>" style="width: 50%;" /></td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Store Opening Hours', 'woocommerce'); ?></th>
                    <td><input type="text" name="store_hours" value="<?php echo esc_attr(get_option('store_hours')); ?>" style="width: 100%;" /></td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Store Phone Number', 'woocommerce'); ?></th>
                    <td><input type="text" name="store_phone" value="<?php echo esc_attr(get_option('store_phone')); ?>" style="width: 100%;" /></td>
                </tr>
                <tr valign="top">
                    <th scope="row"><?php _e('Google Map (Iframe HTML Code)', 'woocommerce'); ?></th>
                    <td><textarea name="store_google_map" rows="5" style="width: 100%;"><?php echo esc_textarea(get_option('store_google_map')); ?></textarea></td>
                </tr>
            </table>
            <?php submit_button(); ?>
        </form>
    </div>
<?php }


// Replace Add to Cart button with custom HTML for products in "Shop" category on shop pages
add_filter('woocommerce_loop_add_to_cart_link', 'replace_add_to_cart_button_shop', 10, 2);
function replace_add_to_cart_button_shop($button, $product) {
    if (has_term('Shop', 'product_cat', $product->get_id())) {
        // Fetch store details from the settings
        $store_address = get_option('store_address');
        $store_hours = get_option('store_hours');
        $store_phone = get_option('store_phone');
        $store_google_map = get_option('store_google_map');

        // Custom HTML to display on shop pages
        return '<div class="custom-html-message">
                    <h3>## Available In-Store Only</h3>
                    <p>## can only be purchased from our shop. Visit us for exclusive offers!</p>
                    <p><strong>Address:</strong> ' . esc_html($store_address) . '</p>
                    <p><strong>Opening Hours:</strong> ' . esc_html($store_hours) . '</p>
                    <p><strong>Phone:</strong> ' . esc_html($store_phone) . '</p>
                    <div class="google-map">' . $store_google_map . '</div>
                </div>';
    }
    return $button; // Return default Add to Cart button for other products
}

// Disable Add to Cart button and replace it with custom HTML on single product pages
add_action('woocommerce_single_product_summary', 'replace_add_to_cart_button_single', 1);
function replace_add_to_cart_button_single() {
    global $product;
    if (has_term('Shop', 'product_cat', $product->get_id())) {
        // Fetch store details from the settings
        $store_address = get_option('store_address');
        $store_hours = get_option('store_hours');
        $store_phone = get_option('store_phone');
        $store_google_map = get_option('store_google_map');

        // Remove the default Add to Cart button
        remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30);
        
        // Custom HTML to display on single product pages
        echo '<div class="custom-html-message">
                <h3>Purchase ## In-Store</h3>
                <p>This item can only be purchased from our shop. We look forward to welcoming you!</p>
                <p><strong>Address:</strong><br> ' . esc_html($store_address) . '</p>
                <p><strong>Opening Hours:</strong> ' . esc_html($store_hours) . '</p>
                <p><strong>Phone:</strong> ' . esc_html($store_phone) . '</p>
                <div class="google-map">' . $store_google_map . '</div>
              </div>';
    }
}
Stock display format set to Never show quantity remaining in stock
Never show quantity remaining in stock

add_action('init', 'set_default_woocommerce_stock_display_format');

function set_default_woocommerce_stock_display_format() {
   // Check if WooCommerce is active before applying the setting
   if (class_exists('WooCommerce')) {
       // Get the current stock display format setting
       $current_stock_format = get_option('woocommerce_stock_format');

       // If the setting has not been defined by the use
       if ($current_stock_format === false) {
           update_option('woocommerce_stock_format', 'no_amount');
       }
   }
}


WordPress

Auto Create Home & Blog Pages
Auto Create Home & Blog Pages and Set these to Static Pages
// Add this code to your theme's functions.php file

if (!defined('ABSPATH')) {
  exit; // Exit if accessed directly.
}

// Function to create and set Home and Blog pages
function create_and_set_home_and_post_pages() {
  // Create a static Home Page
  $home_page_title = sanitize_text_field('Home');
  $home_page_content = sanitize_textarea_field('Welcome to our website!');
  $home_page_check = get_page_by_title($home_page_title);

  if (!$home_page_check) {
      $home_page_id = wp_insert_post([
          'post_title'   => $home_page_title,
          'post_content' => $home_page_content,
          'post_status'  => 'publish',
          'post_type'    => 'page',
      ]);

      // Set the created page as the home page
      if (!is_wp_error($home_page_id)) {
          update_option('page_on_front', $home_page_id);
          update_option('show_on_front', 'page'); // Set to display a static page
      }
  }

  // Create a Blog (Posts) Page
  $post_page_title = sanitize_text_field('Blog');
  $post_page_check = get_page_by_title($post_page_title);

  if (!$post_page_check) {
      $post_page_id = wp_insert_post([
          'post_title'   => $post_page_title,
          'post_content' => '', // Empty content for blog listing
          'post_status'  => 'publish',
          'post_type'    => 'page',
      ]);

      // Set the created page as the posts page
      if (!is_wp_error($post_page_id)) {
          update_option('page_for_posts', $post_page_id);
      }
  }
}

// Run the function when the theme is activated or switched
add_action('after_switch_theme', 'create_and_set_home_and_post_pages');
Auto Create Home, Blog, T & C, Privacy and Cookie Pages
if (!defined('ABSPATH')) {
  exit; // Exit if accessed directly.
}

// Function to create and set Home, Blog, Terms and Conditions, Privacy Policy, and Cookie Policy pages
function create_and_set_pages() {
  $site_url = get_site_url(); // Get the actual URL of the website

  // Define pages and their hard-coded content with $site_url
  $pages = [
      'Home' => 'Welcome to our website!',
      'Blog' => '', // Empty content for blog listing
      'Terms and Conditions' => sprintf(
          'Terms and Conditions for %s. All rights reserved. These terms outline the rules and regulations for using our website.',
          esc_url($site_url)
      ),
      'Privacy Policy' => sprintf(
          'Privacy Policy for %s. We are committed to protecting your personal information and your right to privacy.',
          esc_url($site_url)
      ),
      'Cookie Policy' => sprintf(
          'Cookie Policy for %s. This policy explains what cookies are, how we use cookies, how third-parties we may partner with may use cookies on the service, your choices regarding cookies, and further information about cookies.',
          esc_url($site_url)
      ),
  ];

  foreach ($pages as $title => $content) {
      $page_check = get_page_by_title($title);

      if (!$page_check) {
          $page_id = wp_insert_post([
              'post_title'   => sanitize_text_field($title),
              'post_content' => sanitize_textarea_field($content),
              'post_status'  => 'publish',
              'post_type'    => 'page',
          ]);

          // Set the created page URLs
          if (!is_wp_error($page_id)) {
              // If the page is Terms and Conditions
              if ($title === 'Terms and Conditions') {
                  update_option('terms_and_conditions_page', $page_id);
              }
              // If the page is Privacy Policy
              if ($title === 'Privacy Policy') {
                  update_option('wp_page_for_privacy_policy', $page_id);
              }
              // If the page is Cookie Policy
              if ($title === 'Cookie Policy') {
                  update_option('cookie_policy_page', $page_id);
              }
          }
      }
  }

  // Set the Home and Blog pages
  $home_page_title = 'Home';
  $blog_page_title = 'Blog';

  // Set Home Page
  $home_page_check = get_page_by_title($home_page_title);
  if ($home_page_check) {
      update_option('page_on_front', $home_page_check->ID);
      update_option('show_on_front', 'page');
  }

  // Set Blog Page
  $blog_page_check = get_page_by_title($blog_page_title);
  if ($blog_page_check) {
      update_option('page_for_posts', $blog_page_check->ID);
  }
}

// Run the function when the theme is activated or switched
add_action('after_switch_theme', 'create_and_set_pages');

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages